Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,109 for authenticating (0.41 sec)

  1. src/crypto/tls/common.go

    	//
    	// If WrapSession returns an error, the connection is terminated.
    	//
    	// Warning: the return value will be exposed on the wire and to clients in
    	// plaintext. The application is in charge of encrypting and authenticating
    	// it (and rotating keys) or returning high-entropy identifiers. Failing to
    	// do so correctly can compromise current, previous, and future connections
    	// depending on the protocol version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	fs.BoolVar(&s.SkipInClusterLookup, "authentication-skip-lookup", s.SkipInClusterLookup, ""+
    		"If false, the authentication-kubeconfig will be used to lookup missing authentication "+
    		"configuration from the cluster.")
    	fs.BoolVar(&s.TolerateInClusterLookupFailure, "authentication-tolerate-lookup-failure", s.TolerateInClusterLookupFailure, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication.go

    			"via token authentication.")
    	}
    
    	if o.WebHook != nil {
    		fs.StringVar(&o.WebHook.ConfigFile, "authentication-token-webhook-config-file", o.WebHook.ConfigFile, ""+
    			"File with webhook configuration for token authentication in kubeconfig format. "+
    			"The API server will query the remote service to determine authentication for bearer tokens.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  4. maven-artifact/src/main/java/org/apache/maven/artifact/repository/Authentication.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.artifact.repository;
    
    /**
     * Authentication
     */
    public class Authentication {
    
        private String privateKey;
    
        private String passphrase;
    
        public Authentication(String userName, String password) {
            this.username = userName;
            this.password = password;
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/authentication/Authentication.java

     * limitations under the License.
     */
    
    package org.gradle.authentication;
    
    import org.gradle.api.Named;
    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * Base interface for transport authentication schemes.
     */
    @HasInternalProtocol
    public interface Authentication extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 866 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    	"k8s.io/apiserver/pkg/authentication/request/headerrequest"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/endpoints/handlers/responsewriters"
    	genericapirequest "k8s.io/apiserver/pkg/endpoints/request"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  7. pkg/security/authentication.go

    	// XDS is exposed.
    	peerInfo, ok := peer.FromContext(ctx)
    	if !ok {
    		return nil, errors.New("invalid context")
    	}
    	// Not a TLS connection, we will not perform authentication
    	// TODO: add a flag to prevent unauthenticated requests ( 15010 )
    	// request not over TLS on the insecure port
    	if _, ok := peerInfo.AuthInfo.(credentials.TLSInfo); !ok && !AuthPlaintext {
    		return nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 10:09:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Authentication.java

    import org.apache.http.auth.AuthScheme;
    import org.apache.http.auth.AuthScope;
    import org.apache.http.auth.Credentials;
    
    /**
     *
     *
     * @author shinsuke
     *
     */
    public interface Authentication {
    
        AuthScope getAuthScope();
    
        Credentials getCredentials();
    
        AuthScheme getAuthScheme();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 963 bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactory.java

            Set<Class<? extends Authentication>> configuredAuthenticationTypes = new HashSet<>();
    
            for (Authentication authentication : authentications) {
                AuthenticationInternal authenticationInternal = (AuthenticationInternal) authentication;
                boolean isAuthenticationSupported = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/SecureFileDownloader.java

            this.repositoryTransportFactory = repositoryTransportFactory;
        }
    
        public ExternalResource getResourceFor(URI source, Collection<Authentication> authentications) {
            return createExternalResource(source, authentications);
        }
    
        public void download(URI source, File destination, ExternalResource resource) {
            try {
                downloadResource(source, destination, resource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top