Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 378 for WORDS (0.07 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

            private final Trie trie;
            private final Set<String> set;
    
            public TrieSet(Collection<String> words) {
                this.trie = Trie.from(words);
                this.set = new HashSet<String>(words);
            }
    
            public boolean find(CharSequence seq) {
                return trie.find(seq);
            }
    
            public boolean contains(String seq) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/index.js

        return false;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#contentQuery").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
            fn: ["_default", "content", "title"],
            num: 10,
            lang: $("#langSearchOption").val()
          },
          boxCssInfo: {
            border: "1px solid rgba(82, 168, 236, 0.5)",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/runtime/memclr_arm64.s

    	CBNZ	R5, zero_by_line
    	// DCZID_EL0 bit assignments
    	// [63:5] Reserved
    	// [4]    DZP, if bit set DC ZVA instruction is prohibited, else permitted
    	// [3:0]  log2 of the block size in words, eg. if it returns 0x4 then block size is 16 words
    	MRS	DCZID_EL0, R3
    	TBZ	$4, R3, init
    	// ZVA not available
    	MOVW	$~0, R5
    	MOVW	R5, block_size<>(SB)
    	B	no_zva
    
    init:
    	MOVW	$4, R9
    	ANDW	$15, R3, R5
    	LSLW	R5, R9, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  4. pkg/apis/extensions/types.go

    a temporary one meant as a stopgap solution until kubernetes has proper
    support for multiple API groups. The transition may require changes
    beyond registration differences. In other words, experimental API group
    support is experimental.
    */
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:21:33 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  5. hack/verify-spelling.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. tensorflow/cc/framework/test_op.cc

        .Input("for: int32")
        .Attr("scope: int")
        .Attr("builder: int = 1")
        .Attr("while: int")
        .SetShapeFn(shape_inference::UnknownShape)
        .Doc(R"doc(
    Op to test keywords and reserved words in input and attr names.
    
    ret: Return value.
    for: Keyword as name for input.
    while: Keyword as name for attr.
    )doc");
    
    REGISTER_OP("ThrowAway2")
        .Attr("scope: int = 2")
        .Attr("throw_away2: int = 2")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 15 23:50:32 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/MD4.java

        private static final int BLOCK_LENGTH = 64;       //    = 512 / 8;
    
        /**
         * 4 32-bit words (interim result)
         */
        private int[] context = new int[4];
    
        /**
         * Number of bytes processed so far mod. 2 power of 64.
         */
        private long count;
    
        /**
         * 512 bits input buffer = 16 x 32-bit words holds until reaches 512 bits.
         */
        private byte[] buffer = new byte[BLOCK_LENGTH];
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    
    public interface ContentsParser {
        SuggestItem parseSearchWords(String[] words, String[][] readings, String[] fields, String[] tags, String roles[], long score,
                ReadingConverter readingConverter, Normalizer normalizer, SuggestAnalyzer analyzer, String[] langs);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/field/fe_test.go

    func (v *Element) toBig() *big.Int {
    	buf := v.Bytes()
    
    	words := make([]big.Word, 32*8/bits.UintSize)
    	for n := range words {
    		for i := 0; i < bits.UintSize; i += 8 {
    			if len(buf) == 0 {
    				break
    			}
    			words[n] |= big.Word(buf[0]) << big.Word(i)
    			buf = buf[1:]
    		}
    	}
    
    	return new(big.Int).SetBits(words)
    }
    
    func TestDecimalConstants(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. src/runtime/memclr_ppc64x.s

    	// R3 = ptr
    	// R4 = n
    
    	// Determine if there are doublewords to clear
    check:
    	ANDCC $7, R4, R5  // R5: leftover bytes to clear
    	SRD   $3, R4, R6  // R6: double words to clear
    	CMP   R6, $0, CR1 // CR1[EQ] set if no double words
    
    	BC    12, 6, nozerolarge // only single bytes
    	CMP   R4, $512
    	BLT   under512           // special case for < 512
    	ANDCC $127, R3, R8       // check for 128 alignment of address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 17:08:59 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top