Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 112 for BarTest (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/testing/benchmark.go

    func benchmarkName(name string, n int) string {
    	if n != 1 {
    		return fmt.Sprintf("%s-%d", name, n)
    	}
    	return name
    }
    
    type benchContext struct {
    	match *matcher
    
    	maxLen int // The largest recorded benchmark name.
    	extLen int // Maximum extension length.
    }
    
    // RunBenchmarks is an internal function but exported because it is cross-package;
    // it is part of the implementation of the "go test" command.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/objfile.go

    		// (e.g. integer constants), except for strings and a few
    		// compiler-emitted funcdata. If we dedup a string symbol and
    		// a non-string symbol with the same content, we should keep
    		// the largest alignment.
    		// TODO: maybe the compiler could set the alignment for all
    		// data symbols more carefully.
    		switch {
    		case strings.HasPrefix(s.Name, "go:string."),
    			strings.HasPrefix(name, "type:.namedata."),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. pkg/controller/statefulset/stateful_set_utils.go

    		return nil, err
    	}
    	return restoredSet, nil
    }
    
    // nextRevision finds the next valid revision number based on revisions. If the length of revisions
    // is 0 this is 1. Otherwise, it is 1 greater than the largest revision's Revision. This method
    // assumes that revisions has been sorted by Revision.
    func nextRevision(revisions []*apps.ControllerRevision) int64 {
    	count := len(revisions)
    	if count <= 0 {
    		return 1
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/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: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top