Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for 3h0m0s (0.14 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    	workers    = 5
    )
    
    // Repair is a controller loop that examines all service ClusterIP allocations and logs any errors,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/controller/deployment/deployment_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the times
    	// a deployment is going to be requeued:
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    )
    
    // controllerKind contains the schema.GroupVersionKind for this controller type.
    var controllerKind = apps.SchemeGroupVersion.WithKind("Deployment")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller.go

    	// With the current rate-limiter in use (5ms*2^(maxRetries-1)) the following numbers represent the
    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms, 160ms, 320ms, 640ms, 1.3s, 2.6s, 5.1s, 10.2s, 20.4s, 41s, 82s
    	maxRetries = 15
    
    	// maxCapacity represents the maximum number of addresses that should be
    	// stored in an Endpoints resource. In a future release, this controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/net/dial.go

    	// is the amount of time to wait for IPv6 to succeed before
    	// assuming that IPv6 is misconfigured and falling back to
    	// IPv4.
    	//
    	// If zero, a default delay of 300ms is used.
    	// A negative value disables Fast Fallback support.
    	FallbackDelay time.Duration
    
    	// KeepAlive specifies the interval between keep-alive
    	// probes for an active network connection.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/net/dial_test.go

    	}{
    		// Use a very brief delay, which should fallback immediately.
    		{true, 1 * time.Nanosecond, 0},
    		// Use a 200ms explicit timeout.
    		{true, 200 * time.Millisecond, 200 * time.Millisecond},
    		// The default is 300ms.
    		{true, 0, 300 * time.Millisecond},
    	}
    
    	handler := func(dss *dualStackServer, ln Listener) {
    		for {
    			c, err := ln.Accept()
    			if err != nil {
    				return
    			}
    			c.Close()
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. cmd/object-api-utils.go

    //
    // compressSelfTest tries to catch any issue in the compression implementation
    // early instead of silently corrupting data.
    func compressSelfTest() {
    	// 4 MB block.
    	// Approx runtime ~30ms
    	data := make([]byte, 4<<20)
    	rng := rand.New(rand.NewSource(0))
    	for i := range data {
    		// Generate compressible stream...
    		data[i] = byte(rng.Int63() & 3)
    	}
    	failOnErr := func(err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. src/time/format.go

    	"h":  uint64(Hour),
    }
    
    // ParseDuration parses a duration string.
    // A duration string is a possibly signed sequence of
    // decimal numbers, each with optional fraction and a unit suffix,
    // such as "300ms", "-1.5h" or "2h45m".
    // Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h".
    func ParseDuration(s string) (Duration, error) {
    	// [-+]?([0-9]*(\.[0-9]*)?[a-z]+)+
    	orig := s
    	var d uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    a\3176\276\320?\375i\"a\303\313\345?\224\347\237\312\3533\314?0)\201\312\023\215\273?@\254\333\362\252Z\356?\306u5\315\237\t\344?g?\013o\233x\347?F\236{\353\344L\326?`\302n\204\226\371\326?h\326t?\371p\356?\2307a\307\365|\274?LF\020\337o\210\347?\300mS\036;$\324?\324\266\323\330\315\231\347?!\307\365X\020 \346?7d/\352z6\347?\254\206\252\236\261\234\354?\336}F1l\240\324?p\322+\n\260Y\304? \316\003(\224\204\345?\245\232\006o\311\371\351?\024\013\363\326\263\350\305?\022\323\251B`\322\357?@C\022\34...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // Maximum duration that a sidecar can be connected to a pilot.
      //
      // This setting balances out load across pilot instances, but adds some resource overhead.
      //
      // Examples: 300s, 30m, 1h
      google.protobuf.Duration keepaliveMaxServerConnectionAge = 13;
    
      // Labels that are added to Pilot deployment.
      //
      // See https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
      trafficPolicy:
        loadBalancer:
          consistentHash:
            httpCookie:
              name: session-cookie
              ttl: 3600s
    `, svcName, svcName)
    
    			cookieWithoutTTLDest := fmt.Sprintf(`
    ---
    apiVersion: networking.istio.io/v1beta1
    kind: DestinationRule
    metadata:
      name: %s
    spec:
      host: %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top