Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

6
LINES

< > BotCompany Repo | #1008709 // fullVMArguments - make an effort to reconstruct all arguments this VM was started with

JavaX fragment (include)

static S fullVMArguments() {
  S name = javaVmName();
  ret (contains(name, "Server") ? "-server "
    : contains(name, "Client") ? "-client " : "")
    + joinWithSpace(vmArguments());
}

Author comment

Began life as a copy of #1008036

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1008709
Snippet name: fullVMArguments - make an effort to reconstruct all arguments this VM was started with
Eternal ID of this version: #1008709/6
Text MD5: 29133156d93889d10cf484e7ad279053
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-05-29 14:54:00
Source code size: 191 bytes / 6 lines
Pitched / IR pitched: No / No
Views / Downloads: 434 / 490
Version history: 5 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1010520 - isServerVM - guess if we're in HotSpot Server VM (not Client)
#1012386 - fullVMArgumentsAsList - make an effort to reconstruct all arguments this VM was started with