Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for setcCompiler (0.38 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/ScalaCompile.java

        }
    
        /**
         * For testing only.
         */
        public void setCompiler(org.gradle.language.base.internal.compile.Compiler<ScalaJavaJointCompileSpec> compiler) {
            this.compiler = compiler;
        }
    
        @Override
        protected org.gradle.language.base.internal.compile.Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec) {
            assertScalaClasspathIsNonEmpty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

        private static final String O_EXT = ".o"
    
        protected abstract NativeCompiler getCompiler(CommandLineToolContext invocationContext, String objectFileExtension, boolean useCommandFile)
    
        protected NativeCompiler getCompiler() {
            getCompiler(new DefaultMutableCommandLineToolContext(), O_EXT, false)
        }
    
        protected abstract Class<? extends NativeCompileSpec> getCompileSpecType()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFacade.java

            this.scalaClasspath = scalaClasspath;
        }
    
        @Override
        public WorkResult execute(ScalaJavaJointCompileSpec spec) {
            return ZincScalaCompilerFactory.getCompiler(globalScopedCacheBuilderFactory, scalaClasspath).execute(spec);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:30 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

        }
    
        abstract protected Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec);
    
        @TaskAction
        public void compile() {
            ScalaJavaJointCompileSpec spec = createSpec();
            configureIncrementalCompilation(spec);
            Compiler<ScalaJavaJointCompileSpec> compiler = getCompiler(spec);
            if (isNonIncrementalCompilation()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

                }
            } else {
                COMPILER_CLASSLOADER_CACHE = new ClassLoaderCache(new URLClassLoader(new URL[]{}));
            }
        }
    
        static ZincScalaCompiler getCompiler(GlobalScopedCacheBuilderFactory globalScopedCacheBuilderFactory, HashedClasspath hashedScalaClasspath) {
            ScalaInstance scalaInstance;
            try {
                scalaInstance = getScalaInstance(hashedScalaClasspath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation.go

    	var allErrors field.ErrorList
    	var compiler plugincel.Compiler // composition compiler is stateful, create one lazily per policy
    	getCompiler := func() plugincel.Compiler {
    		if compiler == nil {
    			needsComposition := len(spec.Variables) > 0
    			compiler = createCompiler(needsComposition, opts.strictCostEnforcement)
    		}
    		return compiler
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.tasks.scala.ScalaCompile.setCompiler(org.gradle.language.base.internal.compile.Compiler)> has arguments/return type org.gradle.language.base.internal.compile.Compiler that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ScalaCompile.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  8. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.nativeplatform.NativeBinarySpec.getToolChain()> does not have raw return type assignable to org.gradle.api.provider.Provider in (NativeBinarySpec.java:0)
    Method <org.gradle.nativeplatform.NativeBinarySpec.getcCompiler()> does not have raw return type assignable to org.gradle.api.provider.Provider in (NativeBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top