Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 672 for fopacity (0.17 sec)

  1. staging/src/k8s.io/api/storage/v1/generated.proto

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    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

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  3. src/strings/builder.go

    	b.addr = nil
    	b.buf = nil
    }
    
    // grow copies the buffer to a new, larger buffer so that there are at least n
    // bytes of capacity beyond len(b.buf).
    func (b *Builder) grow(n int) {
    	buf := bytealg.MakeNoZero(2*cap(b.buf) + n)[:len(b.buf)]
    	copy(buf, b.buf)
    	b.buf = buf
    }
    
    // Grow grows b's capacity, if necessary, to guarantee space for
    // another n bytes. After Grow(n), at least n bytes can be written to b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/volumebinding/test_utils.go

    	pvb.PersistentVolume.ObjectMeta.ResourceVersion = version
    	return pvb
    }
    
    func (pvb pvBuilder) withCapacity(capacity resource.Quantity) pvBuilder {
    	pvb.PersistentVolume.Spec.Capacity = v1.ResourceList{
    		v1.ResourceName(v1.ResourceStorage): capacity,
    	}
    	return pvb
    }
    
    func (pvb pvBuilder) withPhase(phase v1.PersistentVolumePhase) pvBuilder {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

        assertEquals(0, ArbitraryInstances.get(Buffer.class).capacity());
        assertEquals(0, ArbitraryInstances.get(CharBuffer.class).capacity());
        assertEquals(0, ArbitraryInstances.get(ByteBuffer.class).capacity());
        assertEquals(0, ArbitraryInstances.get(ShortBuffer.class).capacity());
        assertEquals(0, ArbitraryInstances.get(IntBuffer.class).capacity());
        assertEquals(0, ArbitraryInstances.get(LongBuffer.class).capacity());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  6. pkg/volume/validation/pv_validation_test.go

    	}{
    		"volume with valid mount option for nfs": {
    			isExpectedFailure: false,
    			volume: testVolumeWithMountOption("good-nfs-mount-volume", "", "ro,nfsvers=3", api.PersistentVolumeSpec{
    				Capacity: api.ResourceList{
    					api.ResourceName(api.ResourceStorage): resource.MustParse("10G"),
    				},
    				AccessModes: []api.PersistentVolumeAccessMode{api.ReadWriteOnce},
    				PersistentVolumeSource: api.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  7. pkg/volume/util/operationexecutor/operation_generator_test.go

    	var tests = []struct {
    		name string
    		pvc  *v1.PersistentVolumeClaim
    		pv   *v1.PersistentVolume
    
    		// desired size, defaults to pv.Spec.Capacity
    		desiredSize *resource.Quantity
    		// actualSize, defaults to pvc.Status.Capacity
    		actualSize *resource.Quantity
    
    		// expectations of test
    		expectedResizeStatus v1.ClaimResourceStatus
    		expectedStatusSize   resource.Quantity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pkg/kubelet/eviction/helpers_test.go

    		t.Errorf("Expected %v, actual: %v", expected, containerFsInodesQuantity.capacity.Value())
    	}
    
    	pidQuantity, found := actualObservations[evictionapi.SignalPIDAvailable]
    	if !found {
    		t.Error("Expected available memory observation")
    	}
    	if expectedBytes := int64(maxPID); pidQuantity.capacity.Value() != expectedBytes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  9. pkg/registry/storage/csistoragecapacity/strategy.go

    	return false
    }
    
    func hasInvalidLabelValueInLabelSelector(capacity *storage.CSIStorageCapacity) bool {
    	labelSelectorValidationOptions := metav1validation.LabelSelectorValidationOptions{AllowInvalidLabelValueInSelector: false}
    	return len(metav1validation.ValidateLabelSelector(capacity.NodeTopology, labelSelectorValidationOptions, nil)) > 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 08:41:09 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. src/internal/fuzz/mem.go

    // setValue copies the data in b into the shared memory buffer and sets
    // the length. len(b) must be less than or equal to the capacity of the buffer
    // (as returned by cap(m.value())).
    func (m *sharedMem) setValue(b []byte) {
    	v := m.valueRef()
    	if len(b) > cap(v) {
    		panic(fmt.Sprintf("value length %d larger than shared memory capacity %d", len(b), cap(v)))
    	}
    	m.header().valueLen = len(b)
    	copy(v[:cap(v)], b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top