Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 83 for Credential (0.27 sec)

  1. samples/bookinfo/platform/kube/bookinfo-mysql.yaml

    ##################################################################################################
    # Mysql db services
    # credentials: root/password
    ##################################################################################################
    apiVersion: v1
    kind: Secret
    metadata:
      name: mysql-credentials
    type: Opaque
    data:
      rootpasswd: cGFzc3dvcmQ=
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: mysqldb
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. docs/ftp/README.md

    ## Scope
    
    - All IAM Credentials are allowed access excluding rotating credentials, rotating credentials
      are not allowed to login via FTP/SFTP ports, you must use S3 API port for if you are using
      rotating credentials.
    
    - Access to bucket(s) and object(s) are governed via IAM policies associated with the incoming
      login credentials.
    
    - Allows authentication and access for all
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 06:41:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. cmd/signature-v4-utils.go

    		u, ok, err := globalIAMSys.CheckKey(r.Context(), accessKey)
    		if err != nil {
    			return auth.Credentials{}, false, ErrIAMNotInitialized
    		}
    		if !ok {
    			// Credentials could be valid but disabled - return a different
    			// error in such a scenario.
    			if u.Credentials.Status == auth.AccountOff {
    				return cred, false, ErrAccessKeyDisabled
    			}
    			return cred, false, ErrInvalidAccessKeyID
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_zos.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Socket control messages
    
    package unix
    
    import "unsafe"
    
    // UnixCredentials encodes credentials into a socket control message
    // for sending to another process. This can be used for
    // authentication.
    func UnixCredentials(ucred *Ucred) []byte {
    	b := make([]byte, CmsgSpace(SizeofUcred))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. internal/config/identity/tls/config.go

    	// MinIO verifies the client certificate present by the client
    	// when requesting temp. credentials.
    	// By default, MinIO always verify the client certificate.
    	//
    	// The client certificate verification should only be skipped
    	// when debugging or testing a setup since it allows arbitrary
    	// clients to obtain temp. credentials with arbitrary policy
    	// permissions - including admin permissions.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/registry_setup_test.go

    	}
    	return nil
    }
    
    func createDockerCredential(user, passwd, registry string) string {
    	credentials := `{
    	"auths":{
    		"%v":{
    			"username": "%v",
    			"password": "%v",
    			"email": "******@****.***",
    			"auth": "%v"
    		}
    	}
    }`
    	auth := base64.StdEncoding.EncodeToString([]byte(user + ":" + passwd))
    	return fmt.Sprintf(credentials, registry, user, passwd, auth)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/security/http-basic-auth.md

    `secrets.compare_digest()` 需要仅包含 ASCII 字符(英语字符)的 `bytes` 或 `str`,这意味着它不适用于像`á`一样的字符,如 `Sebastián`。
    
    为了解决这个问题,我们首先将 `username` 和 `password` 转换为使用 UTF-8 编码的 `bytes` 。
    
    然后我们可以使用 `secrets.compare_digest()` 来确保 `credentials.username` 是 `"stanleyjobson"`,且 `credentials.password` 是`"swordfish"`。
    
    === "Python 3.9+"
    
        ```Python hl_lines="1  12-24"
        {!> ../../../docs_src/security/tutorial007_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:32:54 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

        private final ListMultimap<SftpHost, LockableSftpClient> idleClients = ArrayListMultimap.create();
    
        public LockableSftpClient createSftpClient(URI uri, PasswordCredentials credentials) {
            synchronized (lock) {
                SftpHost sftpHost = new SftpHost(uri, credentials);
                return acquireClient(sftpHost);
            }
        }
    
        private LockableSftpClient acquireClient(SftpHost sftpHost) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. cmd/warm-backend-minio.go

    	// Validation of credentials
    	if conf.AccessKey == "" || conf.SecretKey == "" {
    		return nil, errors.New("both access and secret keys are required")
    	}
    
    	if conf.Bucket == "" {
    		return nil, errors.New("no bucket name was provided")
    	}
    
    	u, err := url.Parse(conf.Endpoint)
    	if err != nil {
    		return nil, err
    	}
    
    	creds := credentials.NewStaticV4(conf.AccessKey, conf.SecretKey, "")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 21 11:43:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. .github/workflows/maven.yml

              persist-credentials: false
    
          - name: Set up JDK
            uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
    #          cache: 'maven' - don't use cache for integration tests
    
          - uses: actions/checkout@v4
            with:
              path: maven/
              persist-credentials: false
    
          - name: Set up Maven
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top