Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 330 for authenticating (0.32 sec)

  1. internal/config/identity/plugin/config.go

    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/env"
    	xnet "github.com/minio/pkg/v3/net"
    )
    
    func authNLogIf(ctx context.Context, err error) {
    	logger.LogIf(ctx, "authN", err)
    }
    
    // Authentication Plugin config and env variables
    const (
    	URL        = "url"
    	AuthToken  = "auth_token"
    	RolePolicy = "role_policy"
    	RoleID     = "role_id"
    
    	EnvIdentityPluginURL        = "MINIO_IDENTITY_PLUGIN_URL"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/kubeconfig/kubeconfig_test.go

    		},
    		{
    			name: "token authentication credentials",
    			config: &clientcmdapi.Config{
    				CurrentContext: "kubernetes",
    				Contexts:       map[string]*clientcmdapi.Context{"kubernetes": {AuthInfo: "kubernetes"}},
    				AuthInfos:      map[string]*clientcmdapi.AuthInfo{"kubernetes": {Token: "123"}},
    			},
    			expected: true,
    		},
    		{
    			name: "basic authentication credentials",
    			config: &clientcmdapi.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 18 06:49:59 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpFilter.java

    /**
     * This servlet Filter can be used to negotiate password hashes with
     * MSIE clients using NTLM SSP. This is similar to <tt>Authentication:
     * BASIC</tt> but weakly encrypted and without requiring the user to re-supply
     * authentication credentials.
     * <p>
     * Read <a href="../../../ntlmhttpauth.html">jCIFS NTLM HTTP Authentication and the Network Explorer Servlet</a> for
     * complete details.
     * 
     * @deprecated NTLMv1 only
     */
    @Deprecated
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    915 title: Deploying a scikit-learn model with ONNX and FastAPI - author: Nils de Bruin author_link: https://medium.com/@nilsdebruin link: https://medium.com/data-rebels/fastapi-authentication-revisited-enabling-api-key-authentication-122dc5975680 title: 'FastAPI authentication revisited: Enabling API key authentication' - author: Nick Cortale author_link: https://nickc1.github.io/ link: https://nickc1.github.io/api,/scikit-learn/2019/01/10/scikit-fastapi.html title: 'FastAPI and Scikit-Learn: Easily...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    import (
    	"context"
    	"fmt"
    	"net/http"
    	"net/http/httptest"
    	"reflect"
    	"strings"
    	"sync"
    	"testing"
    
    	authenticationapi "k8s.io/api/authentication/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	serializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/endpoints/request"
    )
    
    type impersonateAuthorizer struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    	//         set username.prefix=""
    	//     (2) --oidc-username-prefix="" and  --oidc-username-claim != "email", prefix was "<value of --oidc-issuer-url>#". For the same
    	//         behavior using authentication config, set username.prefix="<value of issuer.url>#"
    	//     (3) --oidc-username-prefix="<value>". For the same behavior using authentication config, set username.prefix="<value>"
    	// +required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/types.go

    	//         set username.prefix=""
    	//     (2) --oidc-username-prefix="" and  --oidc-username-claim != "email", prefix was "<value of --oidc-issuer-url>#". For the same
    	//         behavior using authentication config, set username.prefix="<value of issuer.url>#"
    	//     (3) --oidc-username-prefix="<value>". For the same behavior using authentication config, set username.prefix="<value>"
    	// +required
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/helpers_test.go

    		"StaticPodPath",
    		"Authentication.X509.ClientCAFile",
    		"TLSCertFile",
    		"TLSPrivateKeyFile",
    		"ResolverConfig",
    		"PodLogsDir",
    	)
    
    	// KubeletConfiguration fields that do not contain file paths.
    	kubeletConfigurationNonPathFieldPaths = sets.New[string](
    		"Address",
    		"AllowedUnsafeSysctls[*]",
    		"Authentication.Anonymous.Enabled",
    		"Authentication.Webhook.CacheTTL.Duration",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.Authentication.Webhook.Enabled, "authentication-token-webhook", c.Authentication.Webhook.Enabled, ""+
    		"Use the TokenReview API to determine authentication for bearer tokens.")
    	fs.DurationVar(&c.Authentication.Webhook.CacheTTL.Duration, "authentication-token-webhook-cache-ttl", c.Authentication.Webhook.CacheTTL.Duration, ""+
    		"The duration to cache responses from the webhook token authenticator.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/config.go

    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/admission"
    	"k8s.io/apiserver/pkg/audit"
    	"k8s.io/apiserver/pkg/authentication/authenticator"
    	"k8s.io/apiserver/pkg/authentication/authenticatorfactory"
    	authenticatorunion "k8s.io/apiserver/pkg/authentication/request/union"
    	"k8s.io/apiserver/pkg/authentication/user"
    	"k8s.io/apiserver/pkg/authorization/authorizer"
    	"k8s.io/apiserver/pkg/endpoints/discovery"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
Back to top