Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 112 for BarTest (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/io/Files.java

       *
       * @param file the file to read from
       * @return a byte array containing all the bytes from file
       * @throws IllegalArgumentException if the file is bigger than the largest possible byte array
       *     (2^31 - 1)
       * @throws IOException if an I/O error occurs
       */
      public static byte[] toByteArray(File file) throws IOException {
        return asByteSource(file).read();
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/buildid.go

    // Storing the content ID in the build ID lets us read it from the file with
    // minimal I/O, instead of reading and hashing the entire file.
    // This is especially effective since packages and binaries are typically
    // the largest inputs to an action.
    //
    // Separating action ID from content ID is important for reproducible builds.
    // The compiler is compiled with itself. If an output were represented by its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/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: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/index_test.go

    	volume, _ = index.findBestMatchForClaim(claim, false)
    	if volume.Name != pv5.Name {
    		t.Errorf("Expected %s but got volume %s instead", pv5.Name, volume.Name)
    	}
    
    	// pretend the exact match is available but the largest volume is pre-bound to the claim.
    	pv1.Spec.ClaimRef = nil
    	pv8.Spec.ClaimRef = claimRef
    	volume, _ = index.findBestMatchForClaim(claim, false)
    	if volume.Name != pv8.Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 44K bytes
    - Viewed (0)
Back to top