Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for setgroups (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * @return The group of this project. Never returns null.
         */
        Object getGroup();
    
        /**
         * <p>Sets the group of this project.</p>
         *
         * @param group The group of this project. Must not be null.
         */
        void setGroup(Object group);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (!capabilities.isEmpty()) { // Not required, but Guava's performance bad for an empty immutable list
                for (Capability capability : capabilities) {
                    if (capability.getGroup().equals(group) && capability.getName().equals(name)) {
                        return capability;
                    }
                }
            }
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            );
        }
    
        private static ProblemId toProblemId(InternalProblemId problemId) {
            return new DefaultProblemId(problemId.getName(), problemId.getDisplayName(), toProblemGroup(problemId.getGroup()));
        }
    
        private static ProblemId toProblemId(InternalLabel label, InternalProblemCategory category) {
            List<String> categories = new ArrayList<>();
            categories.add(category.getCategory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  4. src/syscall/syscall_windows.go

    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    func Getegid() (egid int)                { return -1 }
    func Getgroups() (gids []int, err error) { return nil, EWINDOWS }
    
    type Signal int
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    		str := signals[s]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    			waypointPolicy := s.authorizationPolicies.GetKey(krt.Key[model.WorkloadAuthorization](policyName))
    			if waypointPolicy == nil {
    				return nil
    			}
    			match := waypointPolicy.Authorization.GetGroups()[0].GetRules()[0].GetMatches()[0]
    			return slices.Map(match.Principals, func(sm *security.StringMatch) string {
    				return sm.GetExact()
    			})
    		}, []string{
    			"cluster.local/ns/ns1/sa/namespace-wide",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    In the example above it means that the trusted artifacts would be artifacts in `com.mycompany` but not `com.mycompany.other`.
    To trust all artifacts in `com.mycompany` and all subgroups, you can use:
    
    [source,xml]
    ----
    <?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata xmlns="https://schema.gradle.org/dependency-verification"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    func Getuid() (uid int)                  { return -1 }
    func Geteuid() (euid int)                { return -1 }
    func Getgid() (gid int)                  { return -1 }
    func Getegid() (egid int)                { return -1 }
    func Getgroups() (gids []int, err error) { return nil, syscall.EWINDOWS }
    
    type Signal int
    
    func (s Signal) Signal() {}
    
    func (s Signal) String() string {
    	if 0 <= s && int(s) < len(signals) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top