Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 146 for ssdgroups (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/main/java/org/codelibs/fess/es/user/exbhv/UserBhv.java

                final RESULT result = entityType.newInstance();
                result.setName(DfTypeUtil.toString(source.get(NAME)));
                result.setPassword(DfTypeUtil.toString(source.get(PASSWORD)));
                result.setGroups(toStringArray(source.get(GROUPS)));
                result.setRoles(toStringArray(source.get(ROLES)));
                result.setAttributes(source.entrySet().stream().filter(e -> isAttribute(e.getKey()))
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    }
    func (rm resourceManager) RemoveGroupVersion(gv metav1.GroupVersion) {
    	rm.resourceDiscoveryManager.RemoveGroupVersion(rm.source, gv)
    }
    func (rm resourceManager) SetGroups(groups []apidiscoveryv2.APIGroupDiscovery) {
    	rm.resourceDiscoveryManager.SetGroups(rm.source, groups)
    }
    
    func (rm resourceManager) WithSource(source Source) ResourceManager {
    	return resourceManager{
    		source:                   source,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux_test.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: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. src/syscall/syscall_bsd.go

    	}
    	gids = make([]int, n)
    	for i, v := range a[0:n] {
    		gids[i] = int(v)
    	}
    	return
    }
    
    func Setgroups(gids []int) (err error) {
    	if len(gids) == 0 {
    		return setgroups(0, nil)
    	}
    
    	a := make([]_Gid_t, len(gids))
    	for i, v := range gids {
    		a[i] = _Gid_t(v)
    	}
    	return setgroups(len(a), &a[0])
    }
    
    func ReadDirent(fd int, buf []byte) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/GroupService.java

            groupBhv.delete(group, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
            userBhv.selectCursor(cb -> cb.query().setGroups_Equal(group.getId()), entity -> {
                entity.setGroups(
                        stream(entity.getGroups()).get(stream -> stream.filter(s -> !s.equals(group.getId())).toArray(n -> new String[n])));
                userBhv.insertOrUpdate(entity);
            });
    
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top