Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 220 for fopacity (0.16 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Node.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/volume/util/operationexecutor/operation_generator.go

    	// Along with volumeToMount and actualStateOfWorld, the function expects current size of volume on the node as an argument. The current
    	// size here always refers to capacity last recorded in actualStateOfWorld from pvc.Status.Capacity
    	GenerateExpandInUseVolumeFunc(volumeToMount VolumeToMount, actualStateOfWorld ActualStateOfWorldMounterUpdater, currentSize resource.Quantity) (volumetypes.GeneratedOperations, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  3. pkg/volume/util/resize_util_test.go

    			Status:             v1.ConditionTrue,
    			LastTransitionTime: metav1.Now(),
    		},
    	}).get()
    	pvc1.SetResourceVersion("10")
    	pvc2 := pvc1.DeepCopy()
    	pvc2.Status.Capacity = v1.ResourceList{
    		v1.ResourceName("size"): resource.MustParse("10G"),
    	}
    	patchBytes, err := createPVCPatch(pvc1, pvc2, true /* addResourceVersionCheck */)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. src/runtime/error.go

    	boundsSliceAlen:  "slice bounds out of range [:%x] with length %y",
    	boundsSliceAcap:  "slice bounds out of range [:%x] with capacity %y",
    	boundsSliceB:     "slice bounds out of range [%x:%y]",
    	boundsSlice3Alen: "slice bounds out of range [::%x] with length %y",
    	boundsSlice3Acap: "slice bounds out of range [::%x] with capacity %y",
    	boundsSlice3B:    "slice bounds out of range [:%x:%y]",
    	boundsSlice3C:    "slice bounds out of range [%x:%y:]",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    				if err != nil {
    					logger.Info("Parsing pre-resize-capacity from PV failed", "volumeName", volume.Name, "err", err)
    					preQty = volume.Spec.Capacity[v1.ResourceStorage]
    				}
    				if claimClone.Status.Capacity == nil {
    					claimClone.Status.Capacity = make(map[v1.ResourceName]resource.Quantity)
    				}
    				claimClone.Status.Capacity[v1.ResourceStorage] = preQty
    				dirty = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. pkg/registry/core/persistentvolume/storage/storage_test.go

    func validNewPersistentVolume(name string) *api.PersistentVolume {
    	now := persistentvolume.NowFunc()
    	pv := &api.PersistentVolume{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: name,
    		},
    		Spec: 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: Wed Apr 24 18:25:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/crypto/cipher/gcm.go

    	// value passed to Seal.
    	//
    	// To reuse ciphertext's storage for the decrypted output, use ciphertext[:0]
    	// as dst. Otherwise, the remaining capacity of dst must not overlap plaintext.
    	//
    	// Even if the function fails, the contents of dst, up to its capacity,
    	// may be overwritten.
    	Open(dst, nonce, ciphertext, additionalData []byte) ([]byte, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/base.css

        color: #fff;
        margin-top: 0;
    }
    
    .site-footer__subscribe-newsletter p {
        font-size: 0.875rem;
        margin: 2px 0 0 2px;
        opacity: 0.7;
    }
    .site-footer__subscribe-newsletter .disclaimer {
        color: #ddd;
        font-size: 0.75rem;
        opacity: 0.55;
    }
    .site-footer__subscribe-newsletter .newsletter-form {
        padding-top: 6px;
        display: flex;
        justify-content: flex-start;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/1-time.md

    they had fired and never collected unstopped `Ticker`s.
    
    <!-- go.dev/issue/37196 -->
    Second, the timer channel associated with a `Timer` or `Ticker` is
    now unbuffered, with capacity 0.
    The main effect of this change is that Go now guarantees
    that for any call to a `Reset` or `Stop` method, no stale values
    prepared before that call will be sent or received after the call.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. pkg/volume/volume.go

    	Used *resource.Quantity
    
    	// Capacity represents the total capacity (bytes) of the volume's
    	// underlying storage. For Volumes that share a filesystem with the host
    	// (e.g. emptydir, hostpath) this is the size of the underlying storage,
    	// and will not equal Used + Available as the fs is shared.
    	Capacity *resource.Quantity
    
    	// Available represents the storage space available (bytes) for the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top