- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 246 for thrice (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/platform/Platform.kt
* * ### Trust Manager Extraction * * Supported on Android 2.3+ and OpenJDK 7+. There are no public APIs to recover the trust * manager that was used to create an [SSLSocketFactory]. * * Not supported by choice on JDK9+ due to access checks. * * ### Android Cleartext Permit Detection * * Supported on Android 6.0+ via `NetworkSecurityPolicy`. */ open class Platform { /** Prefix used on custom headers. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTreeConnectionTraceTest.java
SmbTreeConnectionTrace trace = Mockito.spy(new SmbTreeConnectionTrace(ctx)); doReturn(true).when(trace).isConnected(); trace.acquire(); // usageCount becomes 1 // Act & Assert: checkRelease should call isConnected() and not throw assertDoesNotThrow(trace::checkRelease); verify(trace, atLeastOnce()).isConnected(); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java
public ArtifactFactoryRequestBuilder session(Session session) { this.session = session; return this; } public ArtifactFactoryRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } public ArtifactFactoryRequestBuilder groupId(String groupId) { this.groupId = groupId; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 7.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
public ArtifactFactoryRequestBuilder session(Session session) { this.session = session; return this; } public ArtifactFactoryRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } public ArtifactFactoryRequestBuilder groupId(String groupId) { this.groupId = groupId; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionRangeResolverRequest.java
Session session; RequestTrace trace; ArtifactCoordinates artifactCoordinates; List<RemoteRepository> repositories; public VersionResolverRequestBuilder session(Session session) { this.session = session; return this; } public VersionResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/VersionResolverRequest.java
Session session; RequestTrace trace; ArtifactCoordinates artifactCoordinates; List<RemoteRepository> repositories; public VersionResolverRequestBuilder session(Session session) { this.session = session; return this; } public VersionResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java
this.session = session; return this; } @Nonnull public ArtifactDeployerRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactDeployerRequestBuilder repository(RemoteRepository repository) { this.repository = repository;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
this.session = session; return this; } @Nonnull public ArtifactResolverRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactResolverRequestBuilder coordinates(Collection<? extends ArtifactCoordinates> coordinates) { this.coordinates = coordinates;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.6K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactInstallerRequest.java
this.session = session; return this; } @Nonnull public ArtifactInstallerRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } @Nonnull public ArtifactInstallerRequestBuilder artifacts(@Nullable Collection<ProducedArtifact> artifacts) { this.artifacts = artifacts != null ? artifacts : Collections.emptyList();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java
* <li>Supports both internal session operations and client-provided trace information</li> * </ul> * * <p>For internal session operations, the trace typically contains {@code *Request} objects * that represent the current processing state. Client code can also create traces with * application-specific data to provide context when invoking session methods.</p> * * <p>This trace information is particularly useful for:</p> * <ul>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 2.9K bytes - Viewed (0)