- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 415 for 1L (0.03 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
currentThread.name = oldName } } /** Returns the Content-Length as reported by the response headers. */ internal fun Response.headersContentLength(): Long = headers["Content-Length"]?.toLongOrDefault(-1L) ?: -1L /** Returns an immutable wrap of this. */ @Suppress("NOTHING_TO_INLINE") internal inline fun <T> List<T>.unmodifiable(): List<T> = Collections.unmodifiableList(this) /** Returns an immutable wrap of this. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
sink: Buffer, byteCount: Long, ): Long { require(byteCount >= 0L) { "byteCount < 0: $byteCount" } while (true) { var tryAgain = false var readBytesDelivered = -1L var errorExceptionToDeliver: IOException? = null // 1. Decide what to do in a synchronized block. withLock { val doReadTimeout = doReadTimeout() if (doReadTimeout) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 07 18:57:05 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/ElevateWordToLabel.java
/** * @author ESFlute (using FreeGen) */ public class ElevateWordToLabel extends BsElevateWordToLabel { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 913 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ScheduledJobException.java
package org.codelibs.fess.exception; /** * This exception is thrown when a scheduled job fails. */ public class ScheduledJobException extends FessSystemException { private static final long serialVersionUID = 1L; /** * Constructor. * @param message Exception message. * @param cause Root cause for this exception. */ public ScheduledJobException(final String message, final Throwable cause) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.2K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/GzipRequestBody.kt
internal class GzipRequestBody( val delegate: RequestBody, ) : RequestBody() { override fun contentType() = delegate.contentType() // We don't know the compressed length in advance! override fun contentLength() = -1L override fun writeTo(sink: BufferedSink) { GzipSink(sink).buffer().use(delegate::writeTo) } override fun isOneShot() = delegate.isOneShot()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 04 17:43:43 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoMessageException.java
* can be used by the UI layer to display appropriate error messages to users. */ public class SsoMessageException extends FessSystemException { private static final long serialVersionUID = 1L; /** The message code for internationalized error messages. */ private final transient VaMessenger<FessMessages> messageCode; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/FileEntryTest.java
// Assert assertEquals(value, actual, label); } static Stream<Arguments> longGetterProvider() { return Stream.of(Arguments.of((LongGetter) FileEntry::createTime, -1L, "negative createTime"), Arguments.of((LongGetter) FileEntry::createTime, 0L, "zero createTime"), Arguments.of((LongGetter) FileEntry::createTime, Long.MAX_VALUE, "max createTime"),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/RequestHeader.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RequestHeader extends BsRequestHeader { private static final long serialVersionUID = 1L; private static final Logger logger = LogManager.getLogger(RequestHeader.class); private WebConfig webConfig; public String getId() { return asDocMeta().id(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java
/** * Signals that a character encoding is not supported. * @author shinsuke */ public class UnsupportedEncodingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; /** * Creates a new {@link UnsupportedEncodingRuntimeException} with the specified cause. * * @param cause * the cause */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryExpiredException.java
*/ public class DictionaryExpiredException extends RuntimeException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /** * Creates a new instance of DictionaryExpiredException. * This constructor initializes the exception to indicate that a dictionary * has expired and is no longer valid for use. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0)