Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 149 for setgroups1 (0.2 sec)

  1. pkg/registry/rbac/escalation_check.go

    		return false
    	}
    
    	// system:masters is special because the API server uses it for privileged loopback connections
    	// therefore we know that a member of system:masters can always do anything
    	for _, group := range u.GetGroups() {
    		if group == user.SystemPrivilegedGroup {
    			return true
    		}
    	}
    
    	return false
    }
    
    var roleResources = map[schema.GroupResource]bool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  2. platforms/software/plugins-version-catalog/src/main/java/org/gradle/api/plugins/catalog/VersionCatalogPlugin.java

        }
    
        private void configureTask(Project project, CatalogExtensionInternal extension, TomlFileGenerator task) {
            task.setGroup(BasePlugin.BUILD_GROUP);
            task.setDescription("Generates a TOML file for a version catalog");
            task.getOutputFile().convention(project.getLayout().getBuildDirectory().file("version-catalog/libs.versions.toml"));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDslReferencePlugin.java

            Configuration userGuideStyleSheetConf = project.getConfigurations().create("userGuideStyleSheets");
    
            TaskProvider<Docbook2Xhtml> dslHtml = tasks.register("dslHtml", Docbook2Xhtml.class, task -> {
                task.setGroup("documentation");
                task.setDescription("Generates DSL reference HTML documentation.");
                task.onlyIf(t -> !extension.getQuickFeedback().get());
    
                task.source(dslStandaloneDocbook);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/artifact/AttachedArtifact.java

            throw new UnsupportedOperationException("Cannot change the download information for an attached artifact."
                    + " It is derived from the main artifact.");
        }
    
        public void setGroupId(String groupId) {
            throw new UnsupportedOperationException(
                    "Cannot change the groupId for an attached artifact." + " It is derived from the main artifact.");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. platforms/jvm/war/src/main/java/org/gradle/api/plugins/WarPlugin.java

                warTask.setDescription("Generates a war archive with all the compiled classes, the web-app content and the libraries.");
                warTask.setGroup(BasePlugin.BUILD_GROUP);
            });
    
            PublishArtifact warArtifact = new LazyPublishArtifact(war, ((ProjectInternal) project).getFileResolver(), ((ProjectInternal) project).getTaskDependencyFactory());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:57:15 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/Unions.java

                }
            }
            return null;
        }
    
        private ExcludeSpec tryGroupSetUnion(GroupSetExclude left, ExcludeSpec right) {
            Set<String> leftGroups = left.getGroups();
            if (right instanceof ModuleIdExclude) {
                ModuleIdExclude mie = (ModuleIdExclude) right;
                if (leftGroups.contains(mie.getModuleId().getGroup())) {
                    return left;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap.go

    		tokenErrorf(secret, "not marked %s=true.", bootstrapapi.BootstrapTokenUsageAuthentication)
    		return nil, false, nil
    	}
    
    	groups, err := bootstrapsecretutil.GetGroups(secret)
    	if err != nil {
    		tokenErrorf(secret, "has invalid value for key %s: %v.", bootstrapapi.BootstrapTokenExtraGroupsKey, err)
    		return nil, false, nil
    	}
    
    	return &authenticator.Response{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 20:38:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

            when(artifact2.getVersion()).thenReturn("1");
            artifacts.add(artifact2);
    
            return artifacts;
        }
    
        private Model newTestModel() {
            Model model = new Model();
            model.setGroupId("modelGroup1");
            model.setArtifactId("modelArtifact1");
            model.setVersion("modelVersion1");
    
            return model;
        }
    
        @Test
        void testDebugEnabled() throws PlexusContainerException {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:53:42 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/syscall/syscall_linux_ppc64x.go

    //sys	bind(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
    //sys	connect(s int, addr unsafe.Pointer, addrlen _Socklen) (err error)
    //sysnb	getgroups(n int, list *_Gid_t) (nn int, err error)
    //sys	getsockopt(s int, level int, name int, val unsafe.Pointer, vallen *_Socklen) (err error)
    //sys	setsockopt(s int, level int, name int, val unsafe.Pointer, vallen uintptr) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/rule.go

    	case flowcontrol.SubjectKindGroup:
    		if subject.Group == nil {
    			return false
    		}
    		seek := subject.Group.Name
    		if seek == "*" {
    			return true
    		}
    		for _, userGroup := range user.GetGroups() {
    			if userGroup == seek {
    				return true
    			}
    		}
    		return false
    	case flowcontrol.SubjectKindServiceAccount:
    		if subject.ServiceAccount == nil {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top