Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for statusFile (0.18 sec)

  1. pkg/controller/volume/expand/expand_controller_test.go

    			VolumeID: volumeName,
    			FSType:   "ext4",
    		}
    	}
    	return pv
    }
    
    func getFakePersistentVolumeClaim(pvcName, volumeName, statusSize, requestSize string, uid types.UID) *v1.PersistentVolumeClaim {
    	pvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{Name: pvcName, Namespace: "default", UID: uid},
    		Spec: v1.PersistentVolumeClaimSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/Cache.kt

              varyHeadersBuilder.addLenient(source.readUtf8LineStrict())
            }
            varyHeaders = varyHeadersBuilder.build()
    
            val statusLine = StatusLine.parse(source.readUtf8LineStrict())
            protocol = statusLine.protocol
            code = statusLine.code
            message = statusLine.message
            val responseHeadersBuilder = Headers.Builder()
            val responseHeaderLineCount = readInt(source)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                    conf {
                       attributes.attribute(org.gradle.api.internal.project.ProjectInternal.STATUS_ATTRIBUTE, '$status')
                    }
                }
    
                class StatusRule implements ComponentMetadataRule {
                    public void execute(ComponentMetadataContext context) {
                        if (${!GradleMetadataResolveRunner.useIvy()}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. pkg/volume/util/operationexecutor/operation_generator_test.go

    			VolumeName:  volumeName,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase: v1.ClaimBound,
    		},
    	}
    	if len(statusSize) > 0 {
    		pvc.Status.Capacity = v1.ResourceList{v1.ResourceStorage: resource.MustParse(statusSize)}
    	}
    	if len(allocatedSize) > 0 {
    		pvc.Status.AllocatedResources = v1.ResourceList{v1.ResourceStorage: resource.MustParse(allocatedSize)}
    	}
    	if resizeStatus != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    				if waitErr != nil {
    					t.Fatalf("Volume resize should succeeded %v", waitErr)
    				}
    			}
    
    		})
    	}
    }
    
    func getTestPVC(pvName string, volumeMode *v1.PersistentVolumeMode, specSize, statusSize resource.Quantity) *v1.PersistentVolumeClaim {
    	pvc := &v1.PersistentVolumeClaim{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "pvc",
    			UID:  "pvcuid",
    		},
    		Spec: v1.PersistentVolumeClaimSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    		migrated := false
    
    		newSize := pvc.Spec.Resources.Requests[v1.ResourceStorage]
    		statusSize := pvc.Status.Capacity[v1.ResourceStorage]
    		pvSize := pv.Spec.Capacity[v1.ResourceStorage]
    		if pvSize.Cmp(newSize) < 0 {
    			updatedSize, expandErr := volumePlugin.ExpandVolumeDevice(
    				volumeSpec,
    				newSize,
    				statusSize)
    			if expandErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    	oldSize := oldPvc.Spec.Resources.Requests["storage"]
    	newSize := newPvc.Spec.Resources.Requests["storage"]
    	statusSize := oldPvc.Status.Capacity["storage"]
    
    	if !apiequality.Semantic.DeepEqual(newPvcClone.Spec, oldPvcClone.Spec) {
    		specDiff := cmp.Diff(oldPvcClone.Spec, newPvcClone.Spec)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
Back to top