Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 208 for BarTest (0.28 sec)

  1. pkg/controller/deployment/sync.go

    			} else {
    				nameToSize[rs.Name] = *(rs.Spec.Replicas)
    			}
    		}
    
    		// Update all replica sets
    		for i := range allRSs {
    			rs := allRSs[i]
    
    			// Add/remove any leftovers to the largest replica set.
    			if i == 0 && deploymentReplicasToAdd != 0 {
    				leftover := deploymentReplicasToAdd - deploymentReplicasAdded
    				nameToSize[rs.Name] = nameToSize[rs.Name] + leftover
    				if nameToSize[rs.Name] < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/Shorts.java

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

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

    		return false
    	}
    
    	mk := call.Args[1].(*ir.MakeExpr)
    	if mk.Cap != nil {
    		return false
    	}
    
    	// y must be either an integer constant or the largest possible positive value
    	// of variable y needs to fit into a uint.
    
    	// typecheck made sure that constant arguments to make are not negative and fit into an int.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    	"maximumVolumeSize": "maximumVolumeSize is the value reported by the CSI driver in its GetCapacityResponse for a GetCapacityRequest with topology and parameters that match the previous fields.\n\nThis 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 API is ResourceRequirements.Requests in a volume...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/storage/v1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. staging/src/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  8. src/debug/dwarf/type.go

    			t.Qual = "volatile"
    		}
    
    	case TagEnumerationType:
    		// Enumeration type (DWARF v2 ยง5.6)
    		// Attributes:
    		//	AttrName: enum name if any
    		//	AttrByteSize: bytes required to represent largest value
    		// Children:
    		//	TagEnumerator:
    		//		AttrName: name of constant
    		//		AttrConstValue: value of constant
    		t := new(EnumType)
    		typ = t
    		typeCache[off] = t
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  9. src/encoding/gob/doc.go

    	} else {
    		u = (uint(i) << 1) // do not complement i, bit 0 is 0
    	}
    	encodeUnsigned(u)
    
    The low bit is therefore analogous to a sign bit, but making it the complement bit
    instead guarantees that the largest negative integer is not a special case. For
    example, -129=^128=(^256>>1) encodes as (FE 01 01).
    
    Floating-point numbers are always sent as a representation of a float64 value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/api/v1/resource/helpers_test.go

    				v1.ResourceName(v1.ResourceCPU):    resource.MustParse("10"),
    				v1.ResourceName(v1.ResourceMemory): resource.MustParse("34"),
    			},
    		},
    		{
    			name: "two container with overhead, massive init - should just be the largest init",
    			pod: &v1.Pod{
    				Spec: v1.PodSpec{
    					Overhead: v1.ResourceList{
    						v1.ResourceName(v1.ResourceCPU):    resource.MustParse("3"),
    						v1.ResourceName(v1.ResourceMemory): resource.MustParse("8"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top