Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for gcepd (0.05 sec)

  1. pkg/controller/volume/persistentvolume/index.go

    	// can have more.  For example, a user asks for ReadWriteOnce but a GCEPD
    	// is available, which is ReadWriteOnce+ReadOnlyMany.
    	//
    	// Searches are performed against a set of access modes, so we can attempt
    	// not only the exact matching modes but also potential matches (the GCEPD
    	// example above).
    	allPossibleModes := pvIndex.allPossibleMatchingAccessModes(claim.Spec.AccessModes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  2. pkg/volume/csi/csi_metrics_test.go

    		},
    	}
    
    	for _, tc := range tests {
    		metricsGetter := &metricsCsi{volumeID: tc.volumeID, targetPath: tc.targetPath}
    		metricsGetter.csiClient = &csiDriverClient{
    			driverName: "com.google.gcepd",
    			nodeV1ClientCreator: func(addr csiAddr, m *MetricsManager) (csipbv1.NodeClient, io.Closer, error) {
    				nodeClient := fake.NewNodeClientWithVolumeStats(true /* VolumeStatsCapable */)
    				fakeCloser := fake.NewCloser(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. guava/src/com/google/common/util/concurrent/TimeoutFuture.java

            return;
          }
    
          /*
           * If we're about to complete the TimeoutFuture, we want to release our reference to it.
           * Otherwise, we'll pin it (and its result) in memory until the timeout task is GCed. (The
           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

            return;
          }
    
          /*
           * If we're about to complete the TimeoutFuture, we want to release our reference to it.
           * Otherwise, we'll pin it (and its result) in memory until the timeout task is GCed. (The
           * need to clear our reference to the TimeoutFuture is the reason we use a *static* nested
           * class with a manual reference back to the "containing" class.)
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top