Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for buildInvocation (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        }
    
        @Override
        protected Factory<JavaExecHandleBuilder> getExecHandleFactory() {
            return () -> {
                NativeServicesTestFixture.initialize();
                GradleInvocation invocation = buildInvocation();
                JavaExecHandleBuilder builder = TestFiles.execFactory().newJavaExec();
                builder.workingDir(getWorkingDir());
                builder.setExecutable(new File(getJavaHomeLocation(), "bin/java"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            return requireOwnGradleUserHomeDir();
        }
    
        public File getUserHomeDir() {
            return userHomeDir;
        }
    
        protected GradleInvocation buildInvocation() {
            validateDaemonVisibility();
    
            GradleInvocation gradleInvocation = new GradleInvocation();
            gradleInvocation.environmentVars.putAll(environmentVars);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top