Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Coles (0.15 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default String[] getAuthenticationAdminRolesAsArray() {
            String[] roles = (String[]) propMap.get(AUTHENTICATION_ADMIN_ROLES);
            if (roles == null) {
                roles = getAuthenticationAdminRoles().split(",");
                propMap.put(AUTHENTICATION_ADMIN_ROLES, roles);
            }
            return roles;
        }
    
        String getJvmCrawlerOptions();
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    }
                });
            });
    
            if (logger.isDebugEnabled()) {
                logger.debug("role: {}", roleSet);
            }
            final String[] roles = roleSet.toArray(new String[roleSet.size()]);
    
            if (!subRoleSet.isEmpty()) {
                TimeoutManager.getInstance().addTimeoutTarget(() -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("yes", pom.getValue("developers[1]/properties/developer"));
            assertEquals(1, ((List<?>) pom.getValue("developers[1]/roles")).size());
            assertEquals("devel", pom.getValue("developers[1]/roles[1]"));
    
            assertEquals(1, ((List<?>) pom.getValue("contributors")).size());
            assertEquals("project-contributor", pom.getValue("contributors[1]/name"));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  4. cmd/iam.go

    		case <-ctx.Done():
    			return
    		}
    	}
    }
    
    func (sys *IAMSys) validateAndAddRolePolicyMappings(ctx context.Context, m map[arn.ARN]string) {
    	// Validate that policies associated with roles are defined. If
    	// authZ plugin is set, role policies are just claims sent to
    	// the plugin and they need not exist.
    	//
    	// If some mapped policies do not exist, we print some error
    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)
  5. fastapi/param_functions.py

                dependency.
    
                The term "scope" comes from the OAuth2 specification, it seems to be
                intentionaly vague and interpretable. It normally refers to permissions,
                in cases to roles.
    
                These scopes are integrated with OpenAPI (and the API docs at `/docs`).
                So they are visible in the OpenAPI specification.
                )
                """
            ),
        ] = None,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
Back to top