Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for gcepd (0.13 sec)

  1. pkg/api/persistentvolume/util_test.go

    func specWithVACName(vacName *string) *api.PersistentVolumeSpec {
    	pvSpec := &api.PersistentVolumeSpec{
    		PersistentVolumeSource: api.PersistentVolumeSource{
    			CSI: &api.CSIPersistentVolumeSource{
    				Driver:       "com.google.gcepd",
    				VolumeHandle: "foobar",
    			},
    		},
    	}
    
    	if vacName != nil {
    		pvSpec.VolumeAttributesClassName = vacName
    	}
    	return pvSpec
    }
    
    func TestWarnings(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/apis/apps/validation/validation_test.go

    	}
    	validPodSpecVolume := api.PodSpec{
    		Volumes:       []api.Volume{{Name: "gcepd", VolumeSource: api.VolumeSource{GCEPersistentDisk: &api.GCEPersistentDiskVolumeSource{PDName: "my-PD", FSType: "ext4", Partition: 1, ReadOnly: false}}}},
    		RestartPolicy: api.RestartPolicyAlways,
    		DNSPolicy:     api.DNSClusterFirst,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation_test.go

    		}, {
    			name:     "driver name: invalid separators",
    			csi:      &core.CSIVolumeSource{Driver: "com/google/storage/csi~gcepd"},
    			errtype:  field.ErrorTypeInvalid,
    			errfield: "driver",
    		}, {
    			name: "valid nodePublishSecretRef",
    			csi:  &core.CSIVolumeSource{Driver: "com.google.gcepd", NodePublishSecretRef: &core.LocalObjectReference{Name: "foobar"}},
    		}, {
    			name:     "nodePublishSecretRef: invalid name missing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  4. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			VolumeName: "volume-name",
    			VolumeMode: &mode,
    		},
    		Status: v1.PersistentVolumeClaimStatus{
    			Phase:    v1.ClaimBound,
    			Capacity: gcepv.Spec.Capacity,
    		},
    	}
    
    	volumeSpec := &volume.Spec{
    		PersistentVolume: gcepv,
    	}
    	node := &v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: string(nodeName),
    		},
    		Status: v1.NodeStatus{
    			VolumesAttached: []v1.AttachedVolume{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - The feature gates `CSIMigrationGCE` is graduated to GA and were unconditionally enabled have been removed in `v1.25`, and the entire `gcepd` package has been removed. ([#117055](https://github.com/kubernetes/kubernetes/pull/117055), [@cyclinder](https://github.com/cyclinder))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                    // Need to keep a reference so that the cached value can be re-evaluated on mutation, but
                    // use a soft reference to allow the state to be GCed
                    //
                    // Also keep a soft reference to try to avoid recreating the state when it is queried during
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. src/internal/trace/event/go122/event.go

    	},
    	EvGCBegin: event.Spec{
    		Name:         "GCBegin",
    		Args:         []string{"dt", "gc_seq", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    	},
    	EvGCEnd: event.Spec{
    		Name:         "GCEnd",
    		Args:         []string{"dt", "gc_seq"},
    		StartEv:      EvGCBegin,
    		IsTimedEvent: true,
    	},
    	EvGCSweepActive: event.Spec{
    		Name:         "GCSweepActive",
    		Args:         []string{"dt", "p"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/internal/trace/order.go

    		// This is not the right GC cycle.
    		return curCtx, false, nil
    	}
    	if o.gcState == gcNotRunning {
    		return curCtx, false, fmt.Errorf("encountered GCEnd when GC was not in progress")
    	}
    	if o.gcState == gcUndetermined {
    		return curCtx, false, fmt.Errorf("encountered GCEnd when GC was in an undetermined state")
    	}
    	o.gcSeq = seq
    	o.gcState = gcNotRunning
    	if err := validateCtx(curCtx, event.UserGoReqs); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

            captureOutput.flush()
            super.flush()
        }
    
        fun stop() = safely {
            isCapturing!!.remove()
            // Give a chance for other threads' weak references to the local to be GCed if any
            isCapturing = null
        }
    
        private
        fun safely(block: () -> Unit) =
            try {
                synchronized(this, block)
            } catch (ex: InterruptedException) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    	// N.B. Only one GC can be running at a time, so this is naturally
    	// serialized by the caller.
    	trace.seqGC++
    }
    
    // GCDone traces a GCEnd event.
    //
    // Must be emitted by an actively running goroutine on an active P. This restriction can be changed
    // easily and only depends on where it's currently called.
    func (tl traceLocker) GCDone() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top