Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 284 for Compilation (0.48 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    [[sec:java_library_classes_usage]]
    == Using classes instead of jar for compilation
    
    A feature of the `java-library` plugin is that projects which consume the library only require the classes folder for compilation, instead of the full JAR.
    This enables lighter inter-project dependencies as resources processing (`processResources` task) and archive construction (`jar` task) are no longer executed when only Java code compilation is performed during development.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r89/ProblemProgressEventCrossVersionTest.groovy

            ''                         | null            | ''                                          | null
        }
    
        def "Can serialize groovy compilation error"() {
            buildFile """
                tasks.register("foo) {
            """
    
            given:
            def listener = new ProblemProgressListener()
    
            when:
            withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            assertToolchainUsages(events1, jdkMetadata1, "JavaLauncher")
            assertToolchainUsages(events2, jdkMetadata2, "JavaLauncher")
        }
    
        def "emits toolchain usages for compilation that configures #option via fork options"() {
            JvmInstallationMetadata curJdk = AvailableJavaHomes.getJvmInstallationMetadata(Jvm.current())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

                return DID_WORK
            }
    
            then:
            isEmptyDirectory(destinationDir)
        }
    
        def "files are stashed but not restored on a failure not produced by the compilation"() {
            def destinationDir = spec.getDestinationDir()
            new File(destinationDir, "file.txt").createNewFile()
            def pattern = new PatternSet().include("**/*.txt")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_executable_persistor.h

          BuildSerializedCacheKey(signature_hash, hlo_module);
      *serialized_entry.mutable_hlo_module() = hlo_module;
    
      // XLA compiler supports exporting executables as an AOT compilation result
      // to avoid running potentially expensive compilation pipeline twice.
      // Check if XLA compiler can export available executable.
      if (auto serialized_executable =
              compiler_client->SerializeExecutable(executable);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/testFixtures/groovy/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec.groovy

            then:
            fails("compileGroovy")
            failure.assertHasCause(
                'Enabling incremental compilation and configuring Java annotation processors for Groovy compilation is not allowed. ' +
                    'Disable incremental Groovy compilation or remove the Java annotation processor configuration.')
        }
    
        def "compileBadCodeWithAnnotationProcessor"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 27K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/gc.go

    	return ofile, output, err
    }
    
    // gcBackendConcurrency returns the backend compiler concurrency level for a package compilation.
    func gcBackendConcurrency(gcflags []string) int {
    	// First, check whether we can use -c at all for this compilation.
    	canDashC := concurrentGCBackendCompilationEnabledByDefault
    
    	switch e := os.Getenv("GO19CONCURRENTCOMPILATION"); e {
    	case "0":
    		canDashC = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    	}
    
    	ast, issues := env.Compile(expressionAccessor.GetExpression())
    	if issues != nil {
    		return resultError("compilation failed: "+issues.String(), apiservercel.ErrorTypeInvalid)
    	}
    	found := false
    	returnTypes := expressionAccessor.ReturnTypes()
    	for _, returnType := range returnTypes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    						if result.Error != nil {
    							t.Errorf("Unexpected error: %v", result.Error)
    						}
    					})
    					t.Run("auditAnnotation.valueExpression", func(t *testing.T) {
    						// Test audit annotation compilation by casting the result to a string
    						options := OptionalVariableDeclarations{HasParams: tc.hasParams, HasAuthorizer: tc.hasAuthorizer}
    						result := compiler.CompileCELExpression(&fakeAuditAnnotationCondition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTPUColocateCompositeResourceOps();
    
    // Creates a pass that expands outside compilation cluster at the head/tail of
    // TPU computation by adding outside compilation attribute to identity/cast ops
    // that are only used for host computation.
    std::unique_ptr<OperationPass<func::FuncOp>>
    CreateTPUHostComputationExpansionPass();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
Back to top