Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for expandFile (0.18 sec)

  1. pkg/volume/csi/expander_test.go

    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    			plug, tmpDir := newTestPlugin(t, nil)
    			defer os.RemoveAll(tmpDir)
    
    			spec := volume.NewSpecFromPersistentVolume(makeTestPV("test-pv", 10, "expandable", "test-vol"), false)
    			if tc.enableCSINodeExpandSecret {
    				spec.PersistentVolume.Spec.CSI.NodeExpandSecretRef = &api.SecretReference{
    					Name:      tc.secret.Name,
    					Namespace: tc.secret.Namespace,
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 03:58:36 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    	return flexvolume.GetDynamicPluginProber(config.FlexVolumePluginDir, exec.New() /*exec.Interface*/)
    }
    
    // ProbeExpandableVolumePlugins returns volume plugins which are expandable
    func ProbeExpandableVolumePlugins(logger klog.Logger, config persistentvolumeconfig.VolumeConfiguration) ([]volume.VolumePlugin, error) {
    	var err error
    	allPlugins := []volume.VolumePlugin{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pilot/pkg/status/resourcelock.go

    	"istio.io/api/meta/v1alpha1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Task to be performed.
    type Task func(entry cacheEntry)
    
    // WorkerQueue implements an expandable goroutine pool which executes at most one concurrent routine per target
    // resource.  Multiple calls to Push() will not schedule multiple executions per target resource, but will ensure that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 04 03:39:42 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top