Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 379 for Words (0.04 sec)

  1. src/go/doc/comment/testdata/words.txt

    Russ Cox <******@****.***> 1648990796 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 426 bytes
    - Viewed (0)
  2. 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)
  3. src/go/doc/comment/wrap_test.go

    	// Generate words of random length.
    	s := "1234567890αβcdefghijklmnopqrstuvwxyz"
    	sN := utf8.RuneCountInString(s)
    	var words []string
    	for i := 0; i < 100; i++ {
    		n := 1 + r.Intn(sN-1)
    		if n >= 12 {
    			n++ // extra byte for β
    		}
    		if n >= 11 {
    			n++ // extra byte for α
    		}
    		words = append(words, s[:n])
    	}
    
    	for n := 1; n <= len(words) && !t.Failed(); n++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  4. src/mime/multipart/multipart_test.go

    		t.Error(err)
    	}
    	got := buf.String()
    	want := "words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words"
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top