Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 2s (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/css/manual.css

    	margin: 12px 12px 12px 0px;
    	outline: none;
    	overflow: hidden;
    	padding: 0 25px;
    	position: relative;
    	text-align: center;
    	text-transform: none;
    	transform: translateZ(0);
    	transition: all .2s, box-shadow .08s ease-in;
    	user-select: none;
    	-webkit-user-select: none;
    	touch-action: manipulation;
    	width: 25%;
    }
    
    .button-9:disabled {
    	cursor: default;
    }
    
    .button-9:focus {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers.go

    				// guaranteed to be terminating and we skip updates to the pod
    			default:
    				// wait until we see the next refresh from the PLEG via the cache (max 2s)
    				// TODO: this adds ~1s of latency on all transitions from sync to terminating
    				//  to terminated, and on all termination retries (including evictions). We should
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top