Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for usergroup (0.58 sec)

  1. docs/sts/ldap.md

    - MinIO optionally queries the AD/LDAP server for a list of groups that the user is a member of.
    - MinIO then checks if there are any policies [explicitly associated](#managing-usergroup-access-policy) with the user or their groups.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/java/org/gradle/api/plugins/HelpTasksPlugin.java

                task.setGroup(HELP_GROUP);
                task.setImpliesSubProjects(true);
                task.getShowAll().convention(false);
            });
            tasks.register(RESOLVABLE_CONFIGURATIONS_TASK, ResolvableConfigurationsReportTask.class, task -> {
                task.setDescription("Displays the configurations that can be resolved in " + projectName + ".");
                task.setGroup(HELP_GROUP);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 30 16:15:23 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/plugins/MavenPublishPlugin.java

            tasks.register(PUBLISH_LOCAL_LIFECYCLE_TASK_NAME, publish -> {
                publish.setDescription("Publishes all Maven publications produced by this project to the local Maven cache.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            });
    
            project.getExtensions().configure(PublishingExtension.class, extension -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                @Override
                public void execute(InstallExecutable installTask) {
                    installTask.setDescription("Installs a development image of " + binary.getDisplayName());
                    installTask.setGroup(LifecycleBasePlugin.BUILD_GROUP);
                    installTask.getToolChain().set(executable.getToolChain());
                    installTask.getTargetPlatform().set(binary.getTargetPlatform());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/zz_generated.conversion.go

    func autoConvert_v1_PolicyRule_To_audit_PolicyRule(in *PolicyRule, out *audit.PolicyRule, s conversion.Scope) error {
    	out.Level = audit.Level(in.Level)
    	out.Users = *(*[]string)(unsafe.Pointer(&in.Users))
    	out.UserGroups = *(*[]string)(unsafe.Pointer(&in.UserGroups))
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.Resources = *(*[]audit.GroupResources)(unsafe.Pointer(&in.Resources))
    	out.Namespaces = *(*[]string)(unsafe.Pointer(&in.Namespaces))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 06 19:08:27 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// The user groups this rule applies to. A user is considered matching
    	// if it is a member of any of the UserGroups.
    	// An empty list implies every user group.
    	// +optional
    	// +listType=atomic
    	UserGroups []string `json:"userGroups,omitempty" protobuf:"bytes,3,rep,name=userGroups"`
    
    	// The verbs that match this rule.
    	// An empty list implies every verb.
    	// +optional
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

                publish.setDescription("Publishes all Ivy publications produced by this project to the " + repository.getName() + " repository.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            }));
    
            publications.all(publication -> {
                final String publicationName = publication.getName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (1)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      repeated string users = 2;
    
      // The user groups this rule applies to. A user is considered matching
      // if it is a member of any of the UserGroups.
      // An empty list implies every user group.
      // +optional
      // +listType=atomic
      repeated string userGroups = 3;
    
      // The verbs that match this rule.
      // An empty list implies every verb.
      // +optional
      // +listType=atomic
      repeated string verbs = 4;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    		},
    		"tims": {
    			Level: audit.LevelMetadata,
    			Users: []string{"******@****.***"},
    		},
    		"humans": {
    			Level:      audit.LevelMetadata,
    			UserGroups: []string{"humans"},
    		},
    		"serviceAccounts": {
    			Level:      audit.LevelRequest,
    			UserGroups: []string{"system:serviceaccounts"},
    		},
    		"getPods": {
    			Level:     audit.LevelRequestResponse,
    			Verbs:     []string{"get"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/JvmPluginsHelper.java

                tasks.register(javadocTaskName, Javadoc.class, javadoc -> {
                    javadoc.setDescription("Generates Javadoc API documentation for the " + displayName + ".");
                    javadoc.setGroup(JvmConstants.DOCUMENTATION_GROUP);
                    javadoc.setClasspath(sourceSet.getOutput().plus(sourceSet.getCompileClasspath()));
                    javadoc.setSource(sourceSet.getAllJava());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top