Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 725 for compilation$ (0.29 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    Java 6 and 7 can be used for <<building_java_projects.adoc#sec:java_cross_compilation,compilation>> but are deprecated for use with testing. Testing with Java 6 and 7 will not be supported in Gradle 9.0.
    
    Any fully supported version of Java can be used for compilation or testing.
    However, the latest Java version may only be supported for compilation or testing, not for running Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/flags.cc

                "device"
                "forces compilation by XLA. Deprecated."),
    
           Flag("tf_xla_always_defer_compilation",
                &ops_flags->tf_xla_always_defer_compilation, ""),
           Flag("tf_xla_async_compilation", &ops_flags->tf_xla_async_compilation,
                "When lazy compilation is enabled, asynchronous compilation starts "
                "the cluster compilation in the background, and the fallback path "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/java/compile/AbstractGroovyCompileAvoidanceIntegrationSpec.groovy

                @org.codehaus.groovy.transform.GroovyASTTransformationClass("MyASTTransformation")
                public @interface MyAnnotation {}
            """
        }
    
        def 'always recompile if compilation avoidance is not enabled'() {
            given:
            settingsFile.text = settingsFile.text.readLines().findAll { !it.contains("enableFeaturePreview") }.join('\n')
            buildFile << """
                project(':b') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/InstrumentedPropertiesResourceGeneratorTest.groovy

                    @ReplacesEagerProperty
                    public abstract Property<String> getSourceCompatibility();
                }
            """
    
            when:
            Compilation compilation = compile(givenSource)
    
            then:
            assertThat(compilation)
                .generatedFile(CLASS_OUTPUT, "META-INF/gradle/instrumentation/upgraded-properties.json")
                .contentsAsString(StandardCharsets.UTF_8)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_device_compiler_client.h

      // have been produced by this client.
      absl::StatusOr<std::string> SerializeExecutable(
          const xla::PjRtLoadedExecutable& executable) override;
    
      // PjRt doesn't support AOT compilation yet. Builds a PjRtLoadedExecutable and
      // serializes it to string.
      absl::StatusOr<std::string> BuildSerializedExecutable(
          const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/crossCompilation/groovy/build.gradle

        implementation 'commons-lang:commons-lang:2.6'
        testImplementation 'junit:junit:4.+'
    }
    
    // tag::java-cross-compilation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(7)
        }
    }
    // end::java-cross-compilation[]
    
    tasks.withType(Test) {
        systemProperty('targetJavaVersion', project.findProperty('targetJavaVersion'))
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 773 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    ====
    
    [[sec:scala_incremental_compilation]]
    == Incremental compilation
    
    By compiling only classes whose source code has changed since the previous compilation, and classes affected by these changes, incremental compilation can significantly reduce Scala compilation time. It is particularly effective when frequently compiling small code increments, as is often done at development time.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/crossCompilation/kotlin/build.gradle.kts

        implementation("commons-lang:commons-lang:2.6")
        testImplementation("junit:junit:4.+")
    }
    
    // tag::java-cross-compilation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(7)
        }
    }
    // end::java-cross-compilation[]
    
    tasks.withType<Test>().configureEach {
        project.findProperty("targetJavaVersion")?.let { systemProperty("targetJavaVersion", it) }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 822 bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/lang_test.go

    	if testLang(t, "go9.99", src, outfile) == nil {
    		t.Error("compilation with -lang=go9.99 succeeded unexpectedly")
    	}
    
    	// This test will have to be adjusted if we ever reach 1.99 or 2.0.
    	if testLang(t, "go1.99", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.99 succeeded unexpectedly")
    	}
    
    	if testLang(t, "go1.8", src, outfile) == nil {
    		t.Error("compilation with -lang=go1.8 succeeded unexpectedly")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top