Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 101 - 110 of 165 for buat (0.01 seconds)

  1. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

                        }
                        return;
                    }
                    if (logger.isDebugEnabled()) {
                        logger.debug("Message is required but was empty");
                    }
                    writeJsonResponse(response, HttpServletResponse.SC_BAD_REQUEST, createErrorResponse("Message is required"));
                    return;
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/ProtocolHelperTest.java

            assertFalse(protocolHelper.isValidFileProtocol("")); // empty
            assertFalse(protocolHelper.isValidFileProtocol("s4://bucket/path")); // similar but not s3
            assertFalse(protocolHelper.isValidFileProtocol("gcss://bucket/path")); // similar but not gcs
        }
    
        @Test
        public void test_all_file_protocols_together() {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 35.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

            // Text with comma gets quoted, but parse preserves quotes
            input = "with,comma";
            escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma"
            parsed = KuromojiCSVUtil.parse(escaped);
            assertEquals(1, parsed.length);
            assertEquals("\"" + input + "\"", parsed[0]); // Quotes are preserved
    
            // Text with quotes gets escaped quotes, but escaped quotes don't get unquoted
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/app/web/admin/log/AdminLogActionTest.java

        @Test
        public void test_security_pathTraversalWithLogExtension() {
            // These patterns attempt to access files outside the log directory
            // but must end with .log to pass isLogFilename check
    
            String sanitized1 = AdminLogAction.sanitizeFilename("../../../var/log/auth.log");
            assertEquals("/var/log/auth.log", sanitized1);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.5K bytes
    - Click Count (0)
  5. architecture/README.md

    There is some assistance in the IDE for this plus a lot of validation that is applied at build time and on CI, but it is useful to keep these constraints in mind as well.
    
    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ### Build execution model
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperty.java

        private final String containingType;
        private final String propertyName;
        private final String methodName;
        private final String methodDescriptor;
    
        /**
         * Was upgradedMethods originally, but got renamed to upgradedAccessors and then to replacedAccessors
         * can be removed once base version will be the one that also uses 'replacedAccessors'.
         */
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Aug 13 19:17:41 GMT 2024
    - 8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/JvmUtilTest.java

            assertEquals(17, JvmUtil.getJavaVersion());
    
            System.setProperty("java.version", "8.0.332");
            assertEquals(8, JvmUtil.getJavaVersion());
    
            // Edge case: version starts with 1 but not old format
            System.setProperty("java.version", "18.0.1");
            assertEquals(18, JvmUtil.getJavaVersion());
    
            // Test with extra parts
            System.setProperty("java.version", "11.0.16.1+1");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

            final String originalPath = "/original/path";
            final String customPath = "/api/v1/search";
            mockRequest.setServletPath(originalPath);
            // Contains partial match but not the exact string "SAStruts.method"
            mockRequest.setQueryString("query=test&SAStruts=value&method=execute");
            webApiRequest = new WebApiRequest(mockRequest, customPath);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java

            // Execute the job - should handle empty field name gracefully
            try {
                String result = purgeDocJob.execute();
                // The job should handle the exception internally but since QueryBuilders.rangeQuery
                // throws immediately with empty field name, we need to catch it here
                fail("Expected an exception for empty field name");
            } catch (IllegalArgumentException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 16.4K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/RateLimitHelper.java

            requestCounters.cleanUp();
            return (int) requestCounters.size();
        }
    
        /**
         * Clean up expired entries.
         * Note: Guava Cache handles expiration automatically, but this method
         * can be called to force immediate cleanup.
         */
        public void cleanup() {
            requestCounters.cleanUp();
            blockedIps.cleanUp();
            if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Dec 24 14:16:27 GMT 2025
    - 9.4K bytes
    - Click Count (0)
Back to Top