Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for brace (0.4 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CharUtilTest.java

            // Test characters just outside ranges that are not valid
            assertFalse(CharUtil.isUrlChar('`')); // backtick (just before 'a')
            assertFalse(CharUtil.isUrlChar('{')); // left brace (just after 'z')
            assertFalse(CharUtil.isUrlChar('^')); // caret (before 'a' range)
            assertFalse(CharUtil.isUrlChar('|')); // pipe (not in valid set)
        }
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. CLAUDE.md

    mvn test                       # Run tests
    mvn formatter:format           # Format code
    mvn license:format             # Update license headers
    ```
    
    ### Code Style
    
    - 4 spaces (no tabs)
    - Opening brace on same line
    - Max line length: 120
    - JavaDoc required for public APIs
    - License headers required
    
    ### Testing
    
    **Structure**: `src/test/java/org/codelibs/fess/crawler/`
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/curl/Curl.java

        }
    
        /**
         * Creates a new CurlRequest with the HTTP TRACE method for the specified URL.
         *
         * @param url the URL to send the TRACE request to
         * @return a new CurlRequest object configured with the TRACE method and the specified URL
         */
        public static CurlRequest trace(final String url) {
            return new CurlRequest(Method.TRACE, url);
        }
    
        /**
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/logic/AccessContextLogic.java

            sb.append(",").append(appTypeSupplier.supply()).append(",").append(resource.getModuleName());
            final String trace = sb.toString();
            final int columnSize = 200;
            return trace.length() > columnSize ? trace.substring(0, columnSize) : trace;
        }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/DfsImpl.java

            for (final Entry<String, Map<String, CacheEntry<DfsReferralDataInternal>>> entry : domains.entrySet()) {
                log.trace("Domain " + entry.getKey());
                for (final Entry<String, CacheEntry<DfsReferralDataInternal>> entry2 : entry.getValue().entrySet()) {
                    log.trace("  Root " + entry2.getKey());
                    if (entry2.getValue().map != null) {
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 29.7K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

            String message1 = "Test with suppression enabled";
            CrawlerSystemException exception1 = constructor.newInstance(message1, true, true);
            assertNotNull(exception1);
            assertEquals(message1, exception1.getMessage());
            assertNull(exception1.getCause());
    
            // Test with suppression disabled and writable stack trace
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 20K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/curl/CurlTest.java

            // ## Note: There's no Curl.trace() factory method, but we can use the constructor ##
    
            // ## Act ##
            final CurlRequest request = new CurlRequest(Method.TRACE, "http://example.com");
    
            // ## Assert ##
            assertNotNull(request);
            assertEquals(Method.TRACE, request.method());
        }
    
        @Test
        public void test_MethodEnumValueOf() {
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 16.3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java

            this.macSigningKey = macSigningKey;
            this.signSequence = initialSequence;
            this.bypass = bypass;
    
            if (log.isTraceEnabled()) {
                log.trace("macSigningKey:");
                log.trace(Hexdump.toHexString(macSigningKey, 0, macSigningKey.length));
            }
        }
    
        /**
         * This constructor used to instance a SigningDigest object for
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ExtractException.java

         * suppression enabled or disabled, and writable stack trace enabled or disabled.
         *
         * @param message the detail message.
         * @param enableSuppression whether or not suppression is enabled or disabled.
         * @param writableStackTrace whether or not the stack trace should be writable.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 3K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java

        }
    
        /**
         * Constructs a new CrawlerSystemException with the specified detail message and controls suppression and stack trace writing.
         *
         * @param message the detail message
         * @param enableSuppression whether or not suppression is enabled
         * @param writableStackTrace whether or not the stack trace should be writable
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3K bytes
    - Viewed (0)
Back to top