Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for stay (0.15 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	"k8s.io/kubernetes/pkg/scheduler/util"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// DefaultPodMaxInUnschedulablePodsDuration is the default value for the maximum
    	// time a pod can stay in unschedulablePods. If a pod stays in unschedulablePods
    	// for longer than this value, the pod will be moved from unschedulablePods to
    	// backoffQ or activeQ. If this value is empty, the default value (5min)
    	// will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    			}
    			if RootMode == NeedRoot {
    				base.Fatal(ErrNoModRoot)
    			}
    			if !mustUseModules {
    				// GO111MODULE is 'auto', and we can't find a module root.
    				// Stay in GOPATH mode.
    				return
    			}
    		} else if search.InDir(modRoot, os.TempDir()) == "." {
    			// If you create /tmp/go.mod for experimenting,
    			// then any tests that create work directories under /tmp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

            return;
          }
    
          /*
           * Reclassify nodes in each list to new Map. Because we are using power-of-two expansion, the
           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    			multiPointEnabled.insert(ep.Name)
    		}
    
    		// Reorder plugins. Here is the expected order:
    		// - part 1: overridePlugins. Their order stay intact as how they're specified in regular extension point.
    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. cmd/xl-storage-format-v2.go

    // function shouldn't be further extended to update immutable
    // values such as ErasureInfo, ChecksumInfo.
    //
    // Metadata is only updated to new values, existing values
    // stay as is, if you wish to update all values you should
    // update all metadata freshly before calling this function
    // in-case you wish to clear existing metadata.
    func (x *xlMetaV2) UpdateObjectVersion(fi FileInfo) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    		prof.cycles += cycles
    		return
    	}
    
    	if prev := prof.cycles; prev > 0 {
    		// We can only store one call stack for runtime-internal lock contention
    		// on this M, and we've already got one. Decide which should stay, and
    		// add the other to the report for runtime._LostContendedRuntimeLock.
    		prevScore := uint64(cheaprand64()) % uint64(prev)
    		thisScore := uint64(cheaprand64()) % uint64(cycles)
    		if prevScore > thisScore {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers_test.go

    	}
    	if !podWorkers.ShouldPodContentBeRemoved(types.UID("abc")) {
    		t.Errorf("Expected pod to be suitable for removal (does not exist and synced at least once)")
    	}
    
    	// verify workers that are not terminated stay open even if config no longer
    	// sees them
    	podWorkers.SyncKnownPods(nil)
    	drainAllWorkers(podWorkers)
    	if len(podWorkers.podUpdates) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Our approach is to only do backwards-breaking Kotlin upgrades on a major Gradle release. We will always clearly document which Kotlin version we ship and announce upgrade plans before a major release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		proxier.natRules.Write(externalTrafficOnlyArgs, "-j", "ACCEPT")
    		dstLocalOnlyArgs := append(args, "-m", "addrtype", "--dst-type", "LOCAL")
    		// Allow traffic bound for external IPs that happen to be recognized as local IPs to stay local.
    		// This covers cases like GCE load-balancers which get added to the local routing table.
    		proxier.natRules.Write(dstLocalOnlyArgs, "-j", "ACCEPT")
    	}
    
    	if !proxier.ipsetList[kubeExternalIPSet].isEmpty() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top