Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 98 for colName (0.14 sec)

  1. pkg/volume/git_repo/git_repo.go

    		gitRepoVolume: &gitRepoVolume{
    			volName: spec.Name(),
    			podUID:  pod.UID,
    			plugin:  plugin,
    		},
    		pod:      *pod,
    		source:   spec.Volume.GitRepo.Repository,
    		revision: spec.Volume.GitRepo.Revision,
    		target:   spec.Volume.GitRepo.Directory,
    		exec:     exec.New(),
    		opts:     opts,
    	}, nil
    }
    
    func (plugin *gitRepoPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/xl-storage_unix_test.go

    	// MakeVol creates 0777.
    	if err = disk.MakeVol(context.Background(), testCase.volName); err != nil {
    		t.Fatalf("Creating a volume failed with %s expected to pass.", err)
    	}
    
    	// Stat to get permissions bits.
    	st, err := os.Stat(path.Join(tmpPath, testCase.volName))
    	if err != nil {
    		t.Fatalf("Stat failed with %s expected to pass.", err)
    	}
    
    	// Get umask of the bits stored.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 25 19:37:26 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. tests/integration/telemetry/tracing/tracing.go

    		Prefix: "echo",
    		Inject: true,
    	})
    	if err != nil {
    		return
    	}
    	builder := deployment.New(ctx)
    	for _, c := range ctx.Clusters() {
    		clName := c.Name()
    		builder = builder.
    			WithConfig(echo.Config{
    				Service:   fmt.Sprintf("client-%s", clName),
    				Namespace: appNsInst,
    				Cluster:   c,
    				Ports:     nil,
    				Subsets:   []echo.SubsetConfig{{}},
    			}).
    			WithConfig(echo.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 19:05:09 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. pkg/volume/flexvolume/volume.go

    	podServiceAccountName string
    	// volName is the name of the pod's volume.
    	volName string
    	// the underlying plugin
    	plugin *flexVolumePlugin
    	// the metric plugin
    	volume.MetricsProvider
    }
    
    // volume.Volume interface
    
    func (f *flexVolume) GetPath() string {
    	name := f.driverName
    	return f.plugin.host.GetPodVolumeDir(f.podUID, utilstrings.EscapeQualifiedName(name), f.volName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 17 04:51:24 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. pkg/volume/nfs/nfs.go

    }
    
    func (plugin *nfsPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return plugin.newUnmounterInternal(volName, podUID, plugin.host.GetMounter(plugin.GetPluginName()))
    }
    
    func (plugin *nfsPlugin) newUnmounterInternal(volName string, podUID types.UID, mounter mount.Interface) (volume.Unmounter, error) {
    	return &nfsUnmounter{&nfs{
    		volName:         volName,
    		mounter:         mounter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    		{
    			testName:         "normal PV",
    			volName:          "test-vol1",
    			devicePath:       "path1",
    			deviceMountPath:  "path2",
    			stageUnstageSet:  true,
    			createAttachment: true,
    			spec:             volume.NewSpecFromPersistentVolume(makeTestPV(pvName, 10, testDriver, "test-vol1"), false),
    		},
    		{
    			testName:         "normal PV with mount options",
    			volName:          "test-vol1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pkg/volume/local/local.go

    		readOnly:     readOnly,
    	}, nil
    
    }
    
    func (plugin *localVolumePlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return &localVolumeUnmounter{
    		localVolume: &localVolume{
    			podUID:  podUID,
    			volName: volName,
    			mounter: plugin.host.GetMounter(plugin.GetPluginName()),
    			plugin:  plugin,
    		},
    	}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  8. pkg/volume/flexvolume/plugin.go

    	} else {
    		metricsProvider = &volume.MetricsNil{}
    	}
    
    	return &flexVolumeUnmounter{
    		flexVolume: &flexVolume{
    			driverName:      plugin.driverName,
    			execPath:        plugin.getExecutable(),
    			mounter:         mounter,
    			plugin:          plugin,
    			podUID:          podUID,
    			volName:         volName,
    			MetricsProvider: metricsProvider,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. pkg/volume/iscsi/iscsi.go

    	return mapper, nil
    }
    
    func (plugin *iscsiPlugin) NewUnmounter(volName string, podUID types.UID) (volume.Unmounter, error) {
    	return plugin.newUnmounterInternal(volName, podUID, &ISCSIUtil{}, plugin.host.GetMounter(plugin.GetPluginName()), plugin.host.GetExec(plugin.GetPluginName()))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pkg/volume/fc/fc.go

    }
    
    func (plugin *fcPlugin) newUnmapperInternal(volName string, podUID types.UID, manager diskManager, exec utilexec.Interface) (volume.BlockVolumeUnmapper, error) {
    	return &fcDiskUnmapper{
    		fcDisk: &fcDisk{
    			podUID:  podUID,
    			volName: volName,
    			manager: manager,
    			plugin:  plugin,
    			io:      &osIOHandler{},
    		},
    		exec:       exec,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top