Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 230 for BarTest (0.47 sec)

  1. android/guava/src/com/google/common/primitives/Longs.java

       *
       * <p><b>Java 8+ users:</b> use {@link Long#BYTES} instead.
       */
      public static final int BYTES = Long.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as a {@code long}.
       *
       * @since 10.0
       */
      public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Longs.java

       *
       * <p><b>Java 8+ users:</b> use {@link Long#BYTES} instead.
       */
      public static final int BYTES = Long.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as a {@code long}.
       *
       * @since 10.0
       */
      public static final long MAX_POWER_OF_TWO = 1L << (Long.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/constants/constants.go

    	MinimumAddressesInServiceSubnet = 10
    
    	// MaximumBitsForServiceSubnet defines maximum possible size of the service subnet in terms of bits.
    	// For example, if the value is 20, then the largest supported service subnet is /12 for IPv4 and /108 for IPv6.
    	// Note however that anything in between /108 and /112 will be clamped to /112 due to the limitations of the underlying allocation logic.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Ints.java

       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
      public static final int BYTES = Integer.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as an {@code int}.
       *
       * @since 10.0
       */
      public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // for a GetCapacityRequest with topology and parameters that match the
      // previous fields.
      //
      // This is defined since CSI spec 1.4.0 as the largest size
      // that may be used in a
      // CreateVolumeRequest.capacity_range.required_bytes field to
      // create a volume with the same parameters as those in
      // GetCapacityRequest. The corresponding value in the Kubernetes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Ints.java

       *
       * <p><b>Java 8+ users:</b> use {@link Integer#BYTES} instead.
       */
      public static final int BYTES = Integer.SIZE / Byte.SIZE;
    
      /**
       * The largest power of two that can be represented as an {@code int}.
       *
       * @since 10.0
       */
      public static final int MAX_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    	// for a GetCapacityRequest with topology and parameters that match the
    	// previous fields.
    	//
    	// This is defined since CSI spec 1.4.0 as the largest size
    	// that may be used in a
    	// CreateVolumeRequest.capacity_range.required_bytes field to
    	// create a volume with the same parameters as those in
    	// GetCapacityRequest. The corresponding value in the Kubernetes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    )
    
    const (
    	// StaticEstimatedCostLimit represents the largest-allowed static CEL cost on a per-expression basis.
    	StaticEstimatedCostLimit = 10000000
    	// StaticEstimatedCRDCostLimit represents the largest-allowed total cost for the x-kubernetes-validations rules of a CRD.
    	StaticEstimatedCRDCostLimit = 100000000
    
    	MaxSelectableFields = 8
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ppc64/ssa.go

    		//	STXVD2X VS33,(R31)(R20)
    		//	ADD $32,R20
    		//	BC 16,0,top
    		// Bytes not moved by this loop are moved
    		// with a combination of the following instructions,
    		// starting with the largest sizes and generating as
    		// many as needed, using the appropriate offset value.
    		//	MOVD  n(R21),R31
    		//	MOVD  R31,n(R20)
    		//	MOVW  n1(R21),R31
    		//	MOVW  R31,n1(R20)
    		//	MOVH  n2(R21),R31
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. pkg/controller/statefulset/stateful_set_control.go

    	updateMin := 0
    	if set.Spec.UpdateStrategy.RollingUpdate != nil {
    		updateMin = int(*set.Spec.UpdateStrategy.RollingUpdate.Partition)
    	}
    	// we terminate the Pod with the largest ordinal that does not match the update revision.
    	for target := len(replicas) - 1; target >= updateMin; target-- {
    
    		// delete the Pod if it is not already terminating and does not match the update revision.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
Back to top