Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Coles (0.16 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 21 03:35:09 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 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 18 19:09:19 GMT 2024
    - 69.9K 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 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        it keeps your `HeldCertificate` and its chain. On the client it keeps the root certificates
        that are trusted to sign a server's certificate chain. `HandshakeCertificates` also works with
        mutual TLS where these roles are reversed.
    
        These classes make it possible to enable HTTPS in MockWebServer in [just a few lines of
        code][https_server_sample].
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
Back to top