Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 284 for Compilation (0.61 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The unitchecker package defines the main function for an analysis
    // driver that analyzes a single compilation unit during a build.
    // It is invoked by a build system such as "go vet":
    //
    //	$ go vet -vettool=$(which vet)
    //
    // It supports the following command-line protocol:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalJavaCompilationIntegrationTest.groovy

            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        def "changing upstream constant causes compilation for downstream constants"() {
            source api: ["class A { final static int x = 1; }", "class B { final static int x = A.x; }"],
                impl: ["class X { final static int x = B.x; }",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    		}
    		evaluation.ExpressionAccessor = compilationResult.ExpressionAccessor
    		if compilationResult.Error != nil {
    			evaluation.Error = &cel.Error{
    				Type:   cel.ErrorTypeInvalid,
    				Detail: fmt.Sprintf("compilation error: %v", compilationResult.Error),
    			}
    			continue
    		}
    		if compilationResult.Program == nil {
    			evaluation.Error = &cel.Error{
    				Type:   cel.ErrorTypeInternal,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

     *
     * @since 4.0.0
     */
    @Experimental
    public enum JavaPathType implements PathType {
        /**
         * The path identified by the Java {@code --class-path} option.
         * Used for compilation, execution and Javadoc among others.
         * The Java tools location is {@link StandardLocation#CLASS_PATH}.
         *
         * <h4>Context-sensitive interpretation</h4>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    //     eliminates the use of resource variables.
    //   . Legalizes the operations to XLA HLO operations.
    //   . Canonicalizes the XLA HLO operations.
    //
    // device_type: XLA JIT device to use for compilation such as "XLA_CPU_JIT",
    //   "XLA_GPU_JIT" or "XLA_TPU_JIT".
    // use_tuple_args: when this is true, always create a tuple argument for the
    //   entry computation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

                .createRequest(unitOfWork)
                .execute()
                .getOutputAs(GroovyScriptCompilationOutput.class)
                .get();
        }
    
        /**
         * We want to use build cache for script compilation, but build cache might not be available yet with early execution engine.
         * Thus settings and init scripts are not using build cache for now.<br/><br/>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesIntegrationTest.groovy

                    }
                }
            """
    
            expect: "does NOT compile due to a missing dependency"
            fails("test")
            failure.assertHasErrorOutput("Compilation failed; see the compiler error output for details.")
            failure.assertHasErrorOutput("error: package org.junit does not exist")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 13 20:36:32 UTC 2023
    - 35.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptEvaluator.kt

                val CACHING_DISABLED_REASON: CachingDisabledReason = CachingDisabledReason(CachingDisabledReasonCategory.NOT_CACHEABLE, "Caching of Kotlin script compilation disabled by property")
            }
    
            override fun getDisplayName(): String =
                "Kotlin DSL script compilation (${programId.templateId})"
    
    
            override fun shouldDisableCaching(detectedOverlappingOutputs: OverlappingOutputs?): Optional<CachingDisabledReason> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 10:23:24 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            clearImplProjectDependencies()
    
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        def "deletion of jar with dependents causes compilation failure"() {
            source api: ["class A {}"], impl: ["class ImplA extends A {}"]
            impl.snapshot { run language.compileTaskName }
    
            when:
            clearImplProjectDependencies()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    By default, the Java project creates a convention for organizing unit tests in the directory `src/test/java`.
    Additionally, if you apply the Groovy plugin, source code under the directory `src/test/groovy` is considered for compilation (with the same standard for Kotlin under the directory `src/test/kotlin`).
    Consequently, source code directories for other test types should follow a similar pattern:
    
    ----
    .
    └── src
        ├── functionalTest
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top