Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 149 for setgroups1 (0.41 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/caching_authorizer.go

    })(nil)
    
    // The user info accessors known to cache key construction. If this fails to compile, the cache
    // implementation may need to be updated.
    var _ user.Info = (interface {
    	GetName() string
    	GetUID() string
    	GetGroups() []string
    	GetExtra() map[string][]string
    })(nil)
    
    // Authorize returns an authorization decision by delegating to another Authorizer. If an equivalent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/user/exentity/User.java

        public String[] getRoleNames() {
            return stream(getRoles()).get(stream -> stream.map(this::decode).toArray(n -> new String[n]));
        }
    
        @Override
        public String[] getGroupNames() {
            return stream(getGroups()).get(stream -> stream.map(this::decode).toArray(n -> new String[n]));
        }
    
        private String decode(final String value) {
            return new String(Base64.getDecoder().decode(value), Constants.CHARSET_UTF_8);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/writing-tasks/task-with-arguments/common/project-info/src/main/java/com/example/ProjectInfoPlugin.java

    import org.gradle.api.Project;
    
    class ProjectInfoPlugin implements Plugin<Project> {
        public void apply(Project project) {
            project.getTasks().register("projectInfo", ProjectInfoTask.class, task -> {
                task.setGroup("help");
                task.setDescription("Displays current project info");
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  4. maven-artifact/src/test/java/org/apache/maven/artifact/DefaultArtifactTest.java

            assertEquals(groupId + ":" + artifactId + ":" + type + ":" + classifier, artifact.getDependencyConflictId());
        }
    
        @Test
        void testGetDependencyConflictIdNullGroupId() {
            artifact.setGroupId(null);
            assertEquals(null + ":" + artifactId + ":" + type + ":" + classifier, artifact.getDependencyConflictId());
        }
    
        @Test
        void testGetDependencyConflictIdNullClassifier() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 22 19:19:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

                MavenProject project = session.getProjects().get(0);
    
                Dependency dependency = new Dependency();
                dependency.setArtifactId(INJECTED_ARTIFACT_ID);
                dependency.setGroupId("foo");
                dependency.setVersion("1.2.3");
                dependency.setScope("system");
                try {
                    dependency.setSystemPath(new File(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/prefix/internal/DefaultPluginPrefixResult.java

            this.groupId = groupId;
            this.artifactId = artifactId;
            this.repository = repository;
        }
    
        public String getGroupId() {
            return groupId;
        }
    
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    
        public void setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/ide/base-ide-plugins/src/main/java/org/gradle/plugins/ide/internal/IdePlugin.java

                @Override
                public void execute(Delete task) {
                    task.setGroup("IDE");
                }
            });
            lifecycleTask.configure(new Action<Task>() {
                @Override
                public void execute(Task task) {
                    task.setGroup("IDE");
                    task.shouldRunAfter(cleanTask);
                }
            });
            onApply(target);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. platforms/software/plugins-distribution/src/main/java/org/gradle/api/distribution/plugins/DistributionPlugin.java

            final TaskProvider<T> archiveTask = project.getTasks().register(taskName, type, task -> {
                task.setDescription("Bundles the project as a distribution.");
                task.setGroup(DISTRIBUTION_GROUP);
                task.getArchiveBaseName().convention(distribution.getDistributionBaseName());
                task.getArchiveClassifier().convention(distribution.getDistributionClassifier());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 20:49:58 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

        String version;
        String classifier;
        String type;
        String scope;
    
        transient Object datum;
    
        public String getGroupId() {
            return groupId;
        }
    
        public void setGroupId(String groupId) {
            this.groupId = groupId;
        }
    
        public String getArtifactId() {
            return artifactId;
        }
    
        public void setArtifactId(String artifactId) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/specs/GroupSetExclude.java

     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.specs;
    
    import java.util.Set;
    
    public interface GroupSetExclude extends ExcludeSpec {
        Set<String> getGroups();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 809 bytes
    - Viewed (0)
Back to top