Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 415 for womens (0.26 sec)

  1. docs/en/docs/img/sponsors/powens.png

    powens.png...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 23 14:23:53 UTC 2023
    - 15K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/security/oauth2-jwt.md

    # OAuth2 with Password (and hashing), Bearer with JWT tokens
    
    Now that we have all the security flow, let's make the application actually secure, using <abbr title="JSON Web Tokens">JWT</abbr> tokens and secure password hashing.
    
    This code is something you can actually use in your application, save the password hashes in your database, etc.
    
    We are going to start from where we left in the previous chapter and increment it.
    
    ## About JWT
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. pkg/controlplane/apiserver/aggregator.go

    			continue
    		}
    
    		if !strings.HasPrefix(curr, "/apis/") {
    			continue
    		}
    		// this comes back in a list that looks like /apis/rbac.authorization.k8s.io/v1alpha1
    		tokens := strings.Split(curr, "/")
    		if len(tokens) != 4 {
    			continue
    		}
    
    		apiService := makeAPIService(schema.GroupVersion{Group: tokens[2], Version: tokens[3]}, apiVersionPriorities)
    		if apiService == nil {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 18:08:20 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apimachinery/pkg/labels/selector_test.go

    	}
    	for _, v := range testcases {
    		var tokens []Token
    		l := &Lexer{s: v.s, pos: 0}
    		for {
    			token, _ := l.Lex()
    			if token == EndOfStringToken {
    				break
    			}
    			tokens = append(tokens, token)
    		}
    		if len(tokens) != len(v.t) {
    			t.Errorf("Bad number of tokens for '%s %d, %d", v.s, len(tokens), len(v.t))
    		}
    		for i := 0; i < min(len(tokens), len(v.t)); i++ {
    			if tokens[i] != v.t[i] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 14 16:39:04 UTC 2022
    - 29.9K bytes
    - Viewed (0)
  8. 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)
  9. src/compress/flate/huffman_bit_writer.go

    	// Write the tokens.
    	w.writeTokens(tokens, w.literalEncoding.codes, w.offsetEncoding.codes)
    }
    
    // indexTokens indexes a slice of tokens, and updates
    // literalFreq and offsetFreq, and generates literalEncoding
    // and offsetEncoding.
    // The number of literal and offset tokens is returned.
    func (w *huffmanBitWriter) indexTokens(tokens []token) (numLiterals, numOffsets int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:59:14 UTC 2022
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    	return func(line string) string {
    		switch tokens := strings.Fields(line); len(tokens) {
    		case 0:
    			// Nothing to complete
    		case 1:
    			// Single token -- complete command name
    			if match := matchVariableOrCommand(tokens[0]); match != "" {
    				return match
    			}
    		case 2:
    			if tokens[0] == "help" {
    				if match := matchVariableOrCommand(tokens[1]); match != "" {
    					return tokens[0] + " " + match
    				}
    				return line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
Back to top