Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for 2s (0.02 sec)

  1. pkg/controlplane/apiserver/options/options_test.go

    		"--audit-webhook-batch-throttle-burst=44",
    		"--audit-webhook-truncate-enabled=true",
    		"--audit-webhook-truncate-max-batch-size=43",
    		"--audit-webhook-truncate-max-event-size=42",
    		"--audit-webhook-initial-backoff=2s",
    		"--audit-webhook-version=audit.k8s.io/v1",
    		"--authentication-token-webhook-cache-ttl=3m",
    		"--authentication-token-webhook-config-file=/token-webhook-config",
    		"--authorization-mode=AlwaysDeny,RBAC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv13-ECDSA

    00000100  cb 3b 74                                          |.;t|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 24 80 76 3d db  |....z...v..$.v=.|
    00000010  cf 32 53 04 de ce 2e 74  95 bb 30 a8 d5 5e ab ed  |.2S....t..0..^..|
    00000020  3c 1e 1a ae 92 63 8f 40  0b ce a4 20 00 00 00 00  |<....c.@... ....|
    00000030  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. manifests/charts/istio-control/istio-discovery/values.yaml

          # 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.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. pkg/proxy/metrics/metrics.go

    			Help:      "In Cluster Network Programming Latency in seconds",
    			Buckets: metrics.MergeBuckets(
    				metrics.LinearBuckets(0.25, 0.25, 2), // 0.25s, 0.50s
    				metrics.LinearBuckets(1, 1, 59),      // 1s, 2s, 3s, ... 59s
    				metrics.LinearBuckets(60, 5, 12),     // 60s, 65s, 70s, ... 115s
    				metrics.LinearBuckets(120, 30, 7),    // 2min, 2.5min, 3min, ..., 5min
    			),
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. manifests/charts/istiod-remote/values.yaml

          # 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.
          startupProbe:
            enabled: true
            failureThreshold: 600 # 10 minutes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    		"--audit-webhook-batch-throttle-burst=44",
    		"--audit-webhook-truncate-enabled=true",
    		"--audit-webhook-truncate-max-batch-size=43",
    		"--audit-webhook-truncate-max-event-size=42",
    		"--audit-webhook-initial-backoff=2s",
    		"--audit-webhook-version=audit.k8s.io/v1",
    		"--authentication-token-webhook-cache-ttl=3m",
    		"--authentication-token-webhook-config-file=/token-webhook-config",
    		"--authorization-mode=AlwaysDeny,RBAC",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/math/LongMath.java

         * >60% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Long.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Long.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/math/LongMath.java

         * >60% faster than the Euclidean algorithm in benchmarks.
         */
        int aTwos = Long.numberOfTrailingZeros(a);
        a >>= aTwos; // divide out all 2s
        int bTwos = Long.numberOfTrailingZeros(b);
        b >>= bTwos; // divide out all 2s
        while (a != b) { // both a, b are odd
          // The key to the binary GCD algorithm is as follows:
          // Both a and b are odd. Assume a > b; then gcd(a - b, b) = gcd(a, b).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/wait.go

    		return nil
    	}
    
    	if err := waitForCRDs(objects, client); err != nil {
    		return err
    	}
    
    	var notReady []string
    	var debugInfo map[string]string
    
    	// Check if we are ready immediately, to avoid the 2s delay below when we are already ready
    	if ready, _, _, err := waitForResources(objects, client.Kube(), l); err == nil && ready {
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. samples/bookinfo/README.md

     => importing to docker                                                                                                                                                                               0.2s
     => importing to docker                                                                                                                                                                               0.1s
    + [[ true == \t\r\u\e ]]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top