Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 189 for wereld (0.28 sec)

  1. src/net/http/transport.go

    	ReadBufferSize int
    
    	// nextProtoOnce guards initialization of TLSNextProto and
    	// h2transport (via onceSetNextProtoDefaults)
    	nextProtoOnce      sync.Once
    	h2transport        h2Transport // non-nil if http2 wired up
    	tlsNextProtoWasNil bool        // whether TLSNextProto was nil when the Once fired
    
    	// ForceAttemptHTTP2 controls whether HTTP/2 is enabled when a non-zero
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Sets.java

       * set of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// because we take advantage of the default value - stop immediately
    	// also watchers that have had already its draining strategy set
    	// are no longer available (they were removed from the allWatchers and the valueWatchers maps)
    	if len(i.allWatchers) > 0 || len(i.valueWatchers) > 0 {
    		klog.Warningf("Terminating all watchers from cacher %v", groupResource)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

                Callable<String> createStringCallable() {
                    return { "hello" }
                }
    
                @Provides
                Factory<String> createStringFactory() {
                    return { "world" } as Factory
                }
            }
            def registry = new DefaultServiceRegistry(parent)
            registry.addProvider(new ServiceRegistrationProvider() {
                @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The IdeaModule Tooling API model element contains methods to retrieve resources and test resources so those elements were removed from the result of `IdeaModule.getSourceDirs()` and `IdeaModule.getTestSourceDirs()`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/horizontal.go

    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    		message = "recent recommendations were higher than current one, applying the highest recent recommendation"
    	}
    	return recommendation, reason, message
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  8. cmd/iam.go

    				}
    			}
    
    			// The following actions are performed about once in 4 times that
    			// IAM is refreshed:
    			if r.Intn(4) == 0 {
    				// Poll and remove accounts for those users who were removed
    				// from LDAP/OpenID.
    				if sys.LDAPConfig.Enabled() {
    					sys.purgeExpiredCredentialsForLDAP(ctx)
    					sys.updateGroupMembershipsForLDAP(ctx)
    				}
    				if sys.OpenIDConfig.ProviderEnabled() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    		}
    	}
    }
    
    func TestInterfaceValues(t *testing.T) {
    	// golang.org/issue/17714.
    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    	// except that nil interfaces were promoted to the zero reflect.Value.
    	// Eliminating a round trip to interface{} and back to reflect.Value
    	// eliminated this promotion, breaking these cases.
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go

    }
    
    // Test_SetNodeStatusUpdateNeededError expects the map nodesToUpdateStatusFor
    // to be empty if the SetNodeStatusUpdateNeeded is called on a node that
    // does not exist in the actual state of the world
    func Test_SetNodeStatusUpdateNeededError(t *testing.T) {
    	// Arrange
    	volumePluginMgr, _ := volumetesting.GetTestVolumePluginMgr(t)
    	asw := NewActualStateOfWorld(volumePluginMgr)
    	nodeName := types.NodeName("node-1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 66.1K bytes
    - Viewed (0)
Back to top