Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 115 of 115 for Credential (0.17 sec)

  1. 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)
  2. 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)
  3. internal/config/config.go

    		n += len(text)
    	}
    	if err := scanner.Err(); err != nil {
    		return false, err
    	}
    	return dynOnly, nil
    }
    
    // RedactSensitiveInfo - removes sensitive information
    // like urls and credentials from the configuration
    func (c Config) RedactSensitiveInfo() Config {
    	nc := c.Clone()
    
    	for configName, configVals := range nc {
    		for _, helpKV := range HelpSubSysMap[configName] {
    			if helpKV.Sensitive {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/config.go

    	DisableHTTP2 bool
    }
    
    type AuthenticationInfo struct {
    	// APIAudiences is a list of identifier that the API identifies as. This is
    	// used by some authenticators to validate audience bound credentials.
    	APIAudiences authenticator.Audiences
    	// Authenticator determines which subject is making the request
    	Authenticator authenticator.Request
    
    	RequestHeaderConfig *authenticatorfactory.RequestHeaderConfig
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  5. src/net/http/request_test.go

    	if ok {
    		t.Errorf("expected false from BasicAuth when the request is unauthenticated")
    	}
    	want := basicAuthCredentialsTest{"", ""}
    	if username != want.username || password != want.password {
    		t.Errorf("expected credentials: %#v when the request is unauthenticated, got %#v",
    			want, basicAuthCredentialsTest{username, password})
    	}
    }
    
    var parseBasicAuthTests = []struct {
    	header, username, password string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top