Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,750 for tokEnd (0.26 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    			s.gobble(ErrSyntax)
    			continue
    		}
    		s.token = token
    		return end
    	}
    	if n := len(s.b); n > 0 && s.b[n-1] == '-' {
    		s.setError(ErrSyntax)
    		s.b = s.b[:len(s.b)-1]
    	}
    	s.done = true
    	return end
    }
    
    // acceptMinSize parses multiple tokens of the given size or greater.
    // It returns the end position of the last token consumed.
    func (s *scanner) acceptMinSize(min int) (end int) {
    	end = s.end
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              runAsNonRoot: false
              runAsUser: 0
            volumeMounts:
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/run/secrets/tokens
              name: istio-token
          nodeSelector:
            kubernetes.io/os: linux
          priorityClassName: system-node-critical
          serviceAccountName: ztunnel
          terminationGracePeriodSeconds: 30
          tolerations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/istio_ca.go

    		if err != nil {
    			log.Warnf("Starting with invalid K8S JWT token: %v", err)
    		} else {
    			if iss == "" {
    				iss = tok.Iss
    			}
    			if len(tok.Aud) > 0 && len(aud) == 0 {
    				aud = tok.Aud[0]
    			}
    		}
    	}
    
    	// TODO: if not set, parse Istiod's own token (if present) and get the issuer. The same issuer is used
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    // lexicographically without assigning any special meaning to tokens.
    func lineLess(li, lj *Line) bool {
    	for k := 0; k < len(li.Token) && k < len(lj.Token); k++ {
    		if li.Token[k] != lj.Token[k] {
    			return li.Token[k] < lj.Token[k]
    		}
    	}
    	return len(li.Token) < len(lj.Token)
    }
    
    // lineExcludeLess reports whether li should be sorted before lj for lines in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  6. pkg/kubeapiserver/options/authentication.go

    			"Turns on projected service account expiration extension during token generation, "+
    			"which helps safe transition from legacy token to bound service account token feature. "+
    			"If this flag is enabled, admission injected tokens would be extended up to 1 year to "+
    			"prevent unexpected failure during transition, ignoring value of service-account-max-token-expiration.")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K 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))
    		}
    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. cmd/kube-controller-manager/app/options/serviceaccountcontroller.go

    	fs.Int32Var(&o.ConcurrentSATokenSyncs, "concurrent-serviceaccount-token-syncs", o.ConcurrentSATokenSyncs, "The number of service account token objects that are allowed to sync concurrently. Larger number = more responsive token generation, but more CPU (and network) load")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 2.2K 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. pkg/kube/inject/testdata/inject/list.yaml.injected

              - mountPath: /var/lib/istio/data
                name: istio-data
              - mountPath: /etc/istio/proxy
                name: istio-envoy
              - mountPath: /var/run/secrets/tokens
                name: istio-token
              - mountPath: /etc/istio/pod
                name: istio-podinfo
            initContainers:
            - args:
              - istio-iptables
              - -p
              - "15001"
              - -z
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top