- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 390 for greeting (0.16 sec)
-
src/test/java/jcifs/DialectVersionTest.java
assertTrue(DialectVersion.SMB302.ordinal() < DialectVersion.SMB311.ordinal()); } @Test @DisplayName("Should handle dialect version sets") void testDialectVersionSets() { // Test creating sets of dialect versions java.util.Set<DialectVersion> smb2Versions = java.util.EnumSet.of(DialectVersion.SMB202, DialectVersion.SMB210, DialectVersion.SMB300, DialectVersion.SMB302, DialectVersion.SMB311);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* </ul> * * <p><b>Test doubles</b>: If you need a {@code ListenableFuture} for your test, try a {@link * SettableFuture} or one of the methods in the {@link Futures#immediateFuture Futures.immediate*} * family. <b>Avoid</b> creating a mock or stub {@code Future}. Mock and stub implementations are * fragile because they assume that only certain methods will be called and because they often * implement subtleties of the API improperly. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/smb/DfsImplTest.java
assertNull(dfsImpl.getDc(mockContext, "anydomain.com")); } @Test void testGetDc_ConnectionFails() throws SmbAuthException { // Scenario: Transport connection fails when getting DC when(mockCredentials.getUserDomain()).thenReturn("authdomain.com"); // When transport fails to connect, getDc returns null assertNull(dfsImpl.getDc(mockContext, "anydomain.com")); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/Curl.java
* governing permissions and limitations under the License. */ package org.codelibs.curl; import java.io.File; /** * The Curl class provides a simple interface for creating HTTP requests using various HTTP methods. * It includes static methods for each HTTP method that return a CurlRequest object. * * <p>Example usage:</p> * <pre> * CurlRequest request = Curl.get("http://example.com");
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/http/Handler.java
private final CIFSContext transportContext; /** * Sets the URL stream handler factory for the environment. This * allows specification of the factory used in creating underlying * stream handlers. This can be called once per JVM instance. * * @param factory * The URL stream handler factory. */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactCoordinatesFactoryRequest.java
import org.apache.maven.api.annotations.Nonnull; import org.apache.maven.api.annotations.NotThreadSafe; import static java.util.Objects.requireNonNull; /** * A request for creating a {@link ArtifactCoordinates} object. * * @since 4.0.0 */ @Experimental @Immutable public interface ArtifactCoordinatesFactoryRequest extends Request<Session> { String getGroupId();
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java
assertEquals(expectedMessage, e.getMessage()); assertEquals(expectedCause, e.getCause()); } } public void test_multipleExceptions_differentStatusCodes() { // Test creating multiple exceptions with different status codes WebApiException exception1 = new WebApiException(400, "Bad Request"); WebApiException exception2 = new WebApiException(401, "Unauthorized");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleReconnector.java
// Create reconnect context DurableHandleReconnect reconnectCtx = new DurableHandleReconnect(info.getFileId()); // This would typically involve: // 1. Creating a new Smb2CreateRequest with reconnect context // 2. Adding lease context if needed // 3. Sending the request through the appropriate transport // 4. Processing the response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 8.5K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# This is only for the main schema. Additional schemas are unconcerned. # And ReplaceSchema task basically ignores this. # # Normally this 'except' means no getting meta data for excepted tables. # (so the tables are not existing in SchemaHTML and HistoryHTML and so on). # But you can specify the '@gen' suffix that means generate-only except.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Lists.java
* * <p>Note that even when you do need the ability to add or remove, this method provides only a * tiny bit of syntactic sugar for {@code new ArrayList<>(}{@link Arrays#asList asList}{@code * (...))}, or for creating an empty list then calling {@link Collections#addAll}. This method is * not actually very useful. */ @SafeVarargs @SuppressWarnings("NonApiType") // acts as a direct substitute for a constructor call
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.2K bytes - Viewed (0)