Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for setgroups (0.26 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

            this.ordinal = ordinal;
            setGroup(ordinal);
        }
    
        @Nullable
        @Override
        public Throwable getNodeFailure() {
            return null;
        }
    
        @Override
        public void resolveDependencies(TaskDependencyResolver dependencyResolver) {
        }
    
        @Override
        public String toString() {
            return type.name().toLowerCase() + " locations for " + getGroup();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/TaskNode.java

                // This node is a finalizer, decorate the current group to add finalizer behaviour
                NodeGroup oldGroup = getGroup();
                FinalizerGroup finalizerGroup = new FinalizerGroup(this, oldGroup);
                setGroup(finalizerGroup);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 29 13:54:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeGradleProjectBuilder.java

            LaunchableGradleProjectTask target = new LaunchableGradleProjectTask();
            target.setPath(model.getPath())
                .setName(model.getName())
                .setGroup(model.getGroup())
                .setDisplayName(model.getDisplayName())
                .setDescription(model.getDescription())
                .setPublic(model.isPublic())
                .setProjectIdentifier(model.getProjectIdentifier())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  4. src/syscall/exec_libc.go

    	if cred = sys.Credential; cred != nil {
    		ngroups = uintptr(len(cred.Groups))
    		groups = uintptr(0)
    		if ngroups > 0 {
    			groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
    		}
    		if !cred.NoSetGroups {
    			err1 = setgroups1(ngroups, groups)
    			if err1 != 0 {
    				goto childerror
    			}
    		}
    		err1 = setgid(uintptr(cred.Gid))
    		if err1 != 0 {
    			goto childerror
    		}
    		err1 = setuid(uintptr(cred.Uid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. src/os/proc.go

    func Getegid() int { return syscall.Getegid() }
    
    // Getgroups returns a list of the numeric ids of groups that the caller belongs to.
    //
    // On Windows, it returns [syscall.EWINDOWS]. See the [os/user] package
    // for a possible alternative.
    func Getgroups() ([]int, error) {
    	gids, e := syscall.Getgroups()
    	return gids, NewSyscallError("getgroups", e)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

                assembleTask.setDescription("Assembles the outputs of this project.");
                assembleTask.setGroup(BUILD_GROUP);
            });
        }
    
        private void addCheck(Project project) {
            project.getTasks().register(CHECK_TASK_NAME, checkTask -> {
                checkTask.setDescription("Runs all checks.");
                checkTask.setGroup(VERIFICATION_GROUP);
            });
        }
    
        private void addBuild(final Project project) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/user/user.go

    	// GetUID returns a unique value for a particular user that will change
    	// if the user is removed from the system and another user is added with
    	// the same name.
    	GetUID() string
    	// GetGroups returns the names of the groups the user is a member of
    	GetGroups() []string
    
    	// GetExtra can contain any additional information that the authenticator
    	// thought was interesting.  One example would be scopes on a token.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 24 16:21:55 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/anonymous/anonymous_test.go

    	}
    	if r.User.GetName() != user.Anonymous {
    		t.Fatalf("Expected username %s, got %s", user.Anonymous, r.User.GetName())
    	}
    	if !sets.NewString(r.User.GetGroups()...).Equal(sets.NewString(user.AllUnauthenticated)) {
    		t.Fatalf("Expected group %s, got %v", user.AllUnauthenticated, r.User.GetGroups())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 26 22:33:54 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/group/token_group_adder_test.go

    				return response, true, nil
    			}),
    			[]string{"added"},
    		),
    	)
    
    	r, _, _ := adder.AuthenticateToken(context.Background(), "")
    	if !reflect.DeepEqual(r.User.GetGroups(), []string{"original", "added"}) {
    		t.Errorf("Expected original,added groups, got %#v", r.User.GetGroups())
    	}
    
    	if got := toJson(response); got != orig {
    		t.Errorf("Expected response from delegate to be unmodified: orig=%v got=%v", orig, got)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 20:04:50 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/artifact/resolver/filter/ExclusionArtifactFilterTest.java

            exclusion.setGroupId("*");
            exclusion.setArtifactId("maven-core");
            ExclusionArtifactFilter filter = new ExclusionArtifactFilter(Collections.singletonList(exclusion));
    
            assertThat(filter.include(artifact), is(false));
        }
    
        @Test
        void testExcludeGroupIdWildcardNoMatch() {
            Exclusion exclusion = new Exclusion();
            exclusion.setGroupId("*");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Aug 29 15:25:58 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top