Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 284 for Compilation (0.3 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

            // TODO - should skip the task as NO-SOURCE
            result.assertTasksSkipped(":compileDebugSwift", ":linkDebug", ":assemble")
        }
    
        def "build fails when compilation fails"() {
            given:
            buildFile << """
                apply plugin: 'swift-library'
             """
    
            and:
            file("src/main/swift/broken.swift") << "broken!"
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

            this.targetPlatform = objectFactory.property(NativePlatform.class);
            this.toolChain = objectFactory.property(NativeToolChain.class);
        }
    
        /**
         * The tool chain used for compilation.
         *
         * @since 4.7
         */
        @Internal
        public Property<NativeToolChain> getToolChain() {
            return toolChain;
        }
    
        /**
         * The platform being compiled for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	uncompiledRules []apiextensions.ValidationRule
    	compiledRules   []CompilationResult
    
    	// Program compilation is pre-checked at CRD creation/update time, so we don't expect compilation to fail
    	// they are recompiled and added to this type, and it does, it is an internal bug.
    	// But if somehow we get any compilation errors, we track them and then surface them as validation errors.
    	compilationErr error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf_test.go

    				}
    
    				// Verify that the call_file attribute for the inlined
    				// instance is ok. In this case it should match the file
    				// for the main routine. To do this we need to locate the
    				// compilation unit DIE that encloses what we're looking
    				// at; this can be done with the examiner.
    				cf, cfOK := child.Val(dwarf.AttrCallFile).(int64)
    				if !cfOK {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    > Task :app:packageApp
    
    BUILD SUCCESSFUL in 1s
    3 actionable tasks: 3 executed
    ----
    
    Gradle executed a number of tasks it required to build the JAR file, which included the compilation of the code of the `app` project and the compilation of code dependencies.
    
    Looking at the newly created ZIP file, we can see that it contains everything needed to run the Java application:
    
    [source,bash]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

                    final String interfaceCompletedMessage = String.format("Scala Compiler interface compilation took %s", timer.getElapsed());
                    if (timer.getElapsedMillis() > 30000) {
                        LOGGER.info(interfaceCompletedMessage);
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/base/PredicatesTest.java

        nums.add(3);
        Predicate<Integer> isThree = Predicates.in(nums);
        assertFalse(isThree.apply(3));
      }
    
      /*
       * Tests that compilation will work when applying explicit types.
       */
      @SuppressWarnings("unused") // compilation test
      public void testIn_compilesWithExplicitSupertype() {
        Collection<Number> nums = ImmutableSet.of();
        Predicate<Number> p1 = Predicates.in(nums);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractJavaProjectTestFixturesIntegrationTest.groovy

                public class Leaking {
                }
            """
            when:
            fails 'compileTestJava'
    
            then:
            failure.assertHasCause("Compilation failed")
            errorOutput.contains("package org.apache.commons.lang3 does not exist")
        }
    
        def "test fixtures api dependencies are visible on the test compile classpath"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

    import static org.gradle.api.internal.tasks.compile.incremental.compilerapi.deps.GeneratedResource.Location.SOURCE_OUTPUT;
    
    /**
     * A helper class to handle incremental compilation after a failure: it makes moving files around easier and reverting state easier.
     */
    public class CompileTransaction {
    
        private static final Logger LOG = LoggerFactory.getLogger(CompileTransaction.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/partially_decluster_pass.cc

    //
    // then pulling `f` out of the cluster may reduce the number of compilations and
    // will never increase the number of compilations.
    //
    // We may reduce the number of compilations if f is many to one.  For instance
    // if f(x,y) = x-y then x=3,y=1 and x=4,y=2 will generate two different
    // compilations if f is in the cluster but only one compilation if f is outside
    // the cluster.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top