Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for rebuild (0.26 sec)

  1. 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)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    This can lead to hard-to-diagnose cache misses when the consuming build is not a clean build or when a cacheable task depends on the output of a non-cacheable task.
    For example, when doing incremental builds it is possible that the artifact on disk which is considered up-to-date and the artifact in the build cache are different even though they are essentially the same.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. build/common.sh

    # 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
    # build/build-image) or change the set of volumes in the data container.
    KUBE_BUILD_IMAGE_VERSION_BASE="$(cat "${KUBE_ROOT}/build/build-image/VERSION")"
    readonly KUBE_BUILD_IMAGE_VERSION_BASE
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/extern.go

    // GOROOT environment variable, if set at process start,
    // or else the root used during the Go build.
    func GOROOT() string {
    	s := gogetenv("GOROOT")
    	if s != "" {
    		return s
    	}
    	return defaultGOROOT
    }
    
    // buildVersion is the Go tree's version string at build time.
    //
    // If any GOEXPERIMENTs are set to non-default values, it will include
    // "X:<GOEXPERIMENT>".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/subr.go

    		return n
    	}
    
    	if n.X.Op() == ir.OTYPE {
    		return n
    	}
    
    	s := n.Sel
    	if s == nil {
    		return n
    	}
    
    	switch path, ambig := dotpath(s, t, nil, false); {
    	case path != nil:
    		// rebuild elided dots
    		for c := len(path) - 1; c >= 0; c-- {
    			dot := ir.NewSelectorExpr(n.Pos(), ir.ODOT, n.X, path[c].field.Sym)
    			dot.SetImplicit(true)
    			dot.SetType(path[c].field.Type)
    			n.X = dot
    		}
    	case ambig:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 19:45:58 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/CompactHashMap.java

          // head of its appropriate `newTable` linked list.
          while (oldNext != UNSET) {
            int entryIndex = oldNext - 1;
            int oldEntry = entries[entryIndex];
    
            // Rebuild the full 32-bit hash using entry hashPrefix and oldTableIndex ("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
    - 39.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/action.go

    			if a2.Package == nil || (a2.Mode != "build-install" && a2.Mode != "build") || haveDep[a2.Package.ImportPath] {
    				continue
    			}
    			haveDep[a2.Package.ImportPath] = true
    			a.Deps = append(a.Deps, a2)
    			if a2.Mode == "build-install" {
    				a2 = a2.Deps[0] // walk children of "build" action
    			}
    			workq = append(workq, a2)
    		}
    	}
    
    	// If this is go build -linkshared, then the link depends on the shared libraries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top