Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for colName (0.15 sec)

  1. src/syscall/mksysctl_openbsd.pl

    				if ($header =~ /^netinet\//) {
    					$ctlname = "net.inet.$nodename";
    				} elsif ($header =~ /^netinet6\//) {
    					$ctlname = "net.inet6.$nodename";
    				} elsif ($header =~ /^net\//) {
    					$ctlname = "net.$nodename";
    				} else {
    					$ctlname = "$nodename";
    					$ctlname =~ s/^(fs|net|kern)_/$1\./;
    				}
    				if (exists $ctl_map{$ctlname}) {
    					$ctlname = $ctl_map{$ctlname};
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 5K bytes
    - Viewed (0)
  2. pkg/volume/util/nested_volumes_test.go

    	name     string
    	err      bool
    	expected sets.Set[string]
    	volname  string
    	pod      v1.Pod
    }
    
    func TestGetNestedMountpoints(t *testing.T) {
    	var (
    		testNamespace = "test_namespace"
    		testPodUID    = types.UID("test_pod_uid")
    	)
    
    	tc := []testCases{
    		{
    			name:     "Simple Pod",
    			err:      false,
    			expected: sets.New[string](),
    			volname:  "vol1",
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. pkg/volume/secret/secret.go

    	secretVolume := &v1.Volume{
    		Name: volName,
    		VolumeSource: v1.VolumeSource{
    			Secret: &v1.SecretVolumeSource{
    				SecretName: volName,
    			},
    		},
    	}
    	return volume.ReconstructedVolume{
    		Spec: volume.NewSpecFromVolume(secretVolume),
    	}, nil
    }
    
    type secretVolume struct {
    	volName string
    	podUID  types.UID
    	plugin  *secretPlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. schema/index.go

    					Option:  settings["OPTION"],
    					Fields: []IndexOption{{
    						Field:      field,
    						Expression: settings["EXPRESSION"],
    						Sort:       settings["SORT"],
    						Collate:    settings["COLLATE"],
    						Length:     length,
    						priority:   priority,
    					}},
    				})
    			}
    		}
    	}
    
    	err = nil
    	return
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Feb 04 07:49:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top