Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 5158 (0.02 sec)

  1. gradle/libs.versions.toml

    de-mannodermaus-junit5 = "1.8.0"
    graalvm = "24.2.2"
    #noinspection UnusedVersionCatalogEntry
    junit-platform = "1.13.4"
    kotlinx-serialization = "1.9.0"
    ksp = "2.2.10-2.0.2"
    lintGradle = "1.0.0-alpha05"
    mockserverClient = "5.15.0"
    org-bouncycastle = "1.81"
    org-conscrypt = "2.5.2"
    org-jetbrains-coroutines = "1.10.2"
    org-jetbrains-kotlin = "2.2.10"
    org-junit-jupiter = "5.13.4"
    retrofit = "3.0.0"
    startupRuntime = "1.2.0"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Aug 31 17:41:20 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java

            // Setup server data for this scenario
            serverData.capabilities = 0; // No extended security
            serverData.encryptionKeyLength = 8;
            response.byteCount = 15; // 8 bytes key + 6 bytes "DOMAIN" + 1 null terminator
    
            // Prepare byte array
            byte[] encryptionKey = "12345678".getBytes();
            byte[] domainNameBytes = "DOMAIN".getBytes(ServerMessageBlock.OEM_ENCODING);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java

            // Verify the total bytes written is reasonable
            assertTrue(written > TEST_FILENAME.length());
        }
    
        @ParameterizedTest
        @CsvSource({ "4, 257", // FILE_BASIC_INFO -> 0x0101
                "5, 258", // FILE_STANDARD_INFO -> 0x0102
                "20, 260" // FILE_ENDOFFILE_INFO -> 0x0104
        })
        void testWriteParametersWireFormatWithDifferentInfoLevels(int infoLevel, int expectedMappedValue) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java

            assertEquals(0, SMBUtil.readInt2(paramBuffer, 4));
        }
    
        @DisplayName("Test with different information levels")
        @ParameterizedTest
        @CsvSource({ "4, 257", // FILE_BASIC_INFO -> 0x0101
                "5, 258", // FILE_STANDARD_INFO -> 0x0102
                "20, 260" // FILE_ENDOFFILE_INFO -> 0x0104
        })
        void testWithDifferentInformationLevels(byte infoLevel, int expectedMappedValue) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. README.md

    └── src/test/java/      # Comprehensive test suite
    ```
    
    ## 📊 Performance Metrics
    
    CoreLib 0.7.0 includes significant performance improvements through Java 21 optimizations:
    
    - **5-15% faster** type conversions with pattern matching and switch expressions
    - **Reduced memory allocation** in collection operations and bean copying
    - **Improved reflection performance** with cached descriptors and optimized field access
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/URLConnectionTest.kt

        }
      }
    
      /**
       * When a pooled connection fails, don't blame the route. Otherwise pooled connection failures can
       * cause unnecessary SSL fallbacks.
       *
       * https://github.com/square/okhttp/issues/515
       */
      @Test
      fun sslFallbackNotUsedWhenRecycledConnectionFails() {
        server.useHttps(handshakeCertificates.sslSocketFactory())
        server.enqueue(
          MockResponse
            .Builder()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jun 21 20:36:35 UTC 2025
    - 133.2K bytes
    - Viewed (0)
Back to top