Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 268 for Words (0.06 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            toWords("twoWords") == "two words"
            toWords("TwoWords") == "two words"
            toWords("two words") == "two words"
            toWords("Two Words") == "two words"
            toWords(" Two  \t words\n") == "two words"
            toWords("two_words") == "two words"
            toWords("two.words") == "two words"
            toWords("two,words") == "two words"
            toWords("trailing-") == "trailing"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/go/doc/comment/text.go

    func (p *textPrinter) text(out *bytes.Buffer, indent string, x []Text) {
    	p.oneLongLine(&p.long, x)
    	words := strings.Fields(p.long.String())
    	p.long.Reset()
    
    	var seq []int
    	if p.width < 0 || len(words) == 0 {
    		seq = []int{0, len(words)} // one long line
    	} else {
    		seq = wrap(words, p.width-utf8.RuneCountInString(indent))
    	}
    	for i := 0; i+1 < len(seq); i++ {
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestResponse.java

        protected final List<String> words;
    
        protected final int num;
    
        protected final long total;
    
        protected final List<SuggestItem> items;
    
        public SuggestResponse(final String index, final long tookMs, final List<String> words, final long total,
                final List<SuggestItem> items) {
            this.index = index;
            this.tookMs = tookMs;
            this.words = words;
            this.num = words.size();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    			i = len(line)
    		}
    		words = append(words, line[0:i])
    		line = line[i:]
    	}
    	// Substitute command if required.
    	if len(words) > 0 && g.commands[words[0]] != nil {
    		// Replace 0th word by command substitution.
    		//
    		// Force a copy of the command definition to
    		// ensure words doesn't end up as a reference
    		// to the g.commands content.
    		tmpCmdWords := append([]string(nil), (g.commands[words[0]])...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsResponse.java

            this.words = words;
            this.num = words.size();
            this.total = total;
            this.items = items;
        }
    
        public String getIndex() {
            return index;
        }
    
        public long getTookMs() {
            return tookMs;
        }
    
        public List<String> getWords() {
            return words;
        }
    
        public int getNum() {
            return num;
        }
    
        public long getTotal() {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/index/contents/DefaultContentsParser.java

                    final String[] words = SuggestUtil.parseQuery(queryString, field);
                    if (words.length == 0) {
                        continue;
                    }
    
                    final String[][] readings = new String[words.length][];
                    for (int j = 0; j < words.length; j++) {
                        words[j] = normalizer.normalize(words[j], field, "");
    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. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/DefaultBinaryNamingScheme.java

        }
    
        private String makeName(String... words) {
            int expectedLength = 0;
            for (String word : words) {
                if (word != null) {
                    expectedLength += word.length();
                }
            }
            StringBuilder builder = new StringBuilder(expectedLength);
            for (String word : words) {
                if (word == null || word.length() == 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. src/math/big/calibrate_test.go

    		}
    
    		th++
    	}
    }
    
    func measureSqr(words, nruns int, mode string) time.Duration {
    	// more runs for better statistics
    	initBasicSqr, initKaratsubaSqr := basicSqrThreshold, karatsubaSqrThreshold
    
    	switch mode {
    	case sqrModeMul:
    		basicSqrThreshold = words + 1
    	case sqrModeBasic:
    		basicSqrThreshold, karatsubaSqrThreshold = words-1, words+1
    	case sqrModeKaratsuba:
    		karatsubaSqrThreshold = words - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/scopes/KtScopeLike.kt

         * In other words `ALL_NAMES(scope)` is a subset of `scope.getAllNames()`
         */
        public fun getAllPossibleNames(): Set<Name> = withValidityAssertion {
            getPossibleCallableNames() + getPossibleClassifierNames()
        }
    
        /**
         * Returns a **superset** of callable names which current scope may contain.
         * In other words `ALL_CALLABLE_NAMES(scope)` is a subset of `scope.getCallableNames()`
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse.go

    	parsed := &Rule{Raw: rule}
    
    	// Split rule into "words" (where a quoted string is a single word).
    	var words []string
    	for _, match := range wordRegex.FindAllStringSubmatch(rule, -1) {
    		words = append(words, strings.Trim(match[1], `"`))
    	}
    
    	// The chain name must come first (and can't be the only thing there)
    	if len(words) < 2 || words[0] != "-A" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top