Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 745 for Compilation (0.25 sec)

  1. platforms/documentation/docs/src/snippets/scala/force/groovy/build.gradle

    }
    
    dependencies {
        implementation 'commons-collections:commons-collections:3.2.2'
        testImplementation 'junit:junit:4.13'
    }
    
    // tag::force-compilation[]
    tasks.withType(ScalaCompile) {
        scalaCompileOptions.with {
            force = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 415 bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/tests/device_compiler_test_helper.h

      // Runs the graph using specified batch size both with and without XLA JIT
      // compilation. Returns an error if the results between the two do not match.
      Status ExecuteWithBatch(const GraphDef& graph, int batch);
    
      // Adds the suffix "_altered" to the HLO module names of all of the persistent
      // XLA compilation cache entries found at the specified directory. If none are
      // found, returns NOT_FOUND error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 08:24:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_concurrent_backend.txt

    # Tests golang.org/issue/48490
    # cmd/go should enable concurrent compilation by default
    
    # Reset all experiments, since one of them can disable
    # concurrent compilation, e.g: fieldtrack.
    env GOEXPERIMENT=none
    
    env GOMAXPROCS=4
    go build -n -x -a fmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 05 01:30:56 UTC 2021
    - 265 bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCachedCompileIntegrationTest.groovy

        def 'compilation can be cached'() {
            when:
            withBuildCache().run compilationTask
    
            then:
            compileIsNotCached()
    
            when:
            withBuildCache().succeeds 'clean', compilationTask
    
            then:
            compileIsCached()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12860")
        def 'compilation is cached if the project version changes'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Get the consumable configuration which produces the {@code apiElements} variant of this feature.
         * This configuration includes all API compilation dependencies as well as the feature's
         * compilation outputs, but does not include {@code implementation}, {@code compileOnly},
         * or {@code runtimeOnly} dependencies.
         *
         * @return The {@code apiElements} configuration.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/cel/compile_test.go

    					Expression: "user.username == 'foo'",
    				},
    			},
    			wantErr: `compilation failed: ERROR: <input>:1:1: undeclared reference to 'user' (in container '')`,
    		},
    		{
    			name: "invalid ClaimMappingCondition",
    			expressionAccessors: []ExpressionAccessor{
    				&ClaimMappingExpression{
    					Expression: "claims + 1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/compile/GroovyCompile.java

            }
    
            if (annotationProcessingConfigured) {
    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. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            return incremental;
        }
    
        /**
         * Used to enable or disable incremental compilation after a failure.
         * <p>
         * By default, incremental compilation after a failure is enabled for Java and Groovy.
         * It has no effect for Scala. It has no effect if incremental compilation is not enabled.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/Swift4Test.groovy

                    """#if swift(>=5.0)
                            XCTFail("Compilation unit compiled with Swift 5+ instead of Swift 4.x");
                        #elseif swift(>=4.0)
                            // Do nothing
                        #else
                            XCTFail("Compilation unit compiled with Swift 3- instead of Swift 4.x");
                        #endif
                    """)
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      return s;
    }
    
    // Rewrites shape inference graph for outside compilation:
    // 1) If XlaSendFromHost also exists in `host_graph`, copy nodes from
    //    `host_graph`. Because we might still have outside compilation to outside
    //    compilation placeholder nodes in shape inference graph, which will prevent
    //    us from inferring XlaSendFromHost shape. But in `host_graph`, we already
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
Back to top