Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 782 for compilation$ (0.17 sec)

  1. 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)
  2. 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)
  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. src/go/doc/comment/testdata/text3.txt

    those provided by package "net/rpc".
    
    The implementation compiles a custom codec for each data type in the stream
    and is most efficient when a single Encoder is used to transmit a stream of
    values, amortizing the cost of compilation.
    -- text --
    Package gob manages streams
    of gobs - binary values
    exchanged between an Encoder
    (transmitter) and a Decoder
    (receiver). A typical use is
    transporting arguments and
    results of remote procedure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 937 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. 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)
  10. 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)
Back to top