Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 409 for dangling (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/service/ElevateWordService.java

            } catch (final IOException e) {
                logger.warn("Failed to write a sugget elevate word.", e);
            }
        }
    
        /**
         * Safely retrieves a value from a list at the specified index, handling bounds checking
         * and cleaning up quoted strings.
         *
         * @param list the list to retrieve the value from
         * @param index the index of the value to retrieve
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

            assertEquals(5, sis.read());
    
            // After all data is consumed, next read throws IOException
            assertThrows(IOException.class, () -> sis.read());
        }
    
        @Test
        @DisplayName("EOF handling when stream ends mid-header")
        void eofHandlingMidHeader() throws IOException {
            // Create incomplete header (only 2 bytes instead of 4)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/oauth2-jwt.md

    ## Recap { #recap }
    
    With what you have seen up to now, you can set up a secure **FastAPI** application using standards like OAuth2 and JWT.
    
    In almost any framework handling the security becomes a rather complex subject quite quickly.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                // Should either throw exception or fail gracefully after wipe
                try {
                    digest.sign(data, 0, data.length, request, response);
                    // If no exception is thrown, accept graceful handling
                    assertTrue(true, "Sign operation after wipe should either throw exception or handle gracefully");
                } catch (RuntimeException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            options.sessionId = "test-session";
            options.name = "Test Crawl Job";
    
            // Verify the name is set
            assertEquals("Test Crawl Job", options.name);
        }
    
        // Test error handling in doCrawl
        public void test_doCrawl_withErrors() {
            // Clear any previous errors
            try {
                Field errorsField = Crawler.class.getDeclaredField("errors");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

                        if (request != null) {
                            request.setPath(dunc);
                        }
                        return loc;
                    }
    
                    // fallthrough to normal handling
                    log.debug("No tree referral but in DFS");
                }
    
                if (request != null) {
                    request.setFullUNCPath(session.getTargetDomain(), session.getTargetHost(), rfullpath);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 30.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

     * This class contains various helper methods for formatting, parsing, and manipulating data
     * in Fess web templates, including date formatting, localization, file operations, and
     * query parameter handling.
     *
     * @since 1.0
     */
    public class FessFunctions {
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FessFunctions.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.3K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/helper/ViewHelper.java

    import jakarta.servlet.ServletContext;
    import jakarta.servlet.SessionTrackingMode;
    import jakarta.servlet.http.HttpServletRequest;
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Helper class for handling view-related operations in the Fess search system.
     * This class provides utilities for content rendering, URL processing, highlighting,
     * caching, pagination, and user interface functionality.
     *
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  9. src/bufio/scan.go

    // large to fit in the [Scanner.Buffer]. When a scan stops, the reader may have
    // advanced arbitrarily far past the last token. Programs that need more
    // control over error handling or large tokens, or must run sequential scans
    // on a reader, should use [bufio.Reader] instead.
    type Scanner struct {
    	r            io.Reader // The reader provided by the client.
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed May 21 18:05:26 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/PythonJobTest.java

                if (e.getCause().getMessage() != null) {
                    assertTrue(e.getCause().getMessage().contains("Process start failed"));
                }
            }
        }
    
        // Test execute with exception handling
        public void test_execute_withException() {
            pythonJob.filename("test.py");
    
            testProcessHelper.throwException = new RuntimeException("Unexpected error");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top