Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for ssdgroups (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups should be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/fake.go

    		Type:    "RemoveGroupVersion",
    		Group:   gv.Group,
    		Version: gv.Version,
    	})
    
    }
    func (f *recorderResourceManager) SetGroups(values []apidiscoveryv2.APIGroupDiscovery) {
    	f.lock.Lock()
    	defer f.lock.Unlock()
    
    	f.Actions = append(f.Actions, recorderResourceManagerAction{
    		Type:  "SetGroups",
    		Value: values,
    	})
    }
    func (f *recorderResourceManager) WebService() *restful.WebService {
    	panic("unimplemented")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/runtime/syscall2_solaris.go

    //go:cgo_import_dynamic libc_getpid getpid "libc.so"
    //go:cgo_import_dynamic libc_ioctl ioctl "libc.so"
    //go:cgo_import_dynamic libc_setgid setgid "libc.so"
    //go:cgo_import_dynamic libc_setgroups setgroups "libc.so"
    //go:cgo_import_dynamic libc_setrlimit setrlimit "libc.so"
    //go:cgo_import_dynamic libc_setsid setsid "libc.so"
    //go:cgo_import_dynamic libc_setuid setuid "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/RepositoryContentDescriptor.java

         * Declares that an entire group and its subgroups shouldn't be searched for in this repository.
         *
         * <p>
         * A subgroup is a group that starts with the given prefix and has a dot immediately after the prefix.
         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/runtime/cgo/linux_syscall.c

    _cgo_libc_seteuid(argset_t* x) {
    	SET_RETVAL(seteuid((uid_t) x->args[0]));
    }
    
    void
    _cgo_libc_setgid(argset_t* x) {
    	SET_RETVAL(setgid((gid_t) x->args[0]));
    }
    
    void
    _cgo_libc_setgroups(argset_t* x) {
    	SET_RETVAL(setgroups((size_t) x->args[0], (const gid_t *) x->args[1]));
    }
    
    void
    _cgo_libc_setregid(argset_t* x) {
    	SET_RETVAL(setregid((gid_t) x->args[0], (gid_t) x->args[1]));
    }
    
    void
    _cgo_libc_setresgid(argset_t* x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top