Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 124 for Group (0.22 sec)

  1. cmd/iam-store.go

    			return true
    		}
    
    		if !groupsSet.IsEmpty() && !groupsSet.Contains(group) {
    			return true
    		}
    
    		ps := mappedPolicy.toSlice()
    		sort.Strings(ps)
    		r = append(r, madmin.GroupPolicyEntities{
    			Group:    group,
    			Policies: ps,
    		})
    		return true
    	})
    
    	sort.Slice(r, func(i, j int) bool {
    		return r[i].Group < r[j].Group
    	})
    
    	return r
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  2. pom.xml

    								<group>${packaging.fess.group}</group>
    							</mapper>
    						</data>
    					</dataSet>
    				</configuration>
    			</plugin>
    			<!-- rpm -->
    			<plugin>
    				<groupId>org.codehaus.mojo</groupId>
    				<artifactId>rpm-maven-plugin</artifactId>
    				<configuration>
    					<distribution>Fess</distribution>
    					<group>Application/Internet</group>
    					<packager>CodeLibs</packager>
    XML
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Apr 14 04:03:33 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  3. .cm/plugins/filters/readField/index.js

     * @param {String} fieldName - The name of the field for the group to return
     * @returns String - The specified value
     * @example {{ files | byPlatform | categorize(branch.diff.files_metadata) | readField('jvm', 'name') }}
     */
    
    function readField(objects, objectName, fieldName) {
        let group = Object.values(objects).find(s => s.name === objectName);
        if (group) {
            const result = group[fieldName];
            if (result === undefined) {
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelResolverException.java

            super(cause);
            this.groupId = groupId;
            this.artifactId = artifactId;
            this.version = version;
        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  5. .github/workflows/multipart/migrate.sh

    	exit 1
    fi
    
    # Add user group test
    ./mc admin user add site1 site-replication-issue-user site-replication-issue-password
    ./mc admin group add site1 site-replication-issue-group site-replication-issue-user
    
    max_wait_attempts=30
    wait_interval=5
    
    attempt=1
    while true; do
    	diff <(./mc admin group info site1 site-replication-issue-group) <(./mc admin group info site2 site-replication-issue-group)
    
    Shell Script
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Wed Apr 24 15:54:24 GMT 2024
    - 4.4K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	} else {
    		// Check if group already exists
    		if _, gerr := globalIAMSys.GetGroupDescription(updReq.Group); gerr != nil {
    			// If group does not exist, then check if the group has beginning and end space characters
    			// we will reject such group names.
    			if errors.Is(gerr, errNoSuchGroup) && hasSpaceBE(updReq.Group) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  7. build-logic/buildquality/build.gradle.kts

        implementation(project(":binary-compatibility"))
    
        implementation("org.codenarc:CodeNarc") {
            exclude(group = "org.apache.groovy")
            exclude(group = "org.codehaus.groovy")
        }
        implementation("com.github.javaparser:javaparser-symbol-solver-core") {
            exclude(group = "com.google.guava")
        }
        implementation("org.gradle.kotlin:gradle-kotlin-dsl-conventions")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 03 13:29:44 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  8. internal/config/identity/ldap/config.go

    	EnvGroupSearchFilter  = "MINIO_IDENTITY_LDAP_GROUP_SEARCH_FILTER"
    	EnvGroupSearchBaseDN  = "MINIO_IDENTITY_LDAP_GROUP_SEARCH_BASE_DN"
    	EnvLookupBindDN       = "MINIO_IDENTITY_LDAP_LOOKUP_BIND_DN"
    	EnvLookupBindPassword = "MINIO_IDENTITY_LDAP_LOOKUP_BIND_PASSWORD"
    )
    
    var removedKeys = []string{
    	"sts_expiry",
    	"username_format",
    	"username_search_filter",
    	"username_search_base_dn",
    	"group_name_attribute",
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 7.9K bytes
    - Viewed (2)
  9. cmd/iam-object-store.go

    		groupsList := listedConfigItems[groupsListKey]
    		for _, item := range groupsList {
    			group := path.Dir(item)
    			if err := iamOS.loadGroup(ctx, group, cache.iamGroupsMap); err != nil && err != errNoSuchGroup {
    				return fmt.Errorf("unable to load the group `%s`: %w", group, err)
    			}
    		}
    	}
    
    	bootstrapTraceMsg("loading user policy mapping")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 05 21:26:41 GMT 2024
    - 19.9K bytes
    - Viewed (0)
  10. cmd/iam.go

    	}
    }
    
    // AddUsersToGroup - adds users to a group, creating the group if
    // needed. No error if user(s) already are in the group.
    func (sys *IAMSys) AddUsersToGroup(ctx context.Context, group string, members []string) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    		return updatedAt, errServerNotInitialized
    	}
    
    	updatedAt, err = sys.store.AddUsersToGroup(ctx, group, members)
    	if err != nil {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:28:16 GMT 2024
    - 71.1K bytes
    - Viewed (1)
Back to top