Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 417 for Handling (0.93 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            assertNotNull(result);
            assertSame(messages, result);
            assertTrue(messages.hasMessageOf(property));
        }
    
        // Test null property handling
        public void test_addErrorsFrontHeader_nullProperty() {
            try {
                messages.addErrorsFrontHeader(null);
                fail("Should throw exception for null property");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

     * This class extends XpathTransformer to provide Fess-specific document processing capabilities
     * including content extraction, metadata processing, and robots tag handling.
     */
    public class FessXpathTransformer extends XpathTransformer implements FessTransformer {
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/HttpHeaders.java

       *
       * @since 32.0.0
       */
      public static final String OBSERVE_BROWSING_TOPICS = "Observe-Browsing-Topics";
    
      /**
       * The HTTP <a
       * href="https://wicg.github.io/turtledove/#handling-direct-from-seller-signals">{@code
       * Sec-Ad-Auction-Fetch}</a> header field name.
       *
       * @since 33.0.0
       */
      public static final String SEC_AD_AUCTION_FETCH = "Sec-Ad-Auction-Fetch";
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
Back to top