Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 204 for Words (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. .idea/dictionaries/Denis_Zharkov.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Denis.Zharkov">
        <words>
          <w>pcla</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 10 14:56:30 UTC 2024
    - 149 bytes
    - Viewed (0)
  7. .idea/dictionaries/sergej_jaskiewicz.xml

    <component name="ProjectDictionaryState">
      <dictionary name="sergej.jaskiewicz">
        <words>
          <w>lowerings</w>
          <w>unmuted</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:16:15 UTC 2024
    - 179 bytes
    - Viewed (0)
  8. .idea/dictionaries/sebastiansellmair.xml

    <component name="ProjectDictionaryState">
      <dictionary name="sebastiansellmair">
        <words>
          <w>actuals</w>
          <w>associator</w>
          <w>cinterops</w>
          <w>instantiator</w>
          <w>interops</w>
          <w>klibrary</w>
          <w>namer</w>
          <w>undispatched</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jan 08 15:25:19 UTC 2024
    - 318 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/conditionCheck.kt

    fun <T> Array<T>.check(f: (T) -> Boolean): Boolean = false
    
    fun test(words: Array<String>) {
        if (<expr>words.check { it.length == 5 }</expr>) {
            consume("OK")
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 06:40:43 UTC 2024
    - 207 bytes
    - Viewed (0)
  10. src/math/big/floatmarsh.go

    	n := 0          // number of mantissa words
    	if x.form == finite {
    		// add space for mantissa and exponent
    		n = int((x.prec + (_W - 1)) / _W) // required mantissa length in words for given precision
    		// actual mantissa slice could be shorter (trailing 0's) or longer (unused bits):
    		// - if shorter, only encode the words present
    		// - if longer, cut off unused words when encoding in bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top