Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 392 for Compilation (0.6 sec)

  1. tensorflow/compiler/jit/device_compilation_profiler_test.cc

      constexpr int64_t kDefaultCompilationThreshold = 2;
    
      // Should allow compilation since this is the first execution.
      profiler->RegisterExecution(function);
      EXPECT_TRUE(
          profiler->ShouldCompileCluster(function, DeviceCompileMode::kLazy, 0));
    
      // Shouldn't allow compilation until compilation has been requested at least
      // kDefaultCompilationThreshold times.
      profiler->RegisterExecution(function);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Dec 22 21:06:33 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

                }
            """
        }
    
        def "when doing a join compilation java problems are formatted the same as a standalone compication"() {
            given:
            file("src/main/groovy/JavaThing.java") << """\
                public class JavaThing {
                    public void badMethod() {
                        // The following line will cause a compilation error
                        return "Hello, World!"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/GradleCoreProblemGroup.java

            private final ProblemGroup java = new DefaultProblemGroup("java", "Java compilation", this);
            private final ProblemGroup groovy = new DefaultProblemGroup("groovy", "Groovy compilation", this);
            public ProblemGroup groovyDsl = new DefaultProblemGroup("groovy-dsl", "Groovy DSL script compilation", this);
    
            private DefaultCompilationProblemGroup(String id, String displayName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtCompilerFacility.kt

    import java.io.File
    
    /**
     * In-memory compilation result returned from [KaCompilerFacility].
     *
     * Compilation fails if there are critical errors reported either on the frontend or on the backend side.
     * Keep in mind that [KaCompilationResult] is a part of Analysis API, so it should only be used inside an analysis block.
     */
    public sealed class KaCompilationResult {
        /**
         * Successful compilation result.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeCliIncrementalCompilationIntegrationTest.groovy

         * but for the CLI compiler where incremental compilation after failure is not supported.
         */
        def "detects deletion of a source base class that leads to compilation failure"() {
            def a = source "class A {}"
            source "class B extends A {}"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'compilation:java:initialization-failed' : 'Java compilation initialization error',
            'compilation:java:java-compilation-error' : 'Java compilation error',
            'compilation:java:java-compilation-failed' : 'Java compilation error',
            'compilation:java:java-compilation-warning' : 'Java compilation warning',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsResourceGeneratorTest.groovy

                        return new File[0];
                    }
                }
            """
    
            when:
            Compilation compilation = compile(givenFirstSource, givenSecondSource)
    
            then:
            assertThat(compilation).succeededWithoutWarnings()
            assertThat(compilation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

     *     <li><code>implementation</code> dependencies are used at compilation and runtime.</li>
     *     <li><code>compileOnly</code> dependencies are used only at compilation and are not available at runtime.</li>
     *     <li><code>runtimeOnly</code> dependencies are not available at compilation and are used only at runtime.</li>
     *     <li><code>annotationProcessor</code> dependencies are used only at compilation for the annotation processor classpath</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/groovy/crossCompilation/kotlin/build.gradle.kts

    }
    
    dependencies {
        implementation("org.codehaus.groovy:groovy-all:2.4.15")
        testImplementation("junit:junit:4.13")
    }
    
    // tag::groovy-cross-compilation[]
    java {
        toolchain {
            languageVersion = JavaLanguageVersion.of(7)
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 352 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/scala/force/kotlin/build.gradle.kts

    dependencies {
        implementation("commons-collections:commons-collections:3.2.2")
        testImplementation("junit:junit:4.13")
    }
    
    // tag::force-compilation[]
    tasks.withType<ScalaCompile>().configureEach {
        scalaCompileOptions.apply {
            isForce = true
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 432 bytes
    - Viewed (0)
Back to top