Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 230 for BarTest (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top