Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 202 for gStates (0.34 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static.go

    		if nodeState1.NumberOfAssignments != nodeState2.NumberOfAssignments {
    			klog.ErrorS(nil, "Node states number of assignments are different", "assignment1", nodeState1.NumberOfAssignments, "assignment2", nodeState2.NumberOfAssignments)
    			return false
    		}
    
    		if !areGroupsEqual(nodeState1.Cells, nodeState2.Cells) {
    			klog.ErrorS(nil, "Node states groups are different", "stateNode1", nodeState1.Cells, "stateNode2", nodeState2.Cells)
    			return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			// We don't know how many expressions are in the regex, just the string length (a huge
    			// improvement here would be to somehow get a count the number of expressions in the regex or
    			// how many states are in the regex state machine and use that to measure regex cost).
    			// For now, we're making a guess that each expression in a regex is typically at least 4 chars
    			// in length.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                return null;
            }
            if (best != null) {
                return best;
            }
    
            // Nothing found locally - try a remote search for all resolve states that were not yet searched remotely
            queue.addAll(missing);
            missing.clear();
            return findBestMatch(queue, failures, missing);
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"The time in seconds that each lease is reused. A lower value could avoid large number of objects reusing the same lease. Notice that a too small value may cause performance problems at storage layer.")
    }
    
    // ApplyTo mutates the provided server.Config.  It must never mutate the receiver (EtcdOptions).
    func (s *EtcdOptions) ApplyTo(c *server.Config) error {
    	if s == nil {
    		return nil
    	}
    
    	storageConfigCopy := s.StorageConfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. docs/bucket/replication/DESIGN.md

    the source object version, such as metadata updates via PutObjectTagging, PutObjectRetention, PutObjectLegalHold and COPY api are replicated in a similar manner to target version, with the `X-Amz-Replication-Status` again cycling through the same states.
    
    The description above details one way replication from source to target w.r.t incoming object uploads and metadata changes to source object version. If active-active replication is configured, any incoming uploads and metadata changes to...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  6. src/time/sleep_test.go

    	var rnd = rand.New(rand.NewSource(Now().UnixNano()))
    
    	timers := make([]*Timer, 100)
    	states := make([]int, len(timers))
    	indices := rnd.Perm(len(timers))
    
    	for len(indices) != 0 {
    		var ii = rnd.Intn(len(indices))
    		var i = indices[ii]
    
    		var timer = timers[i]
    		var state = states[i]
    		states[i]++
    
    		switch state {
    		case 0:
    			timers[i] = newTimerFunc(0)
    
    		case 1:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. src/runtime/map_fast64.go

    				memclrHasPointers(e, t.Elem.Size_)
    			} else {
    				memclrNoHeapPointers(e, t.Elem.Size_)
    			}
    			b.tophash[i] = emptyOne
    			// If the bucket now ends in a bunch of emptyOne states,
    			// change those to emptyRest states.
    			if i == abi.MapBucketCount-1 {
    				if b.overflow(t) != nil && b.overflow(t).tophash[0] != emptyRest {
    					goto notLast
    				}
    			} else {
    				if b.tophash[i+1] != emptyRest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/runtime/map_fast32.go

    				memclrHasPointers(e, t.Elem.Size_)
    			} else {
    				memclrNoHeapPointers(e, t.Elem.Size_)
    			}
    			b.tophash[i] = emptyOne
    			// If the bucket now ends in a bunch of emptyOne states,
    			// change those to emptyRest states.
    			if i == abi.MapBucketCount-1 {
    				if b.overflow(t) != nil && b.overflow(t).tophash[0] != emptyRest {
    					goto notLast
    				}
    			} else {
    				if b.tophash[i+1] != emptyRest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    // its String method returns "<invalid Value>", and all other methods panic.
    // Most functions and methods never return an invalid value.
    // If one does, its documentation states the conditions explicitly.
    //
    // A Value can be used concurrently by multiple goroutines provided that
    // the underlying Go value can be used concurrently for the equivalent
    // direct operations.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/util/internal/MultithreadedTestRule.java

                } finally {
                    lock.unlock();
                }
            }
    
            private State waitForState(State... states) throws InterruptedException {
                Date expiry = new Date(System.currentTimeMillis() + 4000L);
                Collection<State> expectedStates = Arrays.asList(states);
                lock.lock();
                try {
                    while (!expectedStates.contains(state)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 23.3K bytes
    - Viewed (0)
Back to top