Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 361 for s3cr3t (0.09 sec)

  1. docs/distributed/decom-encrypted-sse-s3.sh

    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    ./s3-check-md5 -versions -access-key minioadmin -secret-key minioadmin -endpoint http://127.0.0.1:9001/ -bucket versioned
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. cmd/warm-backend-s3.go

    		return nil, errors.New("both the token file and the role ARN are required")
    	case conf.AccessKey == "" && conf.SecretKey != "" || conf.AccessKey != "" && conf.SecretKey == "":
    		return nil, errors.New("both the access and secret keys are required")
    	case conf.AWSRole && (conf.AWSRoleWebIdentityTokenFile != "" || conf.AWSRoleARN != "" || conf.AccessKey != "" || conf.SecretKey != ""):
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. cmd/warm-backend-minio.go

    }
    
    func newWarmBackendMinIO(conf madmin.TierMinIO, tier string) (*warmBackendMinIO, error) {
    	// 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
    	}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. docs/distributed/decom-compressed-sse-s3.sh

    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no missing entries after decommission: $out"
    	exit 1
    fi
    
    ./s3-check-md5 -versions -access-key minioadmin -secret-key minioadmin -endpoint http://127.0.0.1:9001/ -bucket versioned
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. docs/distributed/decom-encrypted.sh

    if [ "${expected_checksum}" != "${got_checksum}" ]; then
    	echo "BUG: decommission failed on encrypted objects: expected ${expected_checksum} got ${got_checksum}"
    	exit 1
    fi
    
    ./s3-check-md5 -versions -access-key minioadmin -secret-key minioadmin -endpoint http://127.0.0.1:9001/ -bucket versioned
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/security/simple-oauth2.md

    ## ๐Ÿ‘€ โšซ๏ธ ๐ŸŽฏ
    
    ๐Ÿ“‚ ๐ŸŽ“ ๐Ÿฉบ: <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>.
    
    ### ๐Ÿ”“
    
    ๐Ÿ–Š "โœ”" ๐Ÿ”ผ.
    
    โš™๏ธ ๐ŸŽ“:
    
    ๐Ÿ‘ฉโ€๐Ÿ’ป: `johndoe`
    
    ๐Ÿ”: `secret`
    
    <img src="/img/tutorial/security/image04.png">
    
    โฎ๏ธ ๐Ÿ”— โš™๏ธ, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ โšซ๏ธ ๐Ÿ’–:
    
    <img src="/img/tutorial/security/image05.png">
    
    ### ๐Ÿคš ๐Ÿ‘† ๐Ÿ‘ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿ’ฝ
    
    ๐Ÿ”œ โš™๏ธ ๐Ÿ› ๏ธ `GET` โฎ๏ธ โžก `/users/me`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. istioctl/pkg/workload/workload_test.go

    					Data: map[string]string{
    						"mesh": string(util.ReadFile(t, path.Join(testdir, "meshconfig.yaml"))),
    					},
    				}, metav1.CreateOptions{})
    				client.Kube().CoreV1().Secrets("bar").Create(context.Background(), &v1.Secret{
    					ObjectMeta: metav1.ObjectMeta{Namespace: "bar", Name: "test"},
    					Data: map[string][]byte{
    						"token": {},
    					},
    				}, metav1.CreateOptions{})
    			}
    
    			cmdWithClusterID := []string{
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Aug 01 20:04:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     *   // If this is preemptive auth, use a preemptive credential.
     *   if (challenge.scheme().equalsIgnoreCase("OkHttp-Preemptive")) {
     *     return response.request().newBuilder()
     *         .header("Proxy-Authorization", "secret")
     *         .build();
     *   }
     * }
     * return null; // Didn't find a preemptive auth scheme.
     * ```
     *
     * ## Reactive Authentication
     *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/security/oauth2-jwt.md

    ๅฏไปฅ็œ‹ๅˆฐๅฆ‚ไธ‹็”จๆˆท็•Œ้ข๏ผš
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/security/image07.png">
    
    ็”จไธŽไธŠไธ€็ซ ๅŒๆ ท็š„ๆ–นๅผๅฎž็Žฐๅบ”็”จๆŽˆๆƒใ€‚
    
    ไฝฟ็”จๅฆ‚ไธ‹ๅ‡ญ่ฏ๏ผš
    
    ็”จๆˆทๅ: `johndoe` ๅฏ†็ : `secret`
    
    /// check | "ๆฃ€ๆŸฅ"
    
    ๆณจๆ„๏ผŒไปฃ็ ไธญๆฒกๆœ‰ๆ˜Žๆ–‡ๅฏ†็ **`secret`**๏ผŒๅชไฟๅญ˜ไบ†ๅฎƒ็š„ๅ“ˆๅธŒๅ€ผใ€‚
    
    ///
    
    <img src="https://fastapi.tiangolo.com/img/tutorial/security/image08.png">
    
    ่ฐƒ็”จ `/users/me/` ็ซฏ็‚น๏ผŒๆ”ถๅˆฐไธ‹้ข็š„ๅ“ๅบ”๏ผš
    
    ```JSON
    {
      "username": "johndoe",
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/es/config/exentity/WebConfigTest.java

                    return StringUtil.EMPTY;
                }
    
                @Override
                public String getAppEncryptPropertyPattern() {
                    return ".*password|.*key|.*token|.*secret";
                }
            };
            ComponentUtil.setFessConfig(fessConfig);
            SystemHelper systemHelper = new SystemHelper() {
                @Override
                public String getProductVersion() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top