Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 293 for authenticating (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            }
    
            // Authentication
            final Authentication[] siteCredentialList =
                    getInitParameter(AUTHENTICATIONS_PROPERTY, new Authentication[0], Authentication[].class);
            final List<Pair<FormScheme, Credentials>> formSchemeList = new ArrayList<>();
            for (final Authentication authentication : siteCredentialList) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 41K bytes
    - Viewed (0)
  8. cmd/kube-apiserver/app/testing/testserver.go

    			return result, err
    		}
    		s.Authentication.RequestHeader.ClientCAFile = proxyCACertFile
    
    		// give the kube api server an "identity" it can use to for request header auth
    		// so that aggregated api servers can understand who the calling user is
    		s.Authentication.RequestHeader.AllowedNames = []string{"ash", "misty", "brock"}
    
    		// create private key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. pkg/kubelet/apis/config/types.go

    }
    
    // KubeletAuthentication holds the Kubetlet Authentication setttings.
    type KubeletAuthentication struct {
    	// x509 contains settings related to x509 client certificate authentication
    	X509 KubeletX509Authentication
    	// webhook contains settings related to webhook bearer token authentication
    	Webhook KubeletWebhookAuthentication
    	// anonymous contains settings related to anonymous authentication
    	Anonymous KubeletAnonymousAuthentication
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  10. pkg/controlplane/instance.go

    	apiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1"
    	appsv1 "k8s.io/api/apps/v1"
    	authenticationv1 "k8s.io/api/authentication/v1"
    	authenticationv1alpha1 "k8s.io/api/authentication/v1alpha1"
    	authenticationv1beta1 "k8s.io/api/authentication/v1beta1"
    	authorizationapiv1 "k8s.io/api/authorization/v1"
    	autoscalingapiv1 "k8s.io/api/autoscaling/v1"
    	autoscalingapiv2 "k8s.io/api/autoscaling/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
Back to top