Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 157 for tave (0.01 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/packaging/rpm/init.d/fess

    # Default-Stop: 0 1 6
    # Short-Description: This service manages the fess daemon
    # Description: Fess is very powerful and easily deployable Enterprise Search Server. You can install and run Fess quickly on any platforms, which have Java runtime environment. Fess is provided under Apache license.
    ### END INIT INFO
    
    #
    # init.d / servicectl compatibility (openSUSE)
    #
    if [ -f /etc/rc.status ]; then
        . /etc/rc.status
        rc_reset
    fi
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            dictionaryItem.id = Long.MIN_VALUE;
            assertEquals(Long.MIN_VALUE, dictionaryItem.getId());
        }
    
        @Test
        public void test_multipleInstances() {
            // Test that different instances have independent ID values
            TestDictionaryItem item1 = new TestDictionaryItem();
            TestDictionaryItem item2 = new TestDictionaryItem();
    
            item1.id = 100L;
            item2.id = 200L;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

                final Class<?>[] paramTypes = constructor.getParameterTypes();
                assertEquals("Constructor should have one parameter", 1, paramTypes.length);
                assertEquals("Parameter should be Context type", Context.class, paramTypes[0]);
            } catch (final NoSuchMethodException e) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/filter/LoadControlFilter.java

    import jakarta.servlet.http.HttpServletResponse;
    
    /**
     * Filter for CPU load-based request control.
     * Returns HTTP 429 (Too Many Requests) when CPU usage exceeds configurable thresholds.
     * Web and API requests have independent threshold settings.
     */
    public class LoadControlFilter implements Filter {
    
        private static final Logger logger = LogManager.getLogger(LoadControlFilter.class);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Feb 10 04:24:02 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  5. architecture/standards/0009-use-american-english.md

    ## Consequences
    
    ### Positive Consequences
    
    * **Improved consistency**: The codebase has a uniform language standard
    * **Easier onboarding**: New contributors have clear guidance on which spelling to use
    * **Better searchability**: Finding code and documentation becomes more predictable
    * **Reduced review friction**: Less time spent on spelling corrections during PR reviews
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  6. README.md

        $ mvn package     # Build the package
    
    #### 2. Start Fess Server
    
        $ unzip target/releases/fess-*.zip
        $ ./fess-*/bin/fess &
    
    Wait for Fess to be ready (this may take up to 60 seconds):
    
        $ curl -s "http://localhost:8080/api/v1/health"
    
    You should see a JSON response when Fess is ready.
    
    #### 3. Clone Test Data
    
    Required for SearchApiTests:
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Feb 14 03:19:23 GMT 2026
    - 7.8K bytes
    - Click Count (2)
  7. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                    return ".sql=text/x-sql";
                }
            });
    
            mimeTypeHelper.init();
    
            // Filename with path should still have extension extracted correctly
            try (InputStream is = new ByteArrayInputStream(SQL_REM_CONTENT.getBytes(StandardCharsets.UTF_8))) {
                assertEquals("text/x-sql", mimeTypeHelper.getContentType(is, "/path/to/script.sql"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

                public String getCanonicalLdapName(String name) {
                    return name;
                }
            });
            sambaHelper.init();
    
            // Test with Turkish locale characters that have special lowercase rules
            assertEquals("1üser", sambaHelper.getAccountId(createMockSID(1, "Üser")));
        }
    
        @Test
        public void test_getAccountId_exception_handling() throws SmbException {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.9K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/ServletRuntimeExceptionTest.java

                assertEquals(originalException, caught.getCause());
                assertTrue(caught.getMessage().contains("ServletException"));
            } catch (Exception e) {
                fail("Should have caught ServletRuntimeException");
            }
        }
    
        @Test
        public void test_serialization() {
            // Test that the serialVersionUID is properly defined
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 5.9K bytes
    - Click Count (0)
  10. .teamcity/performance-tests-ci.json

        "groups" : [ {
          "testProject" : "largeJavaMultiProject",
          "comment" : "We only test the multi-project here since for the monolithic project we would have no cache hits. This would mean we actually would test incremental compilation.",
          "coverage" : {
            "per_commit" : [ "linux" ]
          }
        } ]
      }, {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 03 21:56:33 GMT 2026
    - 32.5K bytes
    - Click Count (0)
Back to Top