Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,056 for previousN (0.24 sec)

  1. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    	require.NoErrorf(t, err, "could not create testing checkpoint manager: %v", err)
    
    	for _, tc := range testCases {
    		t.Run(tc.description, func(t *testing.T) {
    			// ensure there is no previous checkpoint
    			cpm.RemoveCheckpoint(testingCheckpoint)
    
    			// prepare checkpoint for testing
    			if strings.TrimSpace(tc.checkpointContent) != "" {
    				checkpoint := &testutil.MockCheckpoint{Content: tc.checkpointContent}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. cmd/service.go

    	if globalServiceFreezeCnt <= 0 {
    		// Set to a nil channel.
    		var _ch chan struct{}
    		if val := globalServiceFreeze.Swap(_ch); val != nil {
    			if ch, ok := val.(chan struct{}); ok && ch != nil {
    				// Close previous non-nil channel.
    				xioutil.SafeClose(ch)
    			}
    		}
    		globalServiceFreezeCnt = 0 // Don't risk going negative.
    	}
    	globalServiceFreezeMu.Unlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 28 07:02:14 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pkg/registry/discovery/endpointslice/strategy.go

    			if ep.NodeName == nil && ok && prevNodeNames.Has(newTopologyNodeName) && len(apivalidation.ValidateNodeName(newTopologyNodeName, false)) == 0 {
    				// Copy the label previously used to store the node name into the nodeName field,
    				// in order to make partial updates preserve previous node info
    				ep.NodeName = &newTopologyNodeName
    			}
    			// Drop writes to this field via the v1 API as documented
    			ep.DeprecatedTopology = nil
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 02 10:00:01 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/LoadingCache.java

       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
       * previous value (if any) will continue to be returned by {@code get(key)} unless it is evicted.
       * If the new value is loaded successfully it will replace the previous value in the cache; if an
       * exception is thrown while refreshing the previous value will remain, <i>and the exception will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  5. pkg/proxy/endpointschangetracker.go

    	for nn, change := range changes {
    		if ect.processEndpointsMapChange != nil {
    			ect.processEndpointsMapChange(change.previous, change.current)
    		}
    		result.UpdatedServices.Insert(nn)
    
    		em.unmerge(change.previous)
    		em.merge(change.current)
    		detectStaleConntrackEntries(change.previous, change.current, &result.DeletedUDPEndpoints, &result.NewlyActiveUDPServices)
    	}
    	ect.checkoutTriggerTimes(&result.LastChangeTriggerTimes)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. src/net/http/httptrace/trace.go

    	// closed by users of ClientTrace.
    	Conn net.Conn
    
    	// Reused is whether this connection has been previously
    	// used for another HTTP request.
    	Reused bool
    
    	// WasIdle is whether this connection was obtained from an
    	// idle pool.
    	WasIdle bool
    
    	// IdleTime reports how long the connection was previously
    	// idle, if WasIdle is true.
    	IdleTime time.Duration
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    		}
    	}
    }
    
    // SetGCPercent sets the garbage collection target percentage:
    // a collection is triggered when the ratio of freshly allocated data
    // to live data remaining after the previous collection reaches this percentage.
    // SetGCPercent returns the previous setting.
    // The initial setting is the value of the GOGC environment variable
    // at startup, or 100 if the variable is not set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/LoadingCache.java

       * Loads a new value for {@code key}, possibly asynchronously. While the new value is loading the
       * previous value (if any) will continue to be returned by {@code get(key)} unless it is evicted.
       * If the new value is loaded successfully it will replace the previous value in the cache; if an
       * exception is thrown while refreshing the previous value will remain, <i>and the exception will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultVariantDefinition.java

        }
    
        @Nullable
        @Override
        public VariantDefinition getPrevious() {
            return previous;
        }
    
        private int getDepth() {
            return previous == null ? 1 : previous.getDepth() + 1;
        }
    
        @Override
        public String toString() {
            if (previous != null) {
                return previous + " <- (" + getDepth() + ") " + transformStep;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ImmutableModuleSources.java

            if (previous != null && value == null) {
                throw new AssertionError("value must not be null");
            }
            this.previous = previous;
            this.value = value;
            this.hashCode = 31 * (previous == null ? 0 : previous.hashCode) + (value == null ? 0 : value.hashCode());
            this.size = previous == null ? 0 : 1 + previous.size;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top