Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 341 for Words (0.29 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                    buf.append(' ');
                }
                prev = c;
            }
            final String[] words = buf.toString().trim().split(" ");
            try {
                final SuggestItem item =
                        contentsParser.parseSearchWords(words, null, fields, tags, roles, num, readingConverter, normalizer, analyzer, langs);
                if (item == null) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

         * when declaring the struct, together with all their super-type schemas. This is an exhaustive list of every type a node can be
         * viewed as. In other words this is the full list of interfaces that a view proxy class generated for this struct type might implement.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/io/SourceSinkTester.java

      static final ImmutableMap<String, String> TEST_STRINGS =
          ImmutableMap.<String, String>builder()
              .put("empty", "")
              .put("1 char", "0")
              .put("1 word", "hello")
              .put("2 words", "hello world")
              .put("\\n line break", "hello\nworld")
              .put("\\r line break", "hello\rworld")
              .put("\\r\\n line break", "hello\r\nworld")
              .put("\\n at EOF", "hello\nworld\n")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 27 18:57:08 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. src/unicode/utf16/utf16.go

    	if r < surrSelf || r > maxRune {
    		return replacementChar, replacementChar
    	}
    	r -= surrSelf
    	return surr1 + (r>>10)&0x3ff, surr2 + r&0x3ff
    }
    
    // RuneLen returns the number of 16-bit words in the UTF-16 encoding of the rune.
    // It returns -1 if the rune is not a valid value to encode in UTF-16.
    func RuneLen(r rune) int {
    	switch {
    	case 0 <= r && r < surr1, surr3 <= r && r < surrSelf:
    		return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. src/crypto/md5/md5block_arm.s

    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)	// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer
    #define buf	buffer-(8+4*16)(SP)	//16 words temporary buffer
    		// 3 words at 4..12(R13) for called routine parameters
    
    TEXT	·block(SB), NOSPLIT, $84-16
    	MOVW	p+4(FP), Rdata	// pointer to the data
    	MOVW	p_len+8(FP), Rt0	// number of bytes
    	ADD	Rdata, Rt0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLogging.java

         * from levels lower than the specified granularity will be ignored.
         * <p>The default granularity is -1, which specifies that test events from only the most granular level should be logged.  In other words, if a test method is not parameterized, only events
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes_test.go

    	// The set of error codes is large and intended to be self-documenting, so
    	// this test enforces some style conventions.
    	forbiddenInIdent := []string{
    		// use invalid instead
    		"illegal",
    		// words with a common short-form
    		"argument",
    		"assertion",
    		"assignment",
    		"boolean",
    		"channel",
    		"condition",
    		"declaration",
    		"expression",
    		"function",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/cluster_scoping_pass.cc

      node->AddAttr(kXlaInternalScopeAttr, scope);
    }
    
    // NB! We append a new scope as suffix to the _XlaInternalScope attribute
    // instead of overriding the old value.  In other words, appending scope B to
    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/iexport.go

    //         }
    //     }
    //
    //     Fingerprint [8]byte
    //
    // uvarint means a uint64 written out using uvarint encoding.
    //
    // []T means a uvarint followed by that many T objects. In other
    // words:
    //
    //     Len   uvarint
    //     Elems [Len]T
    //
    // stringOff means a uvarint that indicates an offset within the
    // Strings section. At that offset is another uvarint, followed by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:40:02 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/OrderingTest.java

          <T extends @Nullable Object> Scenario<?> mutate(Scenario<T> scenario) {
            List<Iterable<T>> words = Lists.newArrayList();
            words.add(Collections.<T>emptyList());
            for (T t : scenario.strictlyOrderedList) {
              words.add(Arrays.asList(t));
              for (T s : scenario.strictlyOrderedList) {
                words.add(Arrays.asList(t, s));
              }
            }
            return new Scenario<Iterable<T>>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
Back to top