Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for prebuilt (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    * Benefiting from continuous runtime optimization in the JVM
    * <<file_system_watching.adoc#sec:daemon_watch_fs,Watching the file system>> to calculate exactly what needs to be rebuilt before you run a build
    
    [[understanding_wrapper]]
    == Understanding the Daemon
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            withBuildCache().run "help"
            then:
            result.groupedOutput.task(":buildSrc:compileGroovy").outcome == "FROM-CACHE"
        }
    
        def "tasks stay cached after buildSrc with custom Groovy task is rebuilt"() {
            configureCacheForBuildSrc()
            file("buildSrc/src/main/groovy/CustomTask.groovy") << defineCachedTask()
            file("input.txt") << "input"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            run("impl:build")
    
            then:
            executed ":api:jar", ":impl:jar"
            fixture.assertProjectsConfigured(":", ":impl", ":api")
    
            when:
            run("impl:build", "--no-rebuild") // impl -> api
    
            then:
            executed ":impl:jar"
            notExecuted ":api:jar"
            // :api is configured to resolve impl.compileClasspath configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/help/helpdoc.go

    This makes it easy to experiment with small multipackage programs
    outside of the usual work spaces, but such programs cannot be
    installed with "go install" (there is no work space in which to install them),
    so they are rebuilt from scratch each time they are built.
    To avoid ambiguity, Go programs cannot use relative import paths
    within a work space.
    
    Remote import paths
    
    Certain import paths also
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	if len(slices) == 0 {
    		log.Debugf("endpoint slices of (%s, %s) not found", name, namespace)
    		return nil
    	}
    
    	if updateCache {
    		// A cache update was requested. Rebuild the endpoints for these slices.
    		for _, slice := range slices {
    			esc.updateEndpointCacheForSlice(hostName, slice)
    		}
    	}
    
    	return esc.endpointCache.Get(hostName)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/CompactHashSet.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild hash using entry hashPrefix and tableIndex ("hashSuffix")
            int hash = CompactHashing.getHashPrefix(oldEntry, oldMask) | oldTableIndex;
    
            int newTableIndex = hash & newMask;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. build/common.sh

    KUBE_BASE_IMAGE_REGISTRY="${KUBE_BASE_IMAGE_REGISTRY:-registry.k8s.io/build-image}"
    readonly KUBE_BASE_IMAGE_REGISTRY
    
    # This version number is used to cause everyone to rebuild their data containers
    # and build image.  This is especially useful for automated build systems like
    # Jenkins.
    #
    # Increment/change this number if you change the build image (anything under
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    	pvcStatusCap := pvc.Status.Capacity.Storage()
    	dswp.desiredStateOfWorld.UpdatePersistentVolumeSize(uniqueVolumeName, pvCap)
    
    	// in case the actualStateOfWorld was rebuild after kubelet restart ensure that claimSize is set to accurate value
    	dswp.actualStateOfWorld.InitializeClaimSize(klog.TODO(), uniqueVolumeName, pvcStatusCap)
    }
    
    func getUniqueVolumeName(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashSet.java

          int oldNext = CompactHashing.tableGet(oldTable, oldTableIndex);
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild hash using entry hashPrefix and tableIndex ("hashSuffix")
            int hash = CompactHashing.getHashPrefix(oldEntry, oldMask) | oldTableIndex;
    
            int newTableIndex = hash & newMask;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. src/runtime/extern.go

    	Setting cgocheck=1 (the default) enables relatively cheap
    	checks that may miss some errors. A more complete, but slow,
    	cgocheck mode can be enabled using GOEXPERIMENT (which
    	requires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.
    
    	disablethp: setting disablethp=1 on Linux disables transparent huge pages for the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top