Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Ford (0.17 sec)

  1. src/cmd/asm/internal/asm/testdata/arm.s

    // DIVHW R0, R1: R1 / R0 -> R1
    	DIVHW	R0, R1               // 11f011e7
    	DIVUHW	R0, R1               // 11f031e7
    
    // misc
    	CLZ	R1, R2         // 112f6fe1
    	WORD	$0             // 00000000
    	WORD	$4294967295    // ffffffff
    	WORD	$2863311530    // aaaaaaaa
    	WORD	$1431655765    // 55555555
    	PLD	4080(R6)       // f0ffd6f5
    	PLD	-4080(R9)      // f0ff59f5
    	RFE	               // 0080fde8
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                buf.append("\"data\":[");
                boolean first1 = true;
                for (final String word : popularWordList) {
                    if (!first1) {
                        buf.append(',');
                    } else {
                        first1 = false;
                    }
                    buf.append(escapeJson(word));
                }
                buf.append(']');
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  3. internal/s3select/select_test.go

    3`,
    		},
    		{
    			name:  "Select reserved word column",
    			query: `select "CAST"  from s3object`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with table alias",
    			query: `select S3Object."CAST" from s3object`,
    			wantResult: `true
    false`,
    		},
    		{
    			name:  "Select reserved word column with unused table alias",
    Go
    - Registered: Sun Apr 07 19:28:10 GMT 2024
    - Last Modified: Sat Dec 23 07:19:11 GMT 2023
    - 76.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsElevateWordCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "elevate_word";
        }
    
        @Override
        public String xgetAliasName() {
            return "elevate_word";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 64.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsBadWordCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "bad_word";
        }
    
        @Override
        public String xgetAliasName() {
            return "bad_word";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 58.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        }
    
        default void setWebApiPopularWord(final boolean value) {
            setSystemPropertyAsBoolean(Constants.WEB_API_POPULAR_WORD_PROPERTY, value);
        }
    
        default boolean isWebApiPopularWord() {
            return getSystemPropertyAsBoolean(Constants.WEB_API_POPULAR_WORD_PROPERTY, true);
        }
    
        default void setCsvFileEncoding(final String value) {
    Java
    - Registered: Mon Apr 15 08:04:17 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	KNOTQ K1, K5          // c4e1f844e9
    	KORB K7, K5, K0       // c5d545c7
    	KORB K0, K7, K5       // c5c545e8
    	KORW K7, K5, K0       // c5d445c7
    	KORW K0, K7, K5       // c5c445e8
    	KORD K7, K5, K0       // c4e1d545c7
    	KORD K0, K7, K5       // c4e1c545e8
    	KORQ K7, K5, K0       // c4e1d445c7
    	KORQ K0, K7, K5       // c4e1c445e8
    	KSHIFTLB $0, K7, K0   // c4e37932c700
    	KSHIFTLB $196, K1, K5 // c4e37932e9c4
    Others
    - Registered: Tue Apr 16 11:13:10 GMT 2024
    - Last Modified: Tue Apr 11 18:32:50 GMT 2023
    - 57.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * A builder for creating immutable sorted map instances, especially {@code public static final}
       * maps ("constant maps"). Example:
       *
       * <pre>{@code
       * static final ImmutableSortedMap<Integer, String> INT_TO_WORD =
       *     new ImmutableSortedMap.Builder<Integer, String>(Ordering.natural())
       *         .put(1, "one")
       *         .put(2, "two")
       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 52.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableSortedMap.java

       * A builder for creating immutable sorted map instances, especially {@code public static final}
       * maps ("constant maps"). Example:
       *
       * <pre>{@code
       * static final ImmutableSortedMap<Integer, String> INT_TO_WORD =
       *     new ImmutableSortedMap.Builder<Integer, String>(Ordering.natural())
       *         .put(1, "one")
       *         .put(2, "two")
       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * bits.
       *
       * @param h hash code
       */
      static int rehash(int h) {
        // Spread bits to regularize both segment and index locations,
        // using variant of single-word Wang/Jenkins hash.
        // TODO(kevinb): use Hashing/move this to Hashing?
        h += (h << 15) ^ 0xffffcd7d;
        h ^= (h >>> 10);
        h += (h << 3);
        h ^= (h >>> 6);
        h += (h << 2) + (h << 14);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
Back to top