Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 113 for Credential (0.13 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

       */
      public static final String ACCESS_CONTROL_ALLOW_PRIVATE_NETWORK =
          "Access-Control-Allow-Private-Network";
      /** The HTTP {@code Access-Control-Allow-Credentials} header field name. */
      public static final String ACCESS_CONTROL_ALLOW_CREDENTIALS = "Access-Control-Allow-Credentials";
      /** The HTTP {@code Access-Control-Expose-Headers} header field name. */
      public static final String ACCESS_CONTROL_EXPOSE_HEADERS = "Access-Control-Expose-Headers";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/config.go

    	// ServiceAccount (k8s only) indicates that a service account should be created
    	// for the deployment.
    	ServiceAccount bool
    
    	// DisableAutomountSAToken indicates to opt out of auto mounting ServiceAccount's API credentials
    	DisableAutomountSAToken bool
    
    	// Ports for this application. Port numbers may or may not be used, depending
    	// on the implementation.
    	Ports Ports
    
    	// ServiceAnnotations is annotations on service object.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. cmd/bucket-replication-handlers.go

    		return
    	}
    
    	// Write success response.
    	writeSuccessResponseJSON(w, data)
    }
    
    // ValidateBucketReplicationCredsHandler - validate replication credentials for a bucket.
    // ----------
    func (api objectAPIHandlers) ValidateBucketReplicationCredsHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ValidateBucketReplicationCreds")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. cmd/object-api-errors.go

    	Endpoint  string
    	AccessKey string
    }
    
    func (e RemoteTargetConnectionErr) Error() string {
    	if e.Bucket != "" {
    		return fmt.Sprintf("Remote service endpoint offline, target bucket: %s or remote service credentials: %s invalid \n\t%s", e.Bucket, e.AccessKey, e.Err.Error())
    	}
    	return fmt.Sprintf("Remote service endpoint %s not available\n\t%s", e.Endpoint, e.Err.Error())
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

        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
    
      until curl --insecure "${curl_auth_arg[@]}" --max-time 5 \
        --fail --output /dev/null --silent "https://${KUBE_MASTER_IP}/healthz"; do
        printf "."
        sleep 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation.go

    			errs = AppendErrors(errs,
    				fmt.Errorf("cannot specify client certificates or CA certificate or CA CRL If credentialName is set"))
    		}
    
    		// If tls mode is SIMPLE or MUTUAL, and CredentialName is specified, credentials are fetched
    		// remotely. ServerCertificate and CaCertificates fields are not required.
    		return
    	}
    
    	if settings.Mode == networking.ClientTLSSettings_MUTUAL {
    		if settings.ClientCertificate == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_node_status.go

    	}
    
    	if kl.cloud != nil {
    		instances, ok := kl.cloud.Instances()
    		if !ok {
    			return nil, fmt.Errorf("failed to get instances from cloud provider")
    		}
    
    		// TODO: We can't assume that the node has credentials to talk to the
    		// cloudprovider from arbitrary nodes. At most, we should talk to a
    		// local metadata server here.
    		var err error
    		if node.Spec.ProviderID == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. cmd/utils.go

    // testing.
    type OpenIDClientAppParams struct {
    	ClientID, ClientSecret, ProviderURL, RedirectURL string
    }
    
    // MockOpenIDTestUserInteraction - tries to login to dex using provided credentials.
    // It performs the user's browser interaction to login and retrieves the auth
    // code from dex and exchanges it for a JWT.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 22:00:34 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/sql-databases.md

    ```Python
    SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    ```
    
    ...and adapt it with your database data and credentials (equivalently for MySQL, MariaDB or any other).
    
    !!! tip
    
        This is the main line that you would have to modify if you wanted to use a different database.
    
    ### Create the SQLAlchemy `engine`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. pkg/features/kube_features.go

    	// owner: @andrewsykim
    	// alpha: v1.23
    	// beta: v1.29
    	//
    	// Disable in-tree functionality in kubelet to authenticate to cloud provider container registries for image pull credentials.
    	DisableKubeletCloudCredentialProviders featuregate.Feature = "DisableKubeletCloudCredentialProviders"
    
    	// owner: @HirazawaUi
    	// kep: http://kep.k8s.io/4004
    	// alpha: v1.29
    	// beta: v1.31
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top