Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 747 for token5 (0.13 sec)

  1. src/bufio/scan_test.go

    		t.Fatalf("scan failed: %v", scanner.Err())
    	}
    	if token := scanner.Text(); token != word {
    		t.Fatalf("unexpected token: %v", token)
    	}
    }
    
    // Test that empty tokens, including at end of line or end of file, are found by the scanner.
    // Issue 8672: Could miss final empty token.
    
    func commaSplit(data []byte, atEOF bool) (advance int, token []byte, err error) {
    	for i := 0; i < len(data); i++ {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

            if (langs == null || langs.length == 0) {
                final List<AnalyzeToken> tokens = analyzer.analyze(searchWord, "", null);
                return tokens == null || tokens.size() == 0;
            }
            for (final String lang : langs) {
                final List<AnalyzeToken> tokens = analyzer.analyze(searchWord, field, lang);
                if (tokens != null && tokens.size() > 0) {
                    return false;
                }
            }
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. docs/sts/web-identity.py

        print('body: ' + id_token_response.text)
    
        # we can now use the id_token as much as we want to access protected resources.
        tokens = json.loads(id_token_response.text)
        id_token = tokens['id_token']
    
        response = sts_client.assume_role_with_web_identity(
            RoleArn='arn:aws:iam::123456789012:user/svc-internal-api',
            RoleSessionName='test',
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 28 01:37:51 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/HttpHeaders.kt

    private val TOKEN_DELIMITERS = "\t ,=".encodeUtf8()
    
    /**
     * Parse RFC 7235 challenges. This is awkward because we need to look ahead to know how to
     * interpret a token.
     *
     * For example, the first line has a parameter name/value pair and the second line has a single
     * token68:
     *
     * ```
     * WWW-Authenticate: Digest foo=bar
     * WWW-Authenticate: Digest foo=
     * ```
     *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. cmd/sts-handlers.go

    }
    
    // AssumeRoleWithCustomToken implements user authentication with custom tokens.
    // These tokens are opaque to MinIO and are verified by a configured (external)
    // Identity Management Plugin.
    //
    // API endpoint: https://minio:9000?Action=AssumeRoleWithCustomToken&Token=xxx
    func (sts *stsAPIHandlers) AssumeRoleWithCustomToken(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 01:29:20 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. internal/event/target/webhook.go

    	if err != nil {
    		return err
    	}
    
    	// Verify if the authToken already contains
    	// <Key> <Token> like format, if this is
    	// already present we can blindly use the
    	// authToken as is instead of adding 'Bearer'
    	tokens := strings.Fields(target.args.AuthToken)
    	switch len(tokens) {
    	case 2:
    		req.Header.Set("Authorization", target.args.AuthToken)
    	case 1:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## ๐Ÿ“จ ๐Ÿค
    
    ๐Ÿ“จ `token` ๐Ÿ”— ๐Ÿ”œ ๐ŸŽป ๐ŸŽš.
    
    โšซ๏ธ ๐Ÿ”œ โœ”๏ธ `token_type`. ๐Ÿ‘† ๐Ÿ’ผ, ๐Ÿ‘ฅ โš™๏ธ "๐Ÿ“จ" ๐Ÿค, ๐Ÿค ๐Ÿ†Ž ๐Ÿ”œ "`bearer`".
    
    &amp; โšซ๏ธ ๐Ÿ”œ โœ”๏ธ `access_token`, โฎ๏ธ ๐ŸŽป โš— ๐Ÿ‘† ๐Ÿ” ๐Ÿค.
    
    ๐Ÿ‘‰ ๐Ÿ™… ๐Ÿ–ผ, ๐Ÿ‘ฅ ๐Ÿ”œ ๐Ÿ• ๐Ÿ˜Ÿ &amp; ๐Ÿ“จ ๐ŸŽ `username` ๐Ÿค.
    
    /// tip
    
    โญ ๐Ÿ“ƒ, ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ ๐ŸŽฐ ๐Ÿ” ๐Ÿ› ๏ธ, โฎ๏ธ ๐Ÿ” #๏ธโƒฃ &amp; <abbr title="JSON Web Tokens">๐Ÿฅ™</abbr> ๐Ÿค.
    
    โœ‹๏ธ ๐Ÿ”œ, โžก๏ธ ๐ŸŽฏ ๐Ÿ”› ๐ŸŽฏ โ„น ๐Ÿ‘ฅ ๐Ÿ’ช.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. internal/config/lambda/target/webhook.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Verify if the authToken already contains
    	// <Key> <Token> like format, if this is
    	// already present we can blindly use the
    	// authToken as is instead of adding 'Bearer'
    	tokens := strings.Fields(target.args.AuthToken)
    	switch len(tokens) {
    	case 2:
    		req.Header.Set("Authorization", target.args.AuthToken)
    	case 1:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 08 21:39:49 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. docs/zh/docs/tutorial/security/simple-oauth2.md

    ///
    
    ## ่ฟ”ๅ›ž Token
    
    `token` ็ซฏ็‚น็š„ๅ“ๅบ”ๅฟ…้กปๆ˜ฏ JSON ๅฏน่ฑกใ€‚
    
    ๅ“ๅบ”่ฟ”ๅ›ž็š„ๅ†…ๅฎนๅบ”่ฏฅๅŒ…ๅซ `token_type`ใ€‚ๆœฌไพ‹ไธญ็”จ็š„ๆ˜ฏ**Bearer**Token๏ผŒๅ› ๆญค๏ผŒ Token ็ฑปๅž‹ๅบ”ไธบ**`bearer`**ใ€‚
    
    ่ฟ”ๅ›žๅ†…ๅฎน่ฟ˜ๅบ”ๅŒ…ๅซ `access_token` ๅญ—ๆฎต๏ผŒๅฎƒๆ˜ฏๅŒ…ๅซๆƒ้™ Token ็š„ๅญ—็ฌฆไธฒใ€‚
    
    ๆœฌไพ‹ๅชๆ˜ฏ็ฎ€ๅ•็š„ๆผ”็คบ๏ผŒ่ฟ”ๅ›ž็š„ Token ๅฐฑๆ˜ฏ `username`๏ผŒไฝ†่ฟ™็งๆ–นๅผๆžไธๅฎ‰ๅ…จใ€‚
    
    /// tip | "ๆ็คบ"
    
    ไธ‹ไธ€็ซ ไป‹็ปไฝฟ็”จๅ“ˆๅธŒๅฏ†็ ๅ’Œ <abbr title="JSON Web Tokens">JWT</abbr> Token ็š„็œŸๆญฃๅฎ‰ๅ…จๆœบๅˆถใ€‚
    
    ไฝ†็Žฐๅœจ๏ผŒไป…ๅ…ณๆณจๆ‰€้œ€็š„็‰นๅฎš็ป†่Š‚ใ€‚
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/lex/lex_test.go

    			"#endif",
    			"C",
    		),
    		"1234.\n",
    	},
    	{
    		"nested taken/not-taken #ifdef",
    		lines(
    			"#define A",
    			"#ifdef A",
    			"#ifdef B",
    			"#define C 1234",
    			"#else",
    			"#define C 5678",
    			"#endif",
    			"#endif",
    			"C",
    		),
    		"5678.\n",
    	},
    	{
    		"nested not-taken/would-be-taken #ifdef",
    		lines(
    			"#define B",
    			"#ifdef A",
    			"#ifdef B",
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top