You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Whether to prevent 'sfge' from throwing LimitReached violations for complex paths.\n`+
12
+
`By default, Salesforce Graph Engine attempts to detect complex paths that might cause OutOfMemory errors,\n`+
13
+
`and throws LimitReached violations for these paths to continue evaluating other paths safely. The allowed\n`+
14
+
`complexity is dynamically calculated based on the max Java heap size available, but in some cases you may\n`+
15
+
`desire to disable this check in addition to increasing java_max_heap_size.`,
16
+
17
+
ConfigFieldDescription_java_max_heap_size:
18
+
`Specifies the maximum size (in bytes) of the Java heap. The specified value is appended to the '-Xmx' Java\n`+
19
+
`command option. The value must be a multiple of 1024, and greater than 2MB. Append the letter 'k' or 'K' to\n`+
20
+
`indicate kilobytes, m or M to indicate megabytes, and g or G to indicate gigabytes. If unspecified, or specified\n`+
21
+
`as null, then the JVM will dynamically choose a default value at runtime based on system configuration.`,
22
+
23
+
ConfigFieldDescription_java_thread_count:
24
+
`Specifies the number of Java threads available for parallel execution. Increasing the thread count allows for\n`+
25
+
`Salesforce Graph Engine to evaluate more paths at the same time.`,
26
+
27
+
ConfigFieldDescription_java_thread_timeout:
28
+
`Specifies the maximum time (in milliseconds) a specific Java thread may execute before Salesforce Graph Engine\n`+
29
+
`issues a Timeout violation.`,
30
+
10
31
DeveloperPreviewRuleNotification:
11
32
`This rule is in "Developer Preview" and is subject to change. %s`,
12
33
13
34
UnsupportedEngineName:
14
35
`The SfgeEnginePlugin does not support an engine with the name '%s'.`,
15
36
37
+
InvalidConfigValue:
38
+
`The '%s' configuration value is invalid. %s`,
39
+
40
+
InsufficientMemorySpecified:
41
+
`The amount of memory specified must be >=2MB`,
42
+
43
+
InvalidMemoryMultiple:
44
+
`The amount of memory specified in bytes must be divisible by 1024`,
45
+
16
46
WorkspaceAppearsIncomplete:
17
47
`Specified workspace is missing %d possibly-relevant file(s) from the folder %s. Salesforce Graph Engine may be unable to create a complete graph of your project without all apex files included in your workspace. This may result in incomplete or incorrect results.`,
0 commit comments