Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 249 for authenticating (0.45 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

        // List<Authentication> basicAuthList = new ArrayList<Authentication>();
        // basicAuthList.add(new AuthenticationImpl(
        // new AuthScope("www.hoge.com", 80),
        // new UsernamePasswordCredentials("username", "password"),
        // digestScheme));
        // paramMap.put(
        // HcHttpClient.AUTHENTICATIONS_PROPERTY,
        // basicAuthList.toArray(new Authentication[basicAuthList.size()]));
        //
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. 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)
  3. docs/en/docs/reference/dependencies.md

    You can import it directly from `fastapi`:
    
    ```python
    from fastapi import Depends
    ```
    
    ::: fastapi.Depends
    
    ## `Security()`
    
    For many scenarios, you can handle security (authorization, authentication, etc.) with dependencies, using `Depends()`.
    
    But when you want to also declare OAuth2 scopes, you can use `Security()` instead of `Depends()`.
    
    You can import `Security()` directly from `fastapi`:
    
    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 671 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. hack/lib/init.sh

    admissionregistration.k8s.io/v1alpha1 \
    admissionregistration.k8s.io/v1beta1 \
    admission.k8s.io/v1 \
    admission.k8s.io/v1beta1 \
    apps/v1 \
    apps/v1beta1 \
    apps/v1beta2 \
    authentication.k8s.io/v1 \
    authentication.k8s.io/v1alpha1 \
    authentication.k8s.io/v1beta1 \
    authorization.k8s.io/v1 \
    authorization.k8s.io/v1beta1 \
    autoscaling/v1 \
    autoscaling/v2 \
    autoscaling/v2beta1 \
    autoscaling/v2beta2 \
    batch/v1 \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 6.2K 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/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)
  10. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            when:
            result = wrapperExecuter.withTasks('hello').run()
    
            then:
            outputContains('hello')
        }
    
        def "warns about using basic authentication over insecure connection"() {
            given:
            server.withBasicAuthentication("jdoe", "changeit")
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top