Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for setgroups1 (0.2 sec)

  1. platforms/core-runtime/build-configuration/src/main/java/org/gradle/internal/buildconfiguration/DaemonJvmPropertiesConfigurator.java

            // Only useful for the root project
            if (project.getParent() == null) {
                project.getTasks().register(TASK_NAME, UpdateDaemonJvm.class, task -> {
                    task.setGroup("Build Setup");
                    task.setDescription("Generates or updates the Gradle Daemon JVM criteria.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. maven-model/src/test/java/org/apache/maven/model/DependencyManagementTest.java

        }
    
        @Test
        void testDependencies() {
            DependencyManagement dm = new DependencyManagement();
            Dependency d1 = new Dependency();
            d1.setGroupId("myGroupId");
            assertNotNull(dm.getDependencies());
            assertEquals(0, dm.getDependencies().size());
            dm.addDependency(d1);
            assertNotNull(dm.getDependencies());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/lifecycle/EmptyLifecyclePluginAnalyzer.java

                plugins = Collections.emptySet();
            }
    
            return plugins;
        }
    
        private Plugin newPlugin(String artifactId, String... goals) {
            Plugin plugin = new Plugin();
    
            plugin.setGroupId("org.apache.maven.plugins");
            plugin.setArtifactId(artifactId);
    
            for (String goal : goals) {
                PluginExecution pluginExecution = new PluginExecution();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/DefaultJacocoCoverageReport.java

        @Inject
        public DefaultJacocoCoverageReport(String name, TaskContainer tasks) {
            this.name = name;
            this.reportTask = tasks.register(name, JacocoReport.class, task -> {
                task.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                task.setDescription("Generates aggregated code coverage report.");
    
                task.reports(reports -> {
                    reports.getXml().getRequired().convention(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/auth/nodeidentifier/default.go

    	if u == nil {
    		return "", false
    	}
    
    	userName := u.GetName()
    	if !strings.HasPrefix(userName, nodeUserNamePrefix) {
    		return "", false
    	}
    
    	isNode := false
    	for _, g := range u.GetGroups() {
    		if g == user.NodesGroup {
    			isNode = true
    			break
    		}
    	}
    	if !isNode {
    		return "", false
    	}
    
    	nodeName := strings.TrimPrefix(userName, nodeUserNamePrefix)
    	return nodeName, true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 15 09:32:31 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/java/org/gradle/api/reporting/plugins/BuildDashboardPlugin.java

                public void execute(final GenerateBuildDashboard buildDashboardTask) {
                    buildDashboardTask.setDescription("Generates a dashboard of all the reports produced by this build.");
                    buildDashboardTask.setGroup("reporting");
    
                    DirectoryReport htmlReport = buildDashboardTask.getReports().getHtml();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/execution/plan/OrdinalNode.java

        private final Type type;
        private final OrdinalGroup ordinal;
    
        public OrdinalNode(Type type, OrdinalGroup ordinal) {
            this.type = type;
            this.ordinal = ordinal;
            setGroup(ordinal);
        }
    
        @Nullable
        @Override
        public Throwable getNodeFailure() {
            return null;
        }
    
        @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)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java

        }
    
        protected static Metadata createRepositoryMetadata(Artifact artifact) {
            Metadata metadata = new Metadata();
            metadata.setModelVersion("1.1.0");
            metadata.setGroupId(artifact.getGroupId());
            metadata.setArtifactId(artifact.getArtifactId());
            metadata.setVersion(artifact.getBaseVersion());
    
            return metadata;
        }
    
        public void bind(Artifact artifact) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java

        }
    
        /** {@inheritDoc} */
        public void selectVersion(String version) {
            artifact.selectVersion(version);
        }
    
        /** {@inheritDoc} */
        public void setGroupId(String groupId) {
            artifact.setGroupId(groupId);
        }
    
        /** {@inheritDoc} */
        public void setArtifactId(String artifactId) {
            artifact.setArtifactId(artifactId);
        }
    
        /** {@inheritDoc} */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/authorizerfactory/builtin.go

    	if attr.GetUser() == nil {
    		return authorizer.DecisionNoOpinion, "Error", errors.New("no user on request.")
    	}
    	for _, attr_group := range attr.GetUser().GetGroups() {
    		for _, priv_group := range r.groups {
    			if priv_group == attr_group {
    				return authorizer.DecisionAllow, "", nil
    			}
    		}
    	}
    	return authorizer.DecisionNoOpinion, "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 3.2K bytes
    - Viewed (0)
Back to top