Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 146 for ssdgroups (0.44 sec)

  1. cluster/gce/gci/configure-helper.sh

      local interface="${1}"
      local format="${2}"
    
      localdisknum=0
      if [[ -n "${NODE_LOCAL_SSDS_EXT:-}" ]]; then
        IFS=";" read -r -a ssdgroups <<< "${NODE_LOCAL_SSDS_EXT:-}"
        for ssdgroup in "${ssdgroups[@]}"; do
          IFS="," read -r -a ssdopts <<< "${ssdgroup}"
          local opnum="${ssdopts[0]}"
          local opinterface="${ssdopts[1]}"
          local opformat="${ssdopts[2]}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      fi
    
      local local_ssds=()
      local_ssd_ext_count=0
      if [[ -n "${NODE_LOCAL_SSDS_EXT:-}" ]]; then
        IFS=";" read -r -a ssdgroups <<< "${NODE_LOCAL_SSDS_EXT:-}"
        for ssdgroup in "${ssdgroups[@]}"
        do
          IFS="," read -r -a ssdopts <<< "${ssdgroup}"
          validate-node-local-ssds-ext "${ssdopts[@]}"
          for ((i=1; i<=ssdopts[0]; i++)); do
            local_ssds+=("--local-ssd=interface=${ssdopts[1]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/format.go

    		username = ev.User.Username
    		if len(ev.User.Groups) > 0 {
    			groups = auditStringSlice(ev.User.Groups)
    		}
    	}
    	asuser := "<self>"
    	asgroups := "<lookup>"
    	if ev.ImpersonatedUser != nil {
    		asuser = ev.ImpersonatedUser.Username
    		if ev.ImpersonatedUser.Groups != nil {
    			asgroups = auditStringSlice(ev.ImpersonatedUser.Groups)
    		}
    	}
    
    	namespace := "<none>"
    	if ev.ObjectRef != nil && len(ev.ObjectRef.Namespace) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/metrics_test.go

    }
    
    func TestBasicMetrics(t *testing.T) {
    	legacyregistry.Reset()
    	manager := discoveryendpoint.NewResourceManager("apis")
    
    	apis := fuzzAPIGroups(1, 3, 10)
    	manager.SetGroups(apis.Items)
    
    	interests := []string{"aggregator_discovery_aggregation_count_total"}
    
    	_, _, _ = fetchPath(manager, "application/json", discoveryPath, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 17:24:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.go

    		uidmap = formatIDMappings(sys.UidMappings)
    	}
    
    	if sys.GidMappings != nil {
    		psetgroups = []byte("/proc/self/setgroups\000")
    		pgid = []byte("/proc/self/gid_map\000")
    
    		if sys.GidMappingsEnableSetgroups {
    			setgroups = []byte("allow\000")
    		} else {
    			setgroups = []byte("deny\000")
    		}
    		gidmap = formatIDMappings(sys.GidMappings)
    	}
    
    	// Record parent PID so child can test if it has died.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/issue1435.go

    		{call: "Setgroups([]int{0,1,2,3})", fn: func() error { return syscall.Setgroups([]int{0, 1, 2, 3}) }, filter: "Groups:", expect: "\t0 1 2 3"},
    		{call: "Setgroups(nil)", fn: func() error { return syscall.Setgroups(nil) }, filter: "Groups:", expect: ""},
    		{call: "Setgroups([]int{0})", fn: func() error { return syscall.Setgroups([]int{0}) }, filter: "Groups:", expect: "\t0"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 28 21:31:41 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend_test.go

    		expected string
    	}{
    		{
    			&auditinternal.Event{
    				AuditID: types.UID(uuid.New().String()),
    			},
    			`[\d\:\-\.\+TZ]+ AUDIT: id="[\w-]+" stage="" ip="<unknown>" method="" user="<none>" groups="<none>" as="<self>" asgroups="<lookup>" user-agent="" namespace="<none>" uri="" response="<deferred>"`,
    		},
    		{
    			&auditinternal.Event{
    				ResponseStatus: &metav1.Status{
    					Code: 200,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_missing_repo.txt

    # Regression test for golang.org/issue/34094: modules hosted within gitlab.com
    # subgroups could not be fetched because the server returned bogus go-import
    # tags for prefixes of the module path.
    
    [short] skip
    [!git] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    ! go mod download vcs-test.golang.org/go/missingrepo/missingrepo-git@latest
    stderr 'vcs-test.golang.org/go/missingrepo/missingrepo-git: git ls-remote .*: exit status .*'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 534 bytes
    - Viewed (0)
  9. src/syscall/exec_linux_test.go

    		},
    		GidMappingsEnableSetgroups: setgroups,
    	}
    	return cmd
    }
    
    func TestCloneNEWUSERAndRemap(t *testing.T) {
    	for _, setgroups := range []bool{false, true} {
    		setgroups := setgroups
    		t.Run(fmt.Sprintf("setgroups=%v", setgroups), func(t *testing.T) {
    			uid := os.Getuid()
    			gid := os.Getgid()
    
    			cmd := whoamiNEWUSER(t, uid, gid, setgroups)
    			out, err := cmd.CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	manager1 := discoveryendpoint.NewResourceManager("apis")
    	manager2 := discoveryendpoint.NewResourceManager("apis")
    
    	apis := fuzzAPIGroups(1, 3, 11)
    	manager1.SetGroups(apis.Items)
    	manager2.SetGroups(apis.Items)
    
    	// Make sure etag of each is the same
    	res1_initial, _, _ := fetchPath(manager1, "application/json", discoveryPath, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top