Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bytesValue (0.07 sec)

  1. src/test/java/org/codelibs/curl/io/ContentCacheTest.java

            try (InputStream stream = cache.getInputStream()) {
                for (int i = 0; i < 256; i++) {
                    int byteValue = stream.read();
                    assertEquals("Byte at position " + i, i & 0xFF, byteValue);
                }
                assertEquals(-1, stream.read()); // End of stream
            }
        }
    
        @Test
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  2. compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java

        private byte getByteValue(String s, String attribute, XmlPullParser parser, boolean strict)
                throws XmlPullParserException {
            if (s != null) {
                try {
                    return Byte.valueOf(s).byteValue();
                } catch (NumberFormatException nfe) {
                    if (strict) {
                        throw new XmlPullParserException(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 25.3K bytes
    - Viewed (0)
Back to top