Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 527 for Dword2 (0.09 sec)

  1. 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)
  2. src/cmd/go/internal/lockedfile/transform_test.go

    					return chunk, nil
    				}
    
    				words := len(data) / 8
    				if !isPowerOf2(words) {
    					t.Errorf("read %d 8-byte words, but each write is a power-of-2 number of words", words)
    					return chunk, nil
    				}
    
    				u := binary.LittleEndian.Uint64(data)
    				for i := 1; i < words; i++ {
    					next := binary.LittleEndian.Uint64(data[i*8:])
    					if next != u+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K 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/go/doc/comment.go

    //
    //	w.Write(p.Printer().HTML(p.Parser().Parse(text)))
    //
    // If words may be non-nil, the longer replacement is:
    //
    //	parser := p.Parser()
    //	parser.Words = words
    //	w.Write(p.Printer().HTML(parser.Parse(d)))
    func ToHTML(w io.Writer, text string, words map[string]string) {
    	p := new(Package).Parser()
    	p.Words = words
    	d := p.Parse(text)
    	pr := new(comment.Printer)
    	w.Write(pr.HTML(d))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  5. src/math/rand/example_test.go

    		fmt.Println(value)
    	}
    
    	// Unordered output: 1
    	// 2
    	// 0
    }
    
    func ExampleShuffle() {
    	words := strings.Fields("ink runs from the corners of my mouth")
    	rand.Shuffle(len(words), func(i, j int) {
    		words[i], words[j] = words[j], words[i]
    	})
    	fmt.Println(words)
    }
    
    func ExampleShuffle_slicesInUnison() {
    	numbers := []byte("12345")
    	letters := []byte("ABCDE")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  6. .idea/dictionaries/darthorimar.xml

    <component name="ProjectDictionaryState">
      <dictionary name="darthorimar">
        <words>
          <w>unenhnanced</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 06 18:55:43 UTC 2023
    - 154 bytes
    - Viewed (0)
  7. .idea/dictionaries/dimonchik0036.xml

    <component name="ProjectDictionaryState">
      <dictionary name="dimonchik0036">
        <words>
          <w>ktij</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 17 10:31:48 UTC 2022
    - 149 bytes
    - Viewed (0)
  8. .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)
  9. .idea/dictionaries/sergey_igushkin.xml

    <component name="ProjectDictionaryState">
      <dictionary name="sergey.igushkin">
        <words>
          <w>klib</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 24 16:00:44 UTC 2020
    - 151 bytes
    - Viewed (0)
  10. .idea/dictionaries/Andrey_Yastrebov.xml

    <component name="ProjectDictionaryState">
      <dictionary name="Andrey.Yastrebov">
        <words>
          <w>sandboxing</w>
          <w>xcconfig</w>
        </words>
      </dictionary>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Dec 15 15:38:51 UTC 2023
    - 180 bytes
    - Viewed (0)
Back to top