Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 275 for beraber (0.19 sec)

  1. staging/src/k8s.io/api/authentication/v1beta1/types.go

    	Status TokenReviewStatus `json:"status,omitempty" protobuf:"bytes,3,opt,name=status"`
    }
    
    // TokenReviewSpec is a description of the token authentication request.
    type TokenReviewSpec struct {
    	// Token is the opaque bearer token.
    	// +optional
    	Token string `json:"token,omitempty" protobuf:"bytes,1,opt,name=token"`
    	// Audiences is a list of the identifiers that the resource server presented
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. internal/config/dns/operator_dns.go

    	}
    
    	token := jwt.NewWithClaims(jwt.SigningMethodHS512, claims)
    	ss, err := token.SignedString([]byte(c.password))
    	if err != nil {
    		return err
    	}
    
    	r.Header.Set("Authorization", "Bearer "+ss)
    	return nil
    }
    
    func (c *OperatorDNS) endpoint(bucket string, delete bool) (string, error) {
    	u, err := url.Parse(c.Endpoint)
    	if err != nil {
    		return "", err
    	}
    	q := u.Query()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/adminlte.min.css

    er .toast-warning{background-color:#ffc107}.pace{z-index:1048}.pace .pace-progress{z-index:1049}.pace .pace-activity{z-index:1050}.pace-primary .pace .pace-progress{background:#007bff}.pace-barber-shop-primary .pace{background:#fff}.pace-barber-shop-primary .pace .pace-progress{background:#007bff}.pace-barber-shop-primary .pace .pace-activity{background-image:linear-gradient(45deg,rgba(255,255,255,.2) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.2) 50%,rgba(255,255,255,.2) 75%,transparent...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 641.1K bytes
    - Viewed (0)
  4. docs/zh/docs/tutorial/cors.md

    为此,后端必须有一个「允许的源」列表。
    
    在这种情况下,它必须包含 `http://localhost:8080`,前端才能正常工作。
    
    ## 通配符
    
    也可以使用 `"*"`(一个「通配符」)声明这个列表,表示全部都是允许的。
    
    但这仅允许某些类型的通信,不包括所有涉及凭据的内容:像 Cookies 以及那些使用 Bearer 令牌的授权 headers 等。
    
    因此,为了一切都能正常工作,最好显式地指定允许的源。
    
    ## 使用 `CORSMiddleware`
    
    你可以在 **FastAPI** 应用中使用 `CORSMiddleware` 来配置它。
    
    * 导入 `CORSMiddleware`。
    * 创建一个允许的源列表(由字符串组成)。
    * 将其作为「中间件」添加到你的 **FastAPI** 应用中。
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 27 17:28:07 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. cluster/gce/gci/master-helper.sh

    # the call to write-master-env. Listing them would be rather
    # futile. Instead, we list the required calls to ensure any additional
    #
    # variables are set:
    #   ensure-temp-dir
    #   detect-project
    #   get-bearer-token
    function create-master-instance {
      local address=""
      [[ -n ${1:-} ]] && address="${1}"
      local internal_address=""
      [[ -n ${2:-} ]] && internal_address="${2}"
    
      write-master-env
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/README.md

    expose metrics without authentication, you don't need to use `mc` to generate prometheus config. You can skip reading further and move to 3.2 section.
    
    The Prometheus endpoint in MinIO requires authentication by default. Prometheus supports a bearer token approach to authenticate prometheus scrape requests, override the default Prometheus config with the one generated using mc. To generate a Prometheus config for an alias, use [mc](https://min.io/docs/minio/linux/reference/minio-mc.html#quickstart)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 12 15:49:30 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. docs/sts/keycloak.md

    The following example shows how to get the details of the user with `{userid}` from `{realm}` realm:
    
    ```
    curl \
      -H "Authorization: Bearer eyJhbGciOiJSUz..." \
      "http://localhost:8080/auth/admin/realms/{realm}/users/{userid}"
    ```
    
    ### Configure MinIO
    
    ```
    export MINIO_ROOT_USER=minio
    export MINIO_ROOT_PASSWORD=minio123
    minio server /mnt/export
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  8. cluster/get-kube-binaries.sh

        curl_headers=""
        if { [[ "${KUBERNETES_PROVIDER:-gce}" == "gce" ]] || [[ "${KUBERNETES_PROVIDER}" == "gke" ]] ; } &&
           [[ "$url" =~ ^https://storage.googleapis.com.* ]]; then
          curl_headers="Authorization: Bearer $(gcloud auth print-access-token)"
        fi
        curl ${curl_headers:+-H "${curl_headers}"} -fL --retry 3 --keepalive-time 2 "${url}" -o "${download_path}/${file}"
      elif [[ $(which wget) ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. cluster/get-kube.sh

        if { [[ "${KUBERNETES_PROVIDER:-gce}" == "gce" ]] || [[ "${KUBERNETES_PROVIDER}" == "gke" ]] ; } &&
           [[ "$kubernetes_tar_url" =~ ^https://storage.googleapis.com.* ]] ; then
          curl_headers="Authorization: Bearer $(gcloud auth print-access-token)"
        fi
        curl ${curl_headers:+-H "${curl_headers}"} -fL --retry 3 --keepalive-time 2 "${kubernetes_tar_url}" -o "${file}"
      elif [[ $(which wget) ]]; then
        wget "${kubernetes_tar_url}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 18 22:47:29 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. pkg/credentialprovider/keyring.go

    	// IdentityToken is used to authenticate the user and get
    	// an access token for the registry.
    	IdentityToken string `json:"identitytoken,omitempty"`
    
    	// RegistryToken is a bearer token to be sent to a registry
    	RegistryToken string `json:"registrytoken,omitempty"`
    }
    
    // Add add some docker config in basic docker keyring
    func (dk *BasicDockerKeyring) Add(cfg DockerConfig) {
    	if dk.index == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top