Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 111 - 120 of 160 for noin (0.02 seconds)

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

  1. src/test/java/org/codelibs/fess/job/CrawlJobTest.java

            }, "keyMatchHelper");
    
            String result = crawlJob.execute();
            assertNotNull(result);
            assertTrue(result.contains("Session Id:"));
        }
    
        // Test execute method with mixed null and non-null config IDs
        @Test
        public void test_execute_mixedConfigIds() {
            // Setup test
            crawlJob = new CrawlJob() {
                @Override
                protected int getRunningJobCount() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 25K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

         *
         * @param input the input object (String[], List, or String)
         * @return joined string with elements separated by spaces, or empty string if invalid input
         */
        public static String join(final Object input) {
            String[] values = null;
            if (input instanceof String[]) {
                values = (String[]) input;
            } else if (input instanceof List) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.4K bytes
    - Click Count (1)
  3. .teamcity/mvnw.cmd

            echo Finished downloading %WRAPPER_JAR%
        )
    )
    @REM End of extension
    
    @REM Provide a "standardized" way to retrieve the CLI args that will
    @REM work with both Windows and non-Windows executions.
    set MAVEN_CMD_LINE_ARGS=%*
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 6.5K bytes
    - Click Count (0)
  4. src/main/webapp/js/jquery-3.7.1.min.js

    ==n.nodeType&&!Dt.test(d+ce.event.triggered)&&(-1<d.indexOf(".")&&(d=(h=d.split(".")).shift(),h.sort()),u=d.indexOf(":")<0&&"on"+d,(e=e[ce.expando]?e:new ce.Event(d,"object"==typeof e&&e)).isTrigger=r?2:3,e.namespace=h.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=n),t=null==t?[e]:ce.makeArray(t,[e]),c=ce.event.special[d]||{},r||!c.trigger||!1!==c.trigger.apply(n,t))){if(!r&&!c.noBubble&&!y(n)){for(s=c.delegate...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            assertTrue(fuzzyQueryBuilder.toString().contains("\"title\""));
            assertTrue(fuzzyQueryBuilder.toString().contains("\"fuzzy\""));
        }
    
        // Test convertFuzzyQuery with non-search field
        @Test
        public void test_convertFuzzyQuery_withNonSearchField() {
            QueryContext context = new QueryContext("test", false);
            Term term = new Term("unknown_field", "fuzzy");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                    thread.start();
                }
    
                // Wait for all threads to complete
                for (Thread thread : threads) {
                    try {
                        thread.join();
                    } catch (InterruptedException e) {
                        Thread.currentThread().interrupt();
                        fail("Thread interrupted");
                    }
                }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/IpAddressUtilTest.java

                // Longest sequence of zeros compressed (3 zeros at end vs 1 zero at start)
                assertEquals("2001:db8:0:1::1", method.invoke(null, "2001:0db8:0:1:0:0:0:1"));
    
                // No compression when all segments are non-zero (just remove leading zeros)
                assertEquals("2001:db8:1:2:3:4:5:6", method.invoke(null, "2001:0db8:0001:0002:0003:0004:0005:0006"));
    
                // Single zero should not be compressed
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 08:31:03 GMT 2025
    - 8.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

            }
    
            request.getParameterMap().entrySet().stream().forEach(entry -> {
                if (entry.getValue().length > 1) {
                    curlRequest.param(entry.getKey(), String.join(",", entry.getValue()));
                } else if (entry.getValue().length == 1) {
                    curlRequest.param(entry.getKey(), entry.getValue()[0]);
                }
            });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:40 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/entity/RequestParameterTest.java

            assertEquals(1, param.getValues().length);
            assertEquals("onlyValue", param.getValues()[0]);
        }
    
        @Test
        public void test_constructor_withNullAndNonNullValues() {
            // Test with mix of null and non-null values
            String name = "mixedParam";
            String[] values = { "value1", null, "value3", null };
            RequestParameter param = new RequestParameter(name, values);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

                final String expectedExtension = testCase[1];
                assertEquals("Extension for " + mimeType, expectedExtension, generator.getExtensionFromMimeType(mimeType));
            }
        }
    
        // Test non-image MIME types return empty string
        @Test
        public void test_getExtensionFromMimeType_nonImageTypes() {
            final String[] mimeTypes = { "application/pdf", "application/msword",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 27.8K bytes
    - Click Count (0)
Back to Top