- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 90 for closeable (0.05 sec)
-
mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt
import assertk.assertions.isGreaterThanOrEqualTo import assertk.assertions.isNotEqualTo import assertk.assertions.isNotNull import assertk.assertions.isNull import java.io.BufferedReader import java.io.Closeable import java.io.IOException import java.io.InputStreamReader import java.net.ConnectException import java.net.HttpURLConnection import java.net.InetAddress import java.net.ProtocolException
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Aug 03 22:38:00 UTC 2025 - 28K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
return instanceCount; } public static void resetInstanceCount() { instanceCount = 0; } } /** * Closeable test component for testing AutoCloseable resource handling */ public static class CloseableTestComponent implements AutoCloseable { private static AtomicInteger instanceCounter = new AtomicInteger(0);Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 13:07:01 UTC 2025 - 36.7K bytes - Viewed (0) -
okhttp/api/android/okhttp.api
} public final class okhttp3/MultipartReader : java/io/Closeable { public fun <init> (Lokhttp3/ResponseBody;)V public fun <init> (Lokio/BufferedSource;Ljava/lang/String;)V public final fun boundary ()Ljava/lang/String; public fun close ()V public final fun nextPart ()Lokhttp3/MultipartReader$Part; } public final class okhttp3/MultipartReader$Part : java/io/Closeable { public fun <init> (Lokhttp3/Headers;Lokio/BufferedSource;)VRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 70.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
assertTrue(SmbResource.class.isInterface(), "Should be an interface"); assertTrue(AutoCloseable.class.isAssignableFrom(SmbResource.class), "Should be closeable for resource management"); } @Test @DisplayName("SmbResource should support CIFS file operations") void testCIFSFileOperations() throws CIFSException { // Given
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.Closeable; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream;
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
gradle/wrapper/gradle-wrapper.jar
safePathName(String); } org/gradle/internal/file/locking/ExclusiveFileAccessM.class package org.gradle.internal.file.locking; public final class ExclusiveFileAccessM { public void ExclusiveFileAccessM(); public static void maybeCloseQuietly(java.io.Closeable); } org/gradle/util/internal/WrapperDistributionU.class package org.gradle.util.internal; public abstract class WrapperDistributionU { public static java.net.URI convertDistributionU(java.io.File, String); } org/gradle/wrapper/BootstrapMainStarter$1.class...Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Oct 30 01:56:29 UTC 2025 - 44.6K bytes - Viewed (1) -
okhttp/src/androidMain/baseline-prof.txt
HSPLkotlin/internal/PlatformImplementations;-><init>()V HSPLkotlin/internal/PlatformImplementations;->defaultPlatformRandom()Lkotlin/random/Random; HSPLkotlin/internal/PlatformImplementationsKt;-><clinit>()V HSPLkotlin/io/CloseableKt;->closeFinally(Ljava/io/Closeable;Ljava/lang/Throwable;)V HSPLkotlin/jvm/internal/ArrayIterator;-><init>([Ljava/lang/Object;)V HSPLkotlin/jvm/internal/ArrayIterator;->hasNext()Z HSPLkotlin/jvm/internal/ArrayIterator;->next()Ljava/lang/Object;
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Mon Dec 30 23:28:56 UTC 2024 - 127.9K bytes - Viewed (1) -
docs/changelogs/changelog_3x.md
logging interceptor. * Fix: Don't eagerly release pools on cache hits. * New: Make OkHttp OSGi ready. * New: Add already-implemented interfaces Closeable and Flushable to the cache. ## Version 3.0.0-RC1 _2016-01-02_ OkHttp 3 is a major release focused on API simplicity and consistency. The API
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sun Feb 06 14:55:54 UTC 2022 - 50.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/CredentialsInternal.java
* * This interface provides internal methods for managing * and accessing SMB authentication credentials. * * @author mbechler */ public interface CredentialsInternal extends Cloneable, Credentials { /** * Create a copy of the credentials. * @return a copy of the credentials */ CredentialsInternal clone(); /** * Create an SSP context for authentication.Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Case.kt
* single story. This class is used reflectively with Moshi to parse stories. */ data class Case( val seqno: Int = 0, val wire: ByteString? = null, val headers: List<Map<String, String>>, ) : Cloneable { val headersList: List<Header> get() { val result = mutableListOf<Header>() for (inputHeader in headers) { val (key, value) = inputHeader.entries.iterator().next()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Dec 23 10:26:25 UTC 2023 - 1.3K bytes - Viewed (0)