Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 197 for prebuilt (0.51 sec)

  1. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    # A missing $CC caused the C dependencies of the net
    # package to appear stale, and it could not be rebuilt due to a missing $CC.
    
    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/registry/core/service/ipallocator/controller/repair.go

    	}
    
    	// save logic
    	// Blast the rebuilt state into storage.
    	for family, rebuilt := range rebuiltByFamily {
    		err = c.saveSnapShot(rebuilt, c.allocatorByFamily[family], snapshotByFamily[family])
    		if err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/FailingIncrementalTasksIntegrationTest.groovy

            where:
            modifyOutputs | incremental | description
            "add"         | false       | "with additional outputs is fully rebuilt"
            "change"      | false       | "with changed outputs is fully rebuilt"
            "remove"      | false       | "with removed outputs is fully rebuilt"
            "none"        | true        | "with unmodified outputs is executed as incremental"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 01 14:32:13 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/test_rebuildall.txt

    env GO111MODULE=off
    
    # Regression test for golang.org/issue/6844:
    # 'go test -a' should force dependencies in the standard library to be rebuilt.
    
    [short] skip
    
    go test -x -a -c testdata/dep_test.go
    stderr '^.*[/\\]compile'$GOEXE'["]? (.* )?regexp .*[/\\]regexp\.go'
    
    -- testdata/dep_test.go --
    package deps
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 19 00:08:30 UTC 2019
    - 328 bytes
    - Viewed (0)
Back to top