Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for Converge (0.27 sec)

  1. guava/src/com/google/common/math/LongMath.java

         * int.
         */
        checkNonNegative("a", a);
        checkNonNegative("b", b);
        if (a == 0) {
          // 0 % b == 0, so b divides a, but the converse doesn't hold.
          // BigInteger.gcd is consistent with this decision.
          return b;
        } else if (b == 0) {
          return a; // similar logic
        }
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	WatchRequestWaitGroup *utilwaitgroup.RateLimitedSafeWaitGroup
    
    	// ShutdownDelayDuration allows to block shutdown for some time, e.g. until endpoints pointing to this API server
    	// have converged on all node. During this time, the API server keeps serving, /healthz will return 200,
    	// but /readyz will return failure.
    	ShutdownDelayDuration time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// therefore return true.
    	LivezGracePeriod time.Duration
    	// ShutdownDelayDuration allows to block shutdown for some time, e.g. until endpoints pointing to this API server
    	// have converged on all node. During this time, the API server keeps serving, /healthz will return 200,
    	// but /readyz will return failure.
    	ShutdownDelayDuration time.Duration
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  4. src/math/big/nat.go

    	// https://members.loria.fr/PZimmermann/mca/pub226.html
    	// If x is one less than a perfect square, the sequence oscillates between the correct z and z+1;
    	// otherwise it converges to the correct z and stays there.
    	var z1, z2 nat
    	z1 = z
    	z1 = z1.setUint64(1)
    	z1 = z1.shl(z1, uint(x.bitLen()+1)/2) // must be ≥ √x
    	for n := 0; ; n++ {
    		z2, _ = z2.div(nil, x, z1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

        * [StorageOS](http://www.storageos.com) can be used as a storage provider for Kubernetes.  With StorageOS, capacity from local or attached storage is pooled across the cluster, providing converged infrastructure for cloud-native applications.
    * CRI has been moved to package `pkg/kubelet/apis/cri/v1alpha1/runtime`. ([#47113](https://github.com/kubernetes/kubernetes/pull/47113), [@feiskyer](https://github.com/feiskyer))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top