Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 275 for beraber (0.14 sec)

  1. pkg/controller/controller_utils.go

    func PodKey(pod *v1.Pod) string {
    	return fmt.Sprintf("%v/%v", pod.Namespace, pod.Name)
    }
    
    // ControllersByCreationTimestamp sorts a list of ReplicationControllers by creation timestamp, using their names as a tie breaker.
    type ControllersByCreationTimestamp []*v1.ReplicationController
    
    func (o ControllersByCreationTimestamp) Len() int      { return len(o) }
    func (o ControllersByCreationTimestamp) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    				RoundTripperFunc(func(req *http.Request) (*http.Response, error) {
    					req = utilnet.CloneRequest(req)
    					req.Header.Set("Authorization", "Bearer 1234")
    					return MirrorRequest.RoundTrip(req)
    				}),
    			),
    			ExpectedAuth: "Bearer 1234",
    		},
    	}
    
    	for k, tc := range testcases {
    		tcName := k
    		backendPath := "/hello"
    		func() { // Cleanup after each test case.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  3. istioctl/pkg/multicluster/remote_secret.go

    func (at *SecretType) Set(in string) error {
    	*at = SecretType(in)
    	return nil
    }
    
    const (
    	// Use a bearer token for authentication to the remote kubernetes cluster.
    	RemoteSecretAuthTypeBearerToken RemoteSecretAuthType = "bearer-token"
    
    	// Use a custom authentication plugin for the remote kubernetes cluster.
    	RemoteSecretAuthTypePlugin RemoteSecretAuthType = "plugin"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 01:43:17 UTC 2023
    - 24K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator.go

    	// neither of these are true for audit annotations set via AddAuditAnnotation.
    	//
    	// for audit annotations, the assumption is that for some period of time (cache TTL),
    	// all requests with the same API audiences and the same bearer token result in the
    	// same annotations.  This may not be true if the authenticator sets an annotation
    	// based on the current time, but that may be okay since cache TTLs are generally
    	// small (seconds).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    func getTimeHashInMinutes(scheduledTime time.Time) int64 {
    	return scheduledTime.Unix() / 60
    }
    
    // byJobStartTime sorts a list of jobs by start timestamp, using their names as a tie breaker.
    type byJobStartTime []*batchv1.Job
    
    func (o byJobStartTime) Len() int      { return len(o) }
    func (o byJobStartTime) Swap(i, j int) { o[i], o[j] = o[j], o[i] }
    
    func (o byJobStartTime) Less(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/security/oauth2-jwt.md

    ๐Ÿšฅ ๐Ÿ‘† ๐Ÿ“‚ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿงฐ, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ‘€ โ” ๐Ÿ“Š ๐Ÿ“จ ๐Ÿ•ด ๐Ÿ”Œ ๐Ÿค, ๐Ÿ” ๐Ÿ•ด ๐Ÿ“จ ๐Ÿฅ‡ ๐Ÿ“จ ๐Ÿ”“ ๐Ÿ‘ฉโ€๐Ÿ’ป & ๐Ÿคš ๐Ÿ‘ˆ ๐Ÿ” ๐Ÿค, โœ‹๏ธ ๐Ÿšซ โฎ๏ธ:
    
    <img src="/img/tutorial/security/image10.png">
    
    !!! note
        ๐Ÿ‘€ ๐ŸŽš `Authorization`, โฎ๏ธ ๐Ÿ’ฒ ๐Ÿ‘ˆ โ–ถ๏ธ โฎ๏ธ `Bearer `.
    
    ## ๐Ÿง โš™๏ธ โฎ๏ธ `scopes`
    
    Oauth2๏ธโƒฃ โœ”๏ธ ๐Ÿ”‘ "โ†”".
    
    ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿ‘ซ ๐Ÿšฎ ๐ŸŽฏ โš’ โœ” ๐Ÿฅ™ ๐Ÿค.
    
    โคด๏ธ ๐Ÿ‘† ๐Ÿ’ช ๐Ÿค ๐Ÿ‘‰ ๐Ÿค ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ”— โš–๏ธ ๐Ÿฅ‰ ๐Ÿฅณ, ๐Ÿ”— โฎ๏ธ ๐Ÿ‘† ๐Ÿ› ๏ธ โฎ๏ธ โš’ ๐Ÿšซ.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 21:21:35 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    type endpoint struct {
    	// URL to use to request the distributed claim.  This URL is expected to be
    	// prefixed by one of the known issuer URLs.
    	URL string `json:"endpoint,omitempty"`
    	// AccessToken is the bearer token to use for access.  If empty, it is
    	// not used.  Access token is optional per the OIDC distributed claims
    	// specification.
    	// See: http://openid.net/specs/openid-connect-core-1_0.html#DistributedExample
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. src/main/resources/esclient.xml

    			 <!--
    			 "node.name":"search_engine",
    			 "discovery.seed_hosts":"search_engine",
    			 "cluster.initial_cluster_manager_nodes":"search_engine",
    			 "node.roles":"cluster_manager,data,ingest,ml",
    			 -->
    			 "indices.breaker.total.limit":"100%",
    			 "action.auto_create_index":"-*"}
    		</property>
    		<!-- Dictionaries -->
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"mapping.txt"</arg>
    		</postConstruct>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 23 05:42:27 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller.go

    	}
    }
    
    // byEvictionAndCreationTimestamp sorts a list by Evicted status and then creation timestamp,
    // using their names as a tie breaker.
    // Evicted pods will be deleted first to avoid impact on terminated pods created by controllers.
    type byEvictionAndCreationTimestamp []*v1.Pod
    
    func (o byEvictionAndCreationTimestamp) Len() int      { return len(o) }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/cors.md

    ใ“ใ‚Œใ‚’ๅฎŸ็พใ™ใ‚‹ใซใฏใ€ใƒใƒƒใ‚ฏใ‚จใƒณใƒ‰ใซใ€Œ่จฑๅฏใ•ใ‚ŒใŸใ‚ชใƒชใ‚ธใƒณใ€ใฎใƒชใ‚นใƒˆใŒใชใ‘ใ‚Œใฐใชใ‚Šใพใ›ใ‚“ใ€‚
    
    ใ“ใฎๅ ดๅˆใ€ใƒ•ใƒญใƒณใƒˆใ‚จใƒณใƒ‰ใ‚’ๆญฃใ—ใๆฉŸ่ƒฝใ•ใ›ใ‚‹ใซใฏใ€ใใฎใƒชใ‚นใƒˆใซ `http://localhost:8080` ใ‚’ๅซใ‚ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚Šใพใ™ใ€‚
    
    ## ใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰
    
    ใƒชใ‚นใƒˆใ‚’ `"*"` (ใƒฏใ‚คใƒซใƒ‰ใ‚ซใƒผใƒ‰) ใจๅฎฃ่จ€ใ—ใฆใ€ใ™ในใฆใ‚’่จฑๅฏใ™ใ‚‹ใ“ใจใ‚‚ใงใใพใ™ใ€‚
    
    ใŸใ ใ—ใ€Bearer Tokenใงไฝฟ็”จใ•ใ‚Œใ‚‹ใ‚ˆใ†ใช่ช่จผใƒ˜ใƒƒใƒ€ใƒผใ‚„Cookieใชใฉใฎใ‚ฏใƒฌใƒ‡ใƒณใ‚ทใƒฃใƒซๆƒ…ๅ ฑใซ้–ขใ™ใ‚‹ใ‚‚ใฎใ‚’้™คใ„ใฆใ€็‰นๅฎšใฎ็จฎ้กžใฎ้€šไฟกใฎใฟใŒ่จฑๅฏใ•ใ‚Œใพใ™ใ€‚
    
    ใ—ใŸใŒใฃใฆใ€ใ™ในใฆใ‚’ๆญฃใ—ใๆฉŸ่ƒฝใ•ใ›ใ‚‹ใŸใ‚ใซใ€่จฑๅฏใ•ใ‚ŒใŸใ‚ชใƒชใ‚ธใƒณใฎๆ˜Ž็คบ็š„ใชๆŒ‡ๅฎšใ‚’ใŠๅ‹งใ‚ใ—ใพใ™ใ€‚
    
    ## `CORSMiddleware` ใฎไฝฟ็”จ
    
    **FastAPI** ใ‚ขใƒ—ใƒชใ‚ฑใƒผใ‚ทใƒงใƒณใงใฏ `CORSMiddleware` ใ‚’ไฝฟ็”จใ—ใฆใ€CORSใซ้–ขใ™ใ‚‹่จญๅฎšใŒใงใใพใ™ใ€‚
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Oct 18 06:02:19 UTC 2020
    - 6.3K bytes
    - Viewed (0)
Back to top