Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 181 for prebuilt (0.26 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaAnnotationProcessingCompileAvoidanceIntegrationTest.groovy

                }
            '''
            file('b/src/main/resources/B.properties') << '''
                bprop=bvalue
            '''
        }
    
        def "does not rebuild project when upstream project has not changed, only rebuilt"() {
            given:
            succeeds(":a:assemble")
    
            when:
            // cleaning b and rebuilding will cause b.jar to be different
            succeeds(":b:clean")
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/registry/core/service/portallocator/controller/repair.go

    			c.leaks[port] = count - 1
    			if err := rebuilt.Allocate(port); err != nil {
    				// do not increment the metric here, if it is a leak it will be detected once the counter gets to 0
    				runtime.HandleError(fmt.Errorf("the node port %d may have leaked, but can not be allocated: %v", port, err))
    			}
    		default:
    			nodePortRepairPortErrors.WithLabelValues("leak").Inc()
    			// do not add it to the rebuilt set, which means it will be available for reuse
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/gradle_optimizations.adoc

    Incremental Builds are a great optimization that helps avoid work already done.
    If a developer continuously changes a single file, there is likely no need to rebuild all the other files in the project.
    
    However, what happens when the same developer switches to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    This is where a *build cache* is helpful.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.nativeplatform.internal.prebuilt.DefaultPrebuiltLibraries> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultPrebuiltLibraries.java:0)
    Class <org.gradle.nativeplatform.internal.prebuilt.DefaultPrebuiltLibrary> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (DefaultPrebuiltLibrary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    However, what happens when the same developer decides to switch to a new branch created last week?
    The files are rebuilt, even though the developer is building something that has been built before.
    
    This is where a Build Cache is helpful. The cache stores previous build results, and greatly reduces the need to rebuild things when they have already been built locally.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testshared/shared_test.go

    	}
    	return fi.ModTime().After(stampTime)
    }
    
    // Fail unless path has been rebuilt (i.e. is newer than the time stamp used by
    // isNew)
    func AssertRebuilt(t *testing.T, msg, path string) {
    	t.Helper()
    	if !isNew(t, path) {
    		t.Errorf("%s was not rebuilt (%s)", msg, path)
    	}
    }
    
    // Fail if path has been rebuilt (i.e. is newer than the time stamp used by isNew)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_use_cases.adoc

    When you are switching branches back and forth, the local results get rebuilt over and over again, even if you are building something that has already been built before.
    The build cache remembers the earlier build results, and greatly reduces the need to rebuild things when they have already been built locally.
    This can also extend to rebuilding different commits, like when running `git bisect`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FixedSharedModeCrossProcessCacheAccess.java

            }
            FileLock fileLock = lockManager.lock(lockTarget, lockOptions, cacheDisplayName);
            try {
                boolean rebuild = initializationAction.requiresInitialization(fileLock);
                if (rebuild) {
                    Exception latestException = null;
                    for (int tries = 0; rebuild && tries < 3; tries++) {
                        fileLock.close();
                        fileLock = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectProviderExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.NamedDomainObjectProvider
    
    
    /**
     * Allows a [NamedDomainObjectProvider] to be configured via invocation syntax.
     *
     * ```kotlin
     * val rebuild by tasks.registering
     * rebuild { // rebuild.configure {
     *   dependsOn("clean")
     * }
     * ```
     */
    operator fun <T> NamedDomainObjectProvider<T>.invoke(action: T.() -> Unit) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1009 bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

            new IsolatingProcessingStrategy(result)
        }
    
        def "does a full rebuild when no originating elements are given for a type"() {
            when:
            filer.createSourceFile("Foo")
    
            then:
            result.fullRebuildCause == "the generated type 'Foo' must have exactly one originating element, but had 0"
        }
    
        def "does a full rebuild when no originating elements are given for a resource"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top