Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for 41 (0.18 sec)

  1. src/main/java/org/codelibs/core/misc/Base64Util.java

         * @return The decoded data
         */
        public static byte[] decode(final String inData) {
            if (StringUtil.isEmpty(inData)) {
                return null;
            }
            final int num = inData.length() / 4 - 1;
            final int lastBytes = getLastBytes(inData);
            final byte[] outData = new byte[num * 3 + lastBytes];
            for (int i = 0; i < num; i++) {
                decode(inData, i * 4, outData, i * 3);
            }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/hash/Fingerprint2011Test.java

          buf[((x1 << 16) + (x2 << 8) + x3) % bufLen] ^= i % 256;
        }
        assertEquals(0xeaa3b1c985261632L, h);
      }
    
      private static long remix(long h) {
        h ^= h >>> 41;
        h *= 949921979;
        return h;
      }
    
      private static byte getChar(long h) {
        return (byte) ('a' + ((h & 0xfffff) % 26));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt

    http://example.com/foo%2zbar  s:http h:example.com p:/foo%2zbar
    http://example.com/foo%2\u00C2\u00A9zbar  s:http h:example.com p:/foo%2%C3%82%C2%A9zbar
    http://example.com/foo%41%7a  s:http h:example.com p:/foo%41%7a
    http://example.com/foo\t\u0091%91  s:http h:example.com p:/foo%C2%91%91
    http://example.com/foo%00%51  s:http h:example.com p:/foo%00%51
    http://example.com/(%28:%3A%29)  s:http h:example.com p:/(%28:%3A%29)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            buffer[37] = 0x00;
            buffer[38] = 0x00;
    
            // Parameter count (2 bytes)
            buffer[39] = 0x00;
            buffer[40] = 0x00;
    
            // Parameter offset (2 bytes)
            buffer[41] = 0x00;
            buffer[42] = 0x00;
    
            // Parameter displacement (2 bytes)
            buffer[43] = 0x00;
            buffer[44] = 0x00;
    
            // Data count (2 bytes)
            buffer[45] = 0x00;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java

        void testDecode() {
            byte[] buffer = new byte[1024];
            // Fill with basic SMB header structure
            System.arraycopy(new byte[] { (byte) 0xFF, 'S', 'M', 'B' }, 0, buffer, 0, 4);
            buffer[4] = 1; // wordCount
            buffer[7] = 0; // byteCount low
            buffer[8] = 0; // byteCount high
    
            assertDoesNotThrow(() -> response.decode(buffer, 0));
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt

        assertThat(formEncode(37)).isEqualTo("%25")
        assertThat(formEncode(38)).isEqualTo("%26")
        assertThat(formEncode(39)).isEqualTo("%27")
        assertThat(formEncode(40)).isEqualTo("%28")
        assertThat(formEncode(41)).isEqualTo("%29")
        assertThat(formEncode(42)).isEqualTo("*")
        assertThat(formEncode(43)).isEqualTo("%2B")
        assertThat(formEncode(44)).isEqualTo("%2C")
        assertThat(formEncode(45)).isEqualTo("-")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    - [v1.4.2-beta.1](#v142-beta1)
      - [Downloads](#downloads-2)
      - [Changelog since v1.4.1](#changelog-since-v141)
        - [Other notable changes](#other-notable-changes-9)
    - [v1.4.1](#v141)
      - [Downloads](#downloads-3)
      - [Changelog since v1.4.1-beta.2](#changelog-since-v141-beta2)
    - [v1.4.1-beta.2](#v141-beta2)
      - [Downloads](#downloads-4)
      - [Changelog since v1.4.0](#changelog-since-v140)
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-HostnamesCommon.kt

      val normalized = normalizeNfc(bufferB.readUtf8())
      bufferA.writeUtf8(normalized)
    
      // 3. For each label, convert/validate Punycode.
      val decoded = Punycode.decode(bufferA.readUtf8()) ?: return null
    
      // 4.1 Validate.
    
      // Must be NFC.
      if (decoded != normalizeNfc(decoded)) return null
    
      // TODO: Must not begin with a combining mark.
      // TODO: Each character must be 'valid' or 'deviation'. Not mapped.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  9. docs/SMB3_IMPLEMENTATION_PLAN.md

    ---
    
    ### Phase 4: Directory Leasing
    **Priority: MEDIUM** | **Estimated Effort: 2-3 weeks**
    
    Directory leasing extends the lease concept to directories for improved metadata caching.
    
    #### 4.1 Core Directory Lease Infrastructure
    ```
    Package: jcifs.internal.smb2.lease
    ├── DirectoryLeaseContext.java    - Directory-specific lease context
    ├── DirectoryLeaseCache.java      - Directory metadata cache
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            byte[] buffer = new byte[1024];
            request.writeBytesWireFormat(buffer, 0);
    
            // Read create options from buffer (offset 40-43)
            int readOptions = (buffer[40] & 0xFF) | ((buffer[41] & 0xFF) << 8) | ((buffer[42] & 0xFF) << 16) | ((buffer[43] & 0xFF) << 24);
            assertEquals(options, readOptions);
        }
    
        @Test
        @DisplayName("Test size calculation without create contexts")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
Back to top