Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for transformInvocation (0.18 sec)

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

                if (args.contains(logArg)) {
                    return true;
                }
            }
            return false;
        }
    
        @Override
        protected void transformInvocation(GradleInvocation invocation) {
            super.transformInvocation(invocation);
    
            if (!noExplicitNativeServicesDir) {
                invocation.environmentVars.put(NativeServices.NATIVE_DIR_OVERRIDE, buildContext.getNativeServicesDir().getAbsolutePath());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                    }
                }
            }
        }
    
        @Override
        protected void transformInvocation(GradleInvocation invocation) {
            if (getDistribution().isSupportsSpacesInGradleAndJavaOpts()) {
                // Mix the implicit launcher JVM args in with the requested JVM args
                super.transformInvocation(invocation);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            }
            gradleInvocation.buildJvmArgs.addAll(buildJvmOpts);
            calculateLauncherJvmArgs(gradleInvocation);
            gradleInvocation.args.addAll(getAllArgs());
    
            transformInvocation(gradleInvocation);
    
            if (!gradleInvocation.implicitLauncherJvmArgs.isEmpty()) {
                throw new IllegalStateException("Implicit JVM args have not been handled.");
            }
    
    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