Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 157 for toTokens (0.93 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

        }
    
        private LinkedHashMap<String, String> toTokens(Map<String, ?> options) {
            def artifact = toArtifact(options)
            def tokens = [organisation: organisation, module: module, revision: revision, artifact: artifact.name, type: artifact.type, ext: artifact.ext, classifier: artifact.classifier]
            tokens
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    // For instance, if the mode is ScanIdents (not ScanStrings), the string
    // "foo" is scanned as the token sequence '"' [Ident] '"'.
    //
    // Use GoTokens to configure the Scanner such that it accepts all Go
    // literal tokens including Go identifiers. Comments will be skipped.
    const (
    	ScanIdents     = 1 << -Ident
    	ScanInts       = 1 << -Int
    	ScanFloats     = 1 << -Float // includes Ints and hexadecimal floats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/compress/flate/deflate.go

    				if d.byteAvailable {
    					// There is still one pending token that needs to be flushed
    					d.tokens = append(d.tokens, literalToken(uint32(d.window[d.index-1])))
    					d.byteAvailable = false
    				}
    				if len(d.tokens) > 0 {
    					if d.err = d.writeBlock(d.tokens, d.index); d.err != nil {
    						return
    					}
    					d.tokens = d.tokens[:0]
    				}
    				break Loop
    			}
    		}
    		if d.index < d.maxInsertIndex {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/lex/input.go

    		return
    	}
    	actuals := in.argsFor(macro)
    	var tokens []Token
    	for _, tok := range macro.tokens {
    		if tok.ScanToken != scanner.Ident {
    			tokens = append(tokens, tok)
    			continue
    		}
    		substitution := actuals[tok.text]
    		if substitution == nil {
    			tokens = append(tokens, tok)
    			continue
    		}
    		tokens = append(tokens, substitution...)
    	}
    	in.Push(NewSlice(in.Base(), in.Line(), tokens))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  5. 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: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            'a(,)'                                             | 'a'     | [tokens(''), tokens('')]
            'a((a,b))'                                         | 'a'     | [tokens('(a,b)')]
            'a((a,b,(c, d)))'                                  | 'a'     | [tokens('(a,b,(c,d))')]
            'a( ( a ,,, b ), c)'                               | 'a'     | [tokens('(a,,,b)'), token('c')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    						new := &Line{Token: tokens[1:], InBlock: true}
    						stmt.Line[j+1] = new
    						return new
    					}
    				}
    			}
    		}
    	}
    
    	new := &Line{Token: tokens}
    	x.Stmt = append(x.Stmt, new)
    	return new
    }
    
    func (x *FileSyntax) updateLine(line *Line, tokens ...string) {
    	if line.InBlock {
    		tokens = tokens[1:]
    	}
    	line.Token = tokens
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 mit Password (und Hashing), Bearer mit JWT-Tokens
    
    Da wir nun über den gesamten Sicherheitsablauf verfügen, machen wir die Anwendung tatsächlich sicher, indem wir <abbr title="JSON Web Tokens">JWT</abbr>-Tokens und sicheres Passwort-Hashing verwenden.
    
    Diesen Code können Sie tatsächlich in Ihrer Anwendung verwenden, die Passwort-Hashes in Ihrer Datenbank speichern, usw.
    
    Wir bauen auf dem vorherigen Kapitel auf.
    
    ## Über JWT
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/token.go

    	var kubeConfigFile string
    	var dryRun bool
    	tokenCmd := &cobra.Command{
    		Use:   "token",
    		Short: "Manage bootstrap tokens",
    		Long: dedent.Dedent(`
    			This command manages bootstrap tokens. It is optional and needed only for advanced use cases.
    
    			In short, bootstrap tokens are used for establishing bidirectional trust between a client and a server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/token_test.go

    			description:  "valid bootstrap tooken",
    			usages:       []string{"signing", "authentication"},
    			extraGroups:  []string{"system:bootstrappers:kubeadm:default-node-token"},
    			outputFormat: "json",
    			expected: `{
        "kind": "BootstrapToken",
        "apiVersion": "output.kubeadm.k8s.io/v1alpha3",
        "token": "abcdef.1234567890123456",
        "description": "valid bootstrap tooken",
        "usages": [
            "signing",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top