- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 313 for successful (0.09 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/DefaultResponseProcessor.java
} /** * Gets the successful HTTP codes. * * @return the successful HTTP codes */ public int[] getSuccessfulHttpCodes() { return successfulHttpCodes; } /** * Sets the successful HTTP codes. * * @param successfulHttpCodes the successful HTTP codes to set */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/jcifs/smb/NetServerEnumIteratorTest.java
// Mock successful response when(treeHandle.send(any(), any(), (RequestParam[]) any())).thenAnswer(invocation -> { return invocation.getArgument(1); }); // When: Create iterator NetServerEnumIterator iterator = new NetServerEnumIterator(parent, treeHandle, "*", 0, null); // Then: Should create successfully assertNotNull(iterator);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.8K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrPolicyHandleTest.java
void testClose_Successful() throws IOException { // Test case: close() when opened and successful MsrpcSamrCloseHandle String server = "testServer"; int access = 123; // Setup for successful constructor doNothing().when(mockHandle).sendrecv(any(MsrpcSamrConnect4.class)); // Setup for successful close
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
requiredConfirmationCode = "final", init = { id(FINAL_RELEASE_BUILD_CONFIGURATION_ID) name = "Release - Final" description = "Promotes the latest successful change on 'release' as a new release" }, ) class PublishReleaseCandidate( branch: VersionedSettingsBranch, ) : PublishRelease( promotedBranch = branch.branchName,
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Jul 24 03:08:48 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
RangeQueryBuilder rangeQuery = (RangeQueryBuilder) deleteQuery; assertEquals("expires", rangeQuery.fieldName()); assertEquals("now", rangeQuery.to()); // Assert result is empty when successful assertEquals("", result); } public void test_execute_withException() { // Create mock SearchEngineClient that throws exception searchEngineClient = new SearchEngineClient() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
HandleGuid guid = new HandleGuid(); // Create handle info with empty file ID (will be populated after successful create response) HandleInfo info = new HandleInfo(path, guid, new byte[16], type, timeout, leaseKey); lock.writeLock().lock(); try { handles.put(path, info);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
/** * Tests for the {@link ASN1Util} class. */ class ASN1UtilTest { // --- as(Class, Object) --- @Test void testAs_Object_Success() throws PACDecodingException { // Test successful casting String expected = "test string"; Object obj = expected; String result = ASN1Util.as(String.class, obj); assertSame(expected, result); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/SamrDomainHandleTest.java
} @Test void constructor_shouldOpenDomainSuccessfully() throws IOException { // Arrange int access = 0x01; // Example access value // Simulate successful RPC call doAnswer(invocation -> { MsrpcSamrOpenDomain rpc = invocation.getArgument(0); rpc.retval = 0; // Success return null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameQueryResponseTest.java
@Test void readRDataWireFormat_shouldSetNbtAddress_whenAddressIsNonZero_groupNameFalse_nodeTypeZero() throws NoSuchFieldException, IllegalAccessException { // Prepare superclass fields for successful parsing setSuperclassFieldsForSuccessfulParsing(); byte[] src = new byte[10]; int srcIndex = 0; // Simulate groupName = false (0x00), nodeType = 0 (0x00) -> src[srcIndex] = 0x00
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessUnregisterResponse.java
public WitnessUnregisterResponse() { // Default constructor } private int returnCode; private String error; /** * Checks if the unregistration was successful. * * @return true if successful */ public boolean isSuccess() { return returnCode == 0; } /** * Gets a human-readable error description. * * @return the error description
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2K bytes - Viewed (0)