Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,109 for authenticating (0.15 sec)

  1. pkg/controlplane/apiserver/options/options.go

    		if completed.Authentication.ServiceAccounts.MaxExpiration != 0 {
    			lowBound := time.Hour
    			upBound := time.Duration(1<<32) * time.Second
    			if completed.Authentication.ServiceAccounts.MaxExpiration < lowBound ||
    				completed.Authentication.ServiceAccounts.MaxExpiration > upBound {
    				return CompletedOptions{}, fmt.Errorf("the service-account-max-token-expiration must be between 1 hour and 2^32 seconds")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. fastapi/security/http.py

                    This is useful when you want to have optional authentication.
    
                    It is also useful when you want to have authentication that can be
                    provided in one of multiple optional ways (for example, in HTTP Basic
                    authentication or in an HTTP Bearer token).
                    """
                ),
            ] = True,
        ):
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/authentication/AuthenticationInternal.java

     * limitations under the License.
     */
    
    package org.gradle.internal.authentication;
    
    import org.gradle.api.NonExtensible;
    import org.gradle.api.credentials.Credentials;
    import org.gradle.authentication.Authentication;
    
    import java.util.Collection;
    
    @NonExtensible
    public interface AuthenticationInternal extends Authentication {
        boolean supports(Credentials credentials);
    
        Credentials getCredentials();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 02 16:02:39 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  4. pkg/registry/authentication/tokenreview/storage.go

    	}
    
    	if resp != nil && resp.User != nil {
    		tokenReview.Status.User = authentication.UserInfo{
    			Username: resp.User.GetName(),
    			UID:      resp.User.GetUID(),
    			Groups:   resp.User.GetGroups(),
    			Extra:    map[string]authentication.ExtraValue{},
    		}
    		for k, v := range resp.User.GetExtra() {
    			tokenReview.Status.User.Extra[k] = authentication.ExtraValue(v)
    		}
    		tokenReview.Status.Audiences = resp.Audiences
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. pkg/kubeapiserver/authenticator/config.go

    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    	"k8s.io/apiserver/pkg/authentication/group"
    	"k8s.io/apiserver/pkg/authentication/request/anonymous"
    	"k8s.io/apiserver/pkg/authentication/request/bearertoken"
    	"k8s.io/apiserver/pkg/authentication/request/headerrequest"
    	"k8s.io/apiserver/pkg/authentication/request/union"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/authentication/DefaultAuthenticationContainerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.authentication
    
    import org.gradle.api.internal.CollectionCallbackActionDecorator
    import org.gradle.authentication.Authentication
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    import spock.lang.Subject
    
    class DefaultAuthenticationContainerTest extends Specification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 26 05:36:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonAuthenticationIntegrationSpec.groovy

            when:
            buildSucceeds()
            def daemon = daemons.daemon
            daemon.assertIdle()
    
            then:
            daemon.assertRegistryNotWorldReadable()
    
            when:
            daemon.changeTokenVisibleToClient()
            fails()
    
            then:
            failure.assertHasDescription("Unexpected authentication token in command")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.SelfSubjectReview.pb

    m.nabokikh <******@****.***> 1682983580 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 481 bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1.TokenReview.pb

    Daniel Smith <******@****.***> 1651776874 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 535 bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1.TokenRequest.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 503 bytes
    - Viewed (0)
Back to top