Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 0xCAFEBABE (0.06 sec)

  1. guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java

        out.writeByte((byte) 200);
        out.writeChar('a');
        out.writeShort((short) -30000);
        out.writeShort((short) 50000);
        out.writeInt(0xCAFEBABE);
        out.writeLong(0xDEADBEEFCAFEBABEL);
        out.writeUTF("Herby Derby");
        out.writeFloat(Float.intBitsToFloat(0xCAFEBABE));
        out.writeDouble(Double.longBitsToDouble(0xDEADBEEFCAFEBABEL));
      }
    
      public void testReadFully() throws IOException {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java

            request.setFileId(newFileId);
            request.setFileInfoClass((byte) 0x0A); // This will set info type to SMB2_0_INFO_FILE
            request.setAdditionalInformation(0xDEADBEEF);
            request.setQueryFlags(0xCAFEBABE);
    
            // Add input buffer
            Encodable mockInputBuffer = mock(Encodable.class);
            when(mockInputBuffer.size()).thenReturn(64);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableList.java

          Arrays.sort((E[]) contents, 0, size, comparator);
          return asImmutableList(contents, size);
        }
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableTable.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableCollection.java

         * ImmutableCollection} from this method.
         */
        public abstract ImmutableCollection<E> build();
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableMultiset.java

        }
    
        @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      public static <Z> ImmutableSortedMultiset<Z> copyOf(Z[] elements) {
        throw new UnsupportedOperationException();
      }
    
      @J2ktIncompatible private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSet.java

            ImmutableCollection.Builder.DEFAULT_INITIAL_CAPACITY,
            sqrt(inputElementsIncludingAnyDuplicates, RoundingMode.CEILING));
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      @GwtIncompatible @J2ktIncompatible   private static final long serialVersionUID = 0xcafebabe;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 44.3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <alias type="application/x-java"/>
        <magic priority="50">
          <match value="0xcafebabe" type="string" offset="0"/>
        </magic>
        <glob pattern="*.class"/>
      </mime-type>
    
      <mime-type type="application/x-mach-o-universal">
        <_comment>Mach-O Universal</_comment>
        <magic priority="60">
          <match value="0xCAFEBABE" type="string" offset="0">
            <match value="0x1" type="big32" offset="4"/>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Mar 13 08:18:01 UTC 2025
    - 320.1K bytes
    - Viewed (1)
Back to top