Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for beraber (0.3 sec)

  1. docs/en/docs/tutorial/security/first-steps.md

        * But it needs authentication for that specific endpoint.
        * So, to authenticate with our API, it sends a header `Authorization` with a value of `Bearer ` plus the token.
        * If the token contains `foobar`, the content of the `Authorization` header would be: `Bearer foobar`.
    
    ## **FastAPI**'s `OAuth2PasswordBearer`
    
    **FastAPI** provides several tools, at different levels of abstraction, to implement these security features.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. pkg/security/security.go

    		"A list of comma separated audiences to check in the JWT token before issuing a certificate. "+
    			"The token is accepted if it matches with one of the audiences").Get(), ",")
    )
    
    const (
    	BearerTokenPrefix = "Bearer "
    
    	K8sTokenPrefix = "Istio "
    
    	// CertSigner info
    	CertSigner = "CertSigner"
    
    	// ImpersonatedIdentity declares the identity we are requesting a certificate on behalf of.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  3. cmd/batch-expire.go

    //           # retainVersions: 5 # keep the latest 5 versions of the object including delete markers.
    //
    //   notify:
    //     endpoint: https://notify.endpoint # notification endpoint to receive job completion status
    //     token: Bearer xxxxx # optional authentication token for the notification endpoint
    //
    //   retry:
    //     attempts: 10 # number of retries for the job before giving up
    //     delay: 500ms # least amount of delay between each retry
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. cluster/gce/upgrade.sh

      fi
    }
    
    function wait-for-master() {
      echo "== Waiting for new master to respond to API requests =="
    
      local curl_auth_arg
      if [[ -n ${KUBE_BEARER_TOKEN:-} ]]; then
        curl_auth_arg=(-H "Authorization: Bearer ${KUBE_BEARER_TOKEN}")
      elif [[ -n ${KUBE_PASSWORD:-} ]]; then
        curl_auth_arg=(--user "${KUBE_USER}:${KUBE_PASSWORD}")
      else
        echo "can't get auth credentials for the current master"
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pkg/controller/statefulset/stateful_set_utils.go

    	"k8s.io/kubernetes/pkg/features"
    )
    
    var patchCodec = scheme.Codecs.LegacyCodec(apps.SchemeGroupVersion)
    
    // overlappingStatefulSets sorts a list of StatefulSets by creation timestamp, using their names as a tie breaker.
    // Generally used to tie break between StatefulSets that have overlapping selectors.
    type overlappingStatefulSets []*apps.StatefulSet
    
    func (o overlappingStatefulSets) Len() int { return len(o) }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  6. internal/grid/connection.go

    		dialer.Timeout = defaultDialTimeout
    		if c.dialer != nil {
    			dialer.NetDial = c.dialer.DialContext
    		}
    		if c.header == nil {
    			c.header = make(http.Header, 2)
    		}
    		c.header.Set("Authorization", "Bearer "+c.auth(""))
    		c.header.Set("X-Minio-Time", time.Now().UTC().Format(time.RFC3339))
    
    		if len(c.header) > 0 {
    			dialer.Header = ws.HandshakeHeaderHTTP(c.header)
    		}
    		dialer.TLSConfig = c.tlsConfig
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

          --project "${NETWORK_PROJECT}" \
          --network "${NETWORK}" \
          --source-tags "${MASTER_TAG}" \
          --allow "tcp:2380,tcp:2381" \
          --target-tags "${MASTER_TAG}" &
      fi
    
      # Generate a bearer token for this cluster. We push this separately
      # from the other cluster variables so that the client (this
      # computer) can forget it later. This should disappear with
      # http://issue.k8s.io/3168
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				opts := echo.CallOptions{
    					Address: "kubernetes.default.svc",
    					Port:    echo.Port{ServicePort: 443},
    					Scheme:  scheme.HTTPS,
    					HTTP: echo.HTTP{
    						Headers: headers.New().With("Authorization", "Bearer "+token.Status.Token).Build(),
    						Path:    "/",
    					},
    					// Test that we see our own identity -- not the ztunnel (istio-system/ztunnel).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_builder_test.go

    	}
    	if ec.CircuitBreakers != nil {
    		if ec.CircuitBreakers.Thresholds[0].MaxRetries.Value != gc.CircuitBreakers.Thresholds[0].MaxRetries.Value {
    			t.Errorf("Unexpected circuit breaker thresholds want %v, got %v", ec.CircuitBreakers.Thresholds[0].MaxRetries, gc.CircuitBreakers.Thresholds[0].MaxRetries)
    		}
    	}
    	if ec.AltStatName != "" {
    		if ec.AltStatName != gc.AltStatName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    * 🌐 Add Chinese translation for Tutorial - Security - OAuth2 with Password (and hashing), Bearer with JWT tokens. PR [#2642](https://github.com/tiangolo/fastapi/pull/2642) by [@waynerv](https://github.com/waynerv).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top