Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 415 for 1L (0.12 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/SocksProxy.kt

            val buffer = Buffer()
            try {
              sink.use {
                source.use {
                  while (true) {
                    val byteCount = source.read(buffer, 8192L)
                    if (byteCount == -1L) break
                    sink.write(buffer, byteCount)
                    sink.emit()
                  }
                }
              }
            } catch (e: IOException) {
              logger.log(Level.WARNING, "$name failed", e)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/multichannel/ChannelLoadBalancer.java

        /**
         * Exception thrown when no healthy channels are available
         */
        public static class NoAvailableChannelException extends RuntimeException {
    
            private static final long serialVersionUID = 1L;
    
            /**
             * Create exception
             *
             * @param message error message
             */
            public NoAvailableChannelException(String message) {
                super(message);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

                return null;
            }
        }
    
        // Mock FessConfig implementation
        private class MockFessConfig extends TestFessConfig {
            private static final long serialVersionUID = 1L;
            private String jvmSuggestOptions = "";
            private boolean useOwnTmpDir = false;
    
            public void setJvmSuggestOptions(String options) {
                this.jvmSuggestOptions = options;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

              }
            }.buffer()
        }
    
        override fun contentType(): MediaType? = contentType?.toMediaTypeOrNull()
    
        override fun contentLength(): Long = contentLength?.toLongOrDefault(-1L) ?: -1L
    
        override fun source(): BufferedSource = bodySource
      }
    
      companion object {
        private const val VERSION = 201105
        private const val ENTRY_METADATA = 0
        private const val ENTRY_BODY = 1
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/TrailersTest.kt

            .code(200)
            .message("OK")
            .body(
              object : ResponseBody() {
                override fun contentType(): MediaType? = null
    
                override fun contentLength(): Long = -1L
    
                override fun source(): BufferedSource = error("unexpected call")
              },
            ).trailers(
              object : TrailersSource {
                override fun get(): Headers = headersOf("t1", "v1")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 18:57:05 UTC 2025
    - 18K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/witness/WitnessClient.java

                        try {
                            int failures = Math.min(registration.getHeartbeatFailures(), MAX_FAILURE_LIMIT);
                            long backoffDelay = Math.min(MAX_ERROR_BACKOFF, BASE_ERROR_DELAY * (1L << failures));
                            Thread.sleep(backoffDelay);
                        } catch (InterruptedException ie) {
                            Thread.currentThread().interrupt();
                            break;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsWebConfig.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java

        //                                                                          Definition
        //                                                                          ==========
        private static final long serialVersionUID = 1L;
        protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class;
    
        // ===================================================================================
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getFesenHttpSslCertificateAuthorities() {
                    return certificateAuthorities;
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java

                    testEncryptionKey, testEncryptionKey);
    
            // Test initial encryption
            byte[] plaintext1 = "Before rotation".getBytes();
            byte[] encrypted1 = context.encryptMessage(plaintext1, 1L);
            byte[] decrypted1 = context.decryptMessage(encrypted1);
            assertArrayEquals(plaintext1, decrypted1);
    
            // When - Rotate keys
            byte[] newEncKey = new byte[16];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 44.1K bytes
    - Viewed (0)
Back to top