Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getenv (0.18 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/os/OperatingSystem.java

                    all.add(candidate);
                }
            }
    
            return all;
        }
    
        @SuppressWarnings("MixedMutabilityReturnType")
        public List<File> getPath() {
            String path = System.getenv(getPathVar());
            if (path == null) {
                return Collections.emptyList();
            }
            List<File> entries = new ArrayList<File>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. build-logic/cleanup/src/main/java/gradlebuild/cleanup/services/KillLeakingJavaProcesses.java

            }
            executionMode = ExecutionMode.valueOf(args[0]);
            if (executionMode == ExecutionMode.KILL_PROCESSES_STARTED_BY_GRADLE && !Boolean.parseBoolean(System.getenv("GRADLE_RUNNER_FINISHED"))) {
                // https://github.com/gradle/gradle-private/issues/3991
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top