Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 220 for fopacity (0.17 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	totalRootfsInodes := rootfsInodes
    	rootfs := cadvisorapiv2.FsInfo{
    		Capacity:   rootfsCapacity,
    		Available:  rootfsAvailable,
    		InodesFree: &freeRootfsInodes,
    		Inodes:     &totalRootfsInodes,
    	}
    
    	freeImagefsInodes := imagefsInodesFree
    	totalImagefsInodes := imagefsInodes
    	imagefs := cadvisorapiv2.FsInfo{
    		Capacity:   imagefsCapacity,
    		Available:  imagefsAvailable,
    		InodesFree: &freeImagefsInodes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. pkg/controller/volume/expand/expand_controller_test.go

    			pvcKey:             "default/good-pvc",
    			expansionCalled:    false,
    			expectedAnnotation: map[string]string{volumetypes.VolumeResizerKey: csitranslationplugins.AWSEBSDriverName},
    		},
    		{
    			name: "if pv has pre-resize capacity annotation, generate expand operation should not be called",
    			pv: func() *v1.PersistentVolume {
    				pv := getFakePersistentVolume("vol-4", csitranslationplugins.AWSEBSInTreePluginName, "2Gi", "good-pvc-vol-4")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json

          {
            "key": "keyValue",
            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. internal/grid/handlers.go

    		// Should not be set unless there are different handlers for the same HandlerID.
    		Subroute string
    
    		// OutCapacity is the output capacity. If <= 0 capacity will be 1.
    		OutCapacity int
    
    		// InCapacity is the output capacity.
    		// If == 0 no input is expected
    		InCapacity int
    	}
    )
    
    type subHandlerID [32]byte
    
    func makeSubHandlerID(id HandlerID, subRoute string) subHandlerID {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.yaml

    status:
      accessModes:
      - accessModesValue
      allocatedResourceStatuses:
        allocatedResourceStatusesKey: allocatedResourceStatusesValue
      allocatedResources:
        allocatedResourcesKey: "0"
      capacity:
        capacityKey: "0"
      conditions:
      - lastProbeTime: "2003-01-01T01:01:01Z"
        lastTransitionTime: "2004-01-01T01:01:01Z"
        message: messageValue
        reason: reasonValue
        status: statusValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. pkg/scheduler/testing/wrappers.go

    	p.PersistentVolume.Spec.AccessModes = accessModes
    	return p
    }
    
    // Capacity sets `capacity` as the resource list of the inner PersistentVolume.
    func (p *PersistentVolumeWrapper) Capacity(capacity v1.ResourceList) *PersistentVolumeWrapper {
    	p.PersistentVolume.Spec.Capacity = capacity
    	return p
    }
    
    // HostPathVolumeSource sets `src` as the host path volume source of the inner
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  9. src/slices/iter.go

    	SortStableFunc(s, cmp)
    	return s
    }
    
    // Chunk returns an iterator over consecutive sub-slices of up to n elements of s.
    // All but the last sub-slice will have size n.
    // All sub-slices are clipped to have no capacity beyond the length.
    // If s is empty, the sequence is empty: there is no empty slice in the sequence.
    // Chunk panics if n is less than 1.
    func Chunk[Slice ~[]E, E any](s Slice, n int) iter.Seq[Slice] {
    	if n < 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:40:32 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolumeClaim.json

        },
        "volumeAttributesClassName": "volumeAttributesClassNameValue"
      },
      "status": {
        "phase": "phaseValue",
        "accessModes": [
          "accessModesValue"
        ],
        "capacity": {
          "capacityKey": "0"
        },
        "conditions": [
          {
            "type": "typeValue",
            "status": "statusValue",
            "lastProbeTime": "2003-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top