- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 121 for ENDPOINT (0.03 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java
// In this test, we expect IOException when endpoint is blank try { conn.connect(); fail("Should throw IOException when endpoint is not set"); } catch (IOException e) { assertTrue(e.getMessage().contains("endpoint is blank")); } } /** * Test thread-safety of connect() method.Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 14.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/GeneralRange.java
} /** * Returns everything above the endpoint relative to the specified comparator, with the specified * endpoint behavior. */ static <T extends @Nullable Object> GeneralRange<T> downTo( Comparator<? super T> comparator, @ParametricNullness T endpoint, BoundType boundType) { return new GeneralRange<>(comparator, true, endpoint, boundType, false, null, OPEN); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/GeneralRange.java
} /** * Returns everything above the endpoint relative to the specified comparator, with the specified * endpoint behavior. */ static <T extends @Nullable Object> GeneralRange<T> downTo( Comparator<? super T> comparator, @ParametricNullness T endpoint, BoundType boundType) { return new GeneralRange<>(comparator, true, endpoint, boundType, false, null, OPEN); } /**
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaProvider.java
* Get supported RDMA capabilities * * @return set of capabilities supported by this provider */ Set<RdmaCapability> getSupportedCapabilities(); /** * Create RDMA connection to remote endpoint * * @param remote remote socket address * @param local local socket address, may be null for auto-binding * @return new RDMA connection instance * @throws IOException if connection creation failsRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
final String endpoint = getInitParameter("endpoint", null, String.class); if (StringUtil.isNotBlank(endpoint)) { // For fake-gcs-server or custom endpoint builder.setHost(endpoint); builder.setCredentials(NoCredentials.getInstance()); if (logger.isDebugEnabled()) { logger.debug("Using custom GCS endpoint: {}", endpoint); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
} if (StringUtil.isNotBlank(endpoint)) { // For fake-gcs-server or custom endpoint builder.setHost(endpoint); builder.setCredentials(NoCredentials.getInstance()); if (logger.isDebugEnabled()) { logger.debug("Using custom GCS endpoint: {}", endpoint); } } else {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
throw new IOException("endpoint is blank."); } try { final Builder builder = MinioClient.builder().endpoint(endpoint); if (StringUtil.isNotBlank(accessKey) && StringUtil.isNotBlank(secretKey)) { builder.credentials(accessKey, secretKey); } if (StringUtil.isNotBlank(region)) { builder.region(region);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:52:56 UTC 2025 - 11.1K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt
) { hostMapping[requested] = real } override fun createSocket(): Socket = object : Socket() { override fun connect( endpoint: SocketAddress?, timeout: Int, ) { val requested = (endpoint as InetSocketAddress) val inetSocketAddress = hostMapping[requested.address] ?: defaultAddress ?: requestedRegistered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
return; } super.init(); final String endpoint = getInitParameter("endpoint", null, String.class); if (StringUtil.isBlank(endpoint)) { throw new CrawlingAccessException( "S3 endpoint is blank. Please set the S3_ENDPOINT environment variable or endpoint parameter."); }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
final String endpoint = getInitParameter("endpoint", null, String.class); if (StringUtil.isBlank(endpoint)) { throw new CrawlingAccessException( "Storage endpoint is blank. Please set the STORAGE_ENDPOINT environment variable or endpoint parameter."); } builder.endpoint(endpoint);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20K bytes - Viewed (2)