Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 258 for Dword2 (0.17 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc) {
                this(word, startOffset, endOffset, posInc, Integer.MAX_VALUE); // Integer.MAX_VALUE for seq means unused
            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc, final int seq) {
                this.word = word;
                this.startOffset = startOffset;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/cmd/go/internal/base/base.go

    }
    
    // LongName returns the command's long name: all the words in the usage line between "go" and a flag or argument,
    func (c *Command) LongName() string {
    	name := c.UsageLine
    	if i := strings.Index(name, " ["); i >= 0 {
    		name = name[:i]
    	}
    	if name == "go" {
    		return ""
    	}
    	return strings.TrimPrefix(name, "go ")
    }
    
    // Name returns the command's short name: the last word in the usage line before a flag or argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/README

    This directory holds test scripts *.txt run during 'go test cmd/go'.
    To run a specific script foo.txt
    
    	go test cmd/go -run=Script/^foo$
    
    In general script files should have short names: a few words, not whole sentences.
    The first word should be the general category of behavior being tested,
    often the name of a go subcommand (list, build, test, ...) or concept (vendor, pattern).
    
    Each script is a text archive (go doc internal/txtar).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. 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)
  5. .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)
  6. .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)
  7. .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)
  8. src/runtime/syscall_windows.go

    		p.dstStackSize = alignUp(p.dstStackSize, uintptr(t.Align_))
    		return
    	}
    
    	// In the C ABI, we're already on a word boundary.
    	// Also, sub-word-sized fastcall register arguments
    	// are stored to the least-significant bytes of the
    	// argument word and all supported Windows
    	// architectures are little endian, so srcStackOffset
    	// is already pointing to the right place for smaller
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. src/math/big/int.go

    					q, r := aWord/bWord, aWord%bWord
    					aWord, bWord = bWord, r
    					ua, ub = ub, ua+q*ub
    					va, vb = vb, va+q*vb
    					even = !even
    				}
    
    				t.abs = t.abs.setWord(ua)
    				s.abs = s.abs.setWord(va)
    				t.neg = !even
    				s.neg = even
    
    				t.Mul(Ua, t)
    				s.Mul(Ub, s)
    
    				Ua.Add(t, s)
    			} else {
    				for bWord != 0 {
    					aWord, bWord = bWord, aWord%bWord
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_ko.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
Back to top