Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 343 for compilation$ (0.21 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top