Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,259 for cCompiler (0.14 sec)

  1. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompileOptions.java

         * <p>
         * When this option is set to {@code false} (the default), Groovy code will not be subject to annotation processing, but any joint compiled Java code will be.
         * If the compiler argument {@code "-proc:none"} was specified as part of the Java compile options, the value of this flag will be ignored.
         * No annotation processing will be performed regardless, on Java or Groovy source.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

        /**
         * Returns the name of the compile only configuration for this source set.
         *
         * @return The compile only configuration name
         *
         * @since 2.12
         */
        String getCompileOnlyConfigurationName();
    
        /**
         * Returns the name of the 'compile only api' configuration for this source set.
         *
         * @return The 'compile only api' configuration name
         *
         * @since 6.7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

    #include "tensorflow/compiler/jit/variable_info.h"
    #include "tensorflow/compiler/jit/variable_info_util.h"
    #include "tensorflow/compiler/jit/xla_compile_util.h"
    #include "tensorflow/compiler/jit/xla_compiler_options_util.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    #include "tensorflow/compiler/tf2xla/tf2xla_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return compileOptions;
        }
    
        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/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    For example, if you want to change the warning level generated by the compiler for all variants, you can use this configuration:
    
    .Setting {cpp} compiler options for all variants
    ====
    include::sample[dir="snippets/cpp/basic/kotlin",files="build.gradle.kts[tags=cpp-compiler-options-all-variants]"]
    include::sample[dir="snippets/cpp/basic/groovy",files="build.gradle[tags=cpp-compiler-options-all-variants]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        }
        javaLauncher = launcher
        if (jvmVersionForTest().canCompileOrRun(9)) {
            // Required by JdkTools and JdkJavaCompiler
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED"))
            jvmArgs(listOf("--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED"))
    
            if (isUnitTest() || usesEmbeddedExecuter()) {
                jvmArgs(org.gradle.internal.jvm.JpmsConfiguration.GRADLE_DAEMON_JPMS_ARGS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

    import org.gradle.api.internal.tasks.compile.CleaningJavaCompiler;
    import org.gradle.api.internal.tasks.compile.CommandLineJavaCompileSpec;
    import org.gradle.api.internal.tasks.compile.CompilationSourceDirs;
    import org.gradle.api.internal.tasks.compile.CompilerForkUtils;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpec;
    import org.gradle.api.internal.tasks.compile.DefaultGroovyJavaJointCompileSpecFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/build.go

    	default:
    		return fmt.Errorf("unknown compiler %q", value)
    	}
    	cfg.BuildToolchainName = value
    	cfg.BuildContext.Compiler = value
    	return nil
    }
    
    func (c buildCompiler) String() string {
    	return cfg.BuildContext.Compiler
    }
    
    func init() {
    	switch build.Default.Compiler {
    	case "gc", "gccgo":
    		buildCompiler{}.Set(build.Default.Compiler)
    	}
    }
    
    type BuildFlagMask int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	"k8s.io/apiserver/pkg/cel/library"
    )
    
    // filterCompiler implement the interface FilterCompiler.
    type filterCompiler struct {
    	compiler Compiler
    }
    
    func NewFilterCompiler(env *environment.EnvSet) FilterCompiler {
    	return &filterCompiler{compiler: NewCompiler(env)}
    }
    
    type evaluationActivation struct {
    	object, oldObject, params, request, namespace, authorizer, requestResourceAuthorizer, variables interface{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

        }
    
        def goodCode() {
            file("src/main/groovy/compile/test/Person.groovy") << """
                package compile.test
                class Person {}
            """.stripIndent()
        }
    
        def badCode() {
            file("src/main/groovy/compile/test/Person.groovy") << """
                package compile.test
                class Person extends {}
            """.stripIndent()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
Back to top