Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 409 for dangling (0.07 sec)

  1. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            });
        }
    
        /**
         * Gets the action response for the specified SSO response type.
         *
         * SPNEGO authentication typically doesn't require special response handling
         * for metadata or logout operations, so this method returns null.
         *
         * @param responseType The type of SSO response requested
         * @return Always returns null for SPNEGO authentication
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/GenerateThumbnailJobTest.java

            assertNotNull(result);
            assertNotNull(thumbnailJob.sessionId);
            assertTrue(result.contains("Session Id: " + thumbnailJob.sessionId));
            // Exception handling may vary, just verify result is not null
        }
    
        // Test executeThumbnailGenerator with process failure
        public void test_executeThumbnailGenerator_processFailure() {
            thumbnailJob.numOfThreads(2);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationTest.java

            }
    
            // All threads should complete successfully
            for (boolean s : success) {
                assertTrue(s);
            }
        }
    
        @DisplayName("Test exception handling for invalid information levels")
        @ParameterizedTest
        @ValueSource(ints = { 0, 1, 2, 4, 5, 6, 8, 100, -2, -100, Integer.MIN_VALUE, Integer.MAX_VALUE })
        void testInvalidInformationLevels(int invalidLevel) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  4. docs/smb3-features/04-directory-leasing-design.md

        
        // Cache should be invalidated, new listing should include new file
        SmbFile[] updatedFiles = dir.listFiles();
        assertEquals(initialFiles.length + 1, updatedFiles.length);
    }
    ```
    
    ## 9. Error Handling
    
    ### 9.1 Cache Consistency
    ```java
    public class CacheConsistencyManager {
        public void handleInconsistency(String directoryPath, String fileName) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  5. docs/smb3-features/05-rdma-smb-direct-design.md

            if (total == 0) return 0.0;
            return (double) operationErrors.get() / total;
        }
        
        // Getters for all statistics...
    }
    ```
    
    ## 9. Error Handling and Fallback
    
    ### 9.1 RDMA Error Recovery
    ```java
    public class RdmaErrorHandler {
        public void handleRdmaError(RdmaConnection connection, Exception error) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  6. src/test/java/jcifs/SmbResourceTest.java

                    resource.setReadWrite();
                    resource.setAttributes(0x20);
                }, "Should support attribute operations");
            }
        }
    
        @Nested
        @DisplayName("Error Handling Tests")
        class ErrorHandlingTests {
    
            @Test
            @DisplayName("CIFSException should be properly declared")
            void testCIFSExceptionDeclaration() throws NoSuchMethodException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 35K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            tagDifferentAttrValue.setCss("highlight");
            tagDifferentAttrValue.setAttr("data-value", "456");
            assertFalse(tag1.equals(tagDifferentAttrValue));
    
            // Null values handling
            PrunedTag tagWithNulls = new PrunedTag("div");
            PrunedTag anotherTagWithNulls = new PrunedTag("div");
            assertTrue(tagWithNulls.equals(anotherTagWithNulls));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  8. src/test/java/jcifs/SmbTransportPoolTest.java

                // When & Then
                assertThrows(CIFSException.class, () -> transportPool.getChallenge(context, address));
            }
        }
    
        @Nested
        @DisplayName("Edge Cases and Error Handling")
        class EdgeCasesTests {
    
            @Test
            @DisplayName("Should handle null context")
            void testNullContext() {
                // Given
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  9. misc/go_android_exec/main.go

    	// If the adb subprocess somehow hangs, go test will kill this wrapper
    	// and wait for our os.Stderr (and os.Stdout) to close as a result.
    	// However, if the os.Stderr (or os.Stdout) file descriptors are
    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

    /**
     * Helper class for web and file system crawling and indexing operations.
     * Manages the crawling process for both web configurations and file configurations,
     * coordinating multiple crawler threads and handling indexing operations.
     */
    public class WebFsIndexHelper {
    
        /**
         * Default constructor.
         */
        public WebFsIndexHelper() {
            // Default constructor
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top