Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for 0x7f (0.09 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         * @param b the byte array to check
         * @return true if the bytes represent UTF-8 BOM, false otherwise
         */
        private boolean isUtf8BomBytes(final byte[] b) {
            return b[0] == (byte) 0xEF && b[1] == (byte) 0xBB && b[2] == (byte) 0xBF;
        }
    
        /**
         * Sets whether to process Google on/off comment directives.
         *
         * @param useGoogleOffOn true to enable Google on/off processing, false to disable
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    005B..0060    ; disallowed_STD3_valid                  # 1.1  LEFT SQUARE BRACKET..GRAVE ACCENT
    0061..007A    ; valid                                  # 1.1  LATIN SMALL LETTER A..LATIN SMALL LETTER Z
    007B..007F    ; disallowed_STD3_valid                  # 1.1  LEFT CURLY BRACKET..<control-007F>
    0080..009F    ; disallowed                             # 1.1  <control-0080>..<control-009F>
    00A0          ; disallowed_STD3_mapped ; 0020          # 1.1  NO-BREAK SPACE
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/ImmutableListTest.java

        b.set(0, "f");
        assertEquals(asList("a", "b", "c", "d"), list);
      }
    
      public void testComplexBuilder() {
        List<Integer> colorElem = asList(0x00, 0x33, 0x66, 0x99, 0xCC, 0xFF);
        ImmutableList.Builder<Integer> webSafeColorsBuilder = ImmutableList.builder();
        for (Integer red : colorElem) {
          for (Integer green : colorElem) {
            for (Integer blue : colorElem) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Chars.java

       *
       * @since 7.0
       */
      @GwtIncompatible // doesn't work
      public static char fromBytes(byte b1, byte b2) {
        return (char) ((b1 << 8) | (b2 & 0xFF));
      }
    
      /**
       * Returns an array containing the same values as {@code array}, but guaranteed to be of a
       * specified minimum length. If {@code array} already has a length of at least {@code minLength},
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  6. src/main/webapp/css/admin/adminlte.min.css.map

    E,iBAAA,QACA,MAAA,KAFF,+EAOQ,MAAA,kBAPR,sEAOQ,MAAA,kBAPR,0EAOQ,MAAA,kBAPR,2EAOQ,MAAA,kBAPR,iEAOQ,MAAA,kBAPR,oD7Fo0eF,oF6FzzeU,iBAAA,QACA,aAAA,QACA,MAAA,kBAbR,qFAkBU,MAAA,QAlBV,4EAkBU,MAAA,QAlBV,gFAkBU,MAAA,QAlBV,iFAkBU,MAAA,QAlBV,uEAkBU,MAAA,QAlBV,0D7F+1eF,0F6Fz0eY,iBAAA,QACA,aAAA,kBACA,MAAA,QAxBV,8EAgCQ,MAAA,qBAhCR,qEAgCQ,MAAA,qBAhCR,yEAgCQ,MAAA,qBAhCR,0EAgCQ,MAAA,qBAhCR,gEAgCQ,MAAA,qBAhCR,mD7F03eF,mF6Ft1eU,iBAAA,QACA,aAAA,QACA,MAAA,qBAtCR,oFA2CU,MAAA,KA3CV,2EA2CU,MAAA,KA3CV,+EA2CU,MAAA,KA3CV,g...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 3.7M bytes
    - Viewed (1)
Back to top