Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 863 for authenticating (0.42 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

            private NtlmPasswordAuthentication authentication
            private byte[] challenge
    
            TestNtlmCredentials(NtlmPasswordAuthentication authentication, byte[] challenge) {
                this.authentication = authentication
                this.challenge = challenge
            }
    
            @Override
            boolean check(Object credentials) {
                if (credentials instanceof String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/authentication.k8s.io.v1beta1.SelfSubjectReview.pb

    Maksim Nabokikh <******@****.***> 1678318953 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 486 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1beta1.SelfSubjectReview.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 486 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1.SelfSubjectReview.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 481 bytes
    - Viewed (0)
  5. pkg/apis/authentication/v1alpha1/zz_generated.conversion.go

    */
    
    // Code generated by conversion-gen. DO NOT EDIT.
    
    package v1alpha1
    
    import (
    	v1alpha1 "k8s.io/api/authentication/v1alpha1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	authentication "k8s.io/kubernetes/pkg/apis/authentication"
    	v1 "k8s.io/kubernetes/pkg/apis/authentication/v1"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/authentication/DefaultAuthenticationSchemeRegistry.java

     */
    
    package org.gradle.internal.authentication;
    
    import org.gradle.authentication.Authentication;
    import org.gradle.internal.Cast;
    
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.Map;
    
    public class DefaultAuthenticationSchemeRegistry implements AuthenticationSchemeRegistry {
        Map<Class<? extends Authentication>, Class<? extends Authentication>> registeredSchemes = new HashMap<>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/main/java/org/gradle/authentication/http/DigestAuthentication.java

     * limitations under the License.
     */
    
    package org.gradle.authentication.http;
    
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme for digest access authentication over HTTP.
     */
    public interface DigestAuthentication extends Authentication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 850 bytes
    - Viewed (0)
  8. pkg/apis/authentication/v1beta1/zz_generated.conversion.go

    package v1beta1
    
    import (
    	unsafe "unsafe"
    
    	v1beta1 "k8s.io/api/authentication/v1beta1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	authentication "k8s.io/kubernetes/pkg/apis/authentication"
    	v1 "k8s.io/kubernetes/pkg/apis/authentication/v1"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/authentication/http/BasicAuthentication.java

     * limitations under the License.
     */
    
    package org.gradle.authentication.http;
    
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme for basic access authentication over HTTP. When using this scheme, credentials are sent preemptively.
     */
    public interface BasicAuthentication extends Authentication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 907 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/AbstractAuthenticationSupportedRepository.java

        }
    
        @Override
        public Collection<Authentication> getConfiguredAuthentication() {
            Collection<Authentication> configuredAuthentication = delegate.getConfiguredAuthentication();
    
            for (Authentication authentication : configuredAuthentication) {
                AuthenticationInternal authenticationInternal = (AuthenticationInternal) authentication;
                for (URI repositoryUrl : getRepositoryUrls()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top