Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 73 for 2s (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.go

    	case ArrangementH:
    		result = ".H"
    	case Arrangement4H:
    		result = ".4H"
    	case Arrangement8H:
    		result = ".8H"
    	case ArrangementS:
    		result = ".S"
    	case Arrangement2S:
    		result = ".2S"
    	case Arrangement4S:
    		result = ".4S"
    	case ArrangementD:
    		result = ".D"
    	case Arrangement1D:
    		result = ".1D"
    	case Arrangement2D:
    		result = ".2D"
    	case Arrangement1Q:
    		result = ".1Q"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. pkg/test/kube/dump.go

    				// already failed.
    				// We add backoff because we may see transient warming errors during cleanup of resources.
    				attempts := 0
    				backoff := time.Second * 1 // Try after 0s, 1s, 2s, 4s, 8s, or 7s total
    				for {
    					attempts++
    					warming := isWarming(cfgDump)
    					if warming == "" {
    						// Not warming
    						break
    					}
    					if attempts > 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  3. 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)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    	// 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)
  5. pkg/controller/endpoint/endpoints_controller.go

    	// 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)
  6. src/fmt/fmt_test.go

    	{"%q", rune(0x110000), `'�'`},
    	{"%q", int64(0xFFFFFFFFF), `'�'`},
    	{"%q", uint64(0xFFFFFFFFF), `'�'`},
    
    	// width
    	{"%5s", "abc", "  abc"},
    	{"%5s", []byte("abc"), "  abc"},
    	{"%2s", "\u263a", " ☺"},
    	{"%2s", []byte("\u263a"), " ☺"},
    	{"%-5s", "abc", "abc  "},
    	{"%-5s", []byte("abc"), "abc  "},
    	{"%05s", "abc", "00abc"},
    	{"%05s", []byte("abc"), "00abc"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // and doesn't spam the readiness endpoint too much
      //
      // If the probe is disabled, it is recommended to have delay=1s,period=2s,failureThreshold=30.
      // This ensures the startup is reasonable fast (polling every 2s). 1s delay is used since the startup is not often ready instantly.
      google.protobuf.BoolValue enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go

    	bytesListLiteral     = "[bytes('012345678901'), bytes('012345678901'), bytes('012345678901'), bytes('012345678901'), bytes('012345678901')]"
    	durationListLiteral  = "[duration('1s'), duration('2s'), duration('3s'), duration('4s'), duration('5s')]"
    	timestampListLiteral = "[timestamp('2011-01-01T00:00:00.000+01:00'), timestamp('2011-01-02T00:00:00.000+01:00'), " +
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    {"name": "envoy.filters.network.redis_proxy",
    "typed_config": {
            "@type": "type.googleapis.com/envoy.extensions.filters.network.redis_proxy.v3.RedisProxy",
            "settings": {"op_timeout": "0.2s"}
    }
    }`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_HTTP_FILTER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_GATEWAY,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/javadoc.css

    .page-search-info {
        background-color: var(--subnav-background-color);
        border-radius: 3px;
        border: 0 solid var(--border-color);
        padding: 0 8px;
        overflow: hidden;
        height: 0;
        transition: all 0.2s ease;
    }
    div.table-tabs > button.table-tab {
        background: var(--navbar-background-color);
        color: var(--navbar-text-color);
    }
    .page-search-header {
        padding: 5px 12px 7px 12px;
        font-weight: bold;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
Back to top