Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 61 - 70 of 249 for _clear (0.06 seconds)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

        @Test
        public void test_doCrawl_withErrors() {
            // Clear any previous errors
            try {
                Field errorsField = Crawler.class.getDeclaredField("errors");
                errorsField.setAccessible(true);
                Queue<String> errors = (Queue<String>) errorsField.get(null);
                errors.clear();
            } catch (Exception e) {
                // Ignore if field doesn't exist
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

        }
    
        /**
         * Creates an unclear intent result when intent cannot be determined.
         *
         * @param reasoning the detection reasoning
         * @return the unclear intent result
         */
        public static IntentDetectionResult unclear(final String reasoning) {
            return new IntentDetectionResult(ChatIntent.UNCLEAR, null, null, reasoning);
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals(0, indexingHelper.deleteOldDocuments(client, docList));
            assertEquals(0, docList.size());
            assertEquals(0, deletedDocIdList.size());
    
            docList.clear();
            deletedDocIdList.clear();
            docList.add(new HashMap<>(Map.of(//
                    "config_id", "W01", //
                    "doc_id", "1", //
                    "url", "http://test.com/001"//
            )));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 29.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/llm/ChatIntentTest.java

            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("unclear"));
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("UNCLEAR"));
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue("Unclear"));
        }
    
        @Test
        public void test_fromValue_null() {
            // Defaults to UNCLEAR when value is null
            assertEquals(ChatIntent.UNCLEAR, ChatIntent.fromValue(null));
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/app/pager/KuromojiPagerTest.java

    public class KuromojiPagerTest extends UnitFessTestCase {
    
        public void test_KuromojiPager() {
            KuromojiPager kuromojiPager = new KuromojiPager();
    
            kuromojiPager.clear();
            assertEquals(0, kuromojiPager.getAllRecordCount());
            assertEquals(0, kuromojiPager.getAllPageCount());
            assertEquals(false, kuromojiPager.isExistPrePage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/app/pager/ProtwordsPagerTest.java

    public class ProtwordsPagerTest extends UnitFessTestCase {
    
        public void test_ProtwordsPager() {
            ProtwordsPager protwordsPager = new ProtwordsPager();
    
            protwordsPager.clear();
            assertEquals(0, protwordsPager.getAllRecordCount());
            assertEquals(0, protwordsPager.getAllPageCount());
            assertEquals(false, protwordsPager.isExistPrePage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/app/pager/StopwordsPagerTest.java

    public class StopwordsPagerTest extends UnitFessTestCase {
    
        public void test_StopwordsPager() {
            StopwordsPager stopwordsPager = new StopwordsPager();
    
            stopwordsPager.clear();
            assertEquals(0, stopwordsPager.getAllRecordCount());
            assertEquals(0, stopwordsPager.getAllPageCount());
            assertEquals(false, stopwordsPager.isExistPrePage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3K bytes
    - Click Count (0)
  8. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

        width: 100%;
      }
    
      .daterangepicker.single .drp-calendar.left {
        clear: none;
      }
    
      .daterangepicker.single .ranges, .daterangepicker.single .drp-calendar {
        float: left;
      }
    
      .daterangepicker {
        direction: ltr;
        text-align: left;
      }
    
      .daterangepicker .drp-calendar.left {
        clear: left;
        margin-right: 0;
      }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 7.5K bytes
    - Click Count (0)
  9. .github/ISSUE_TEMPLATE/40_contributor_documentation.yml

            If you need help with Gradle or have a usage question, please reach [our community](http://help.gradle.org/) instead of creating an issue.
    
            If you found a clear typo, please open a PR with a fix instead of opening an issue.
    
      - type: dropdown
        id: issue-type
        attributes:
          label: Issue type
          options:
            - Wrong or misleading information
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 15 10:01:01 GMT 2024
    - 1.6K bytes
    - Click Count (0)
  10. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt

                try {
                    unit.close()
                } catch (ex: Exception) {
                    errors.add(ex)
                }
            }
            openJavaCompilationUnitsByFile.clear()
            openKotlinCompilationUnitsByRoot.clear()
            if (errors.isNotEmpty()) {
                throw Exception("Sources repository did not close cleanly").apply {
                    errors.forEach(this::addSuppressed)
                }
            }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Apr 28 14:56:52 GMT 2025
    - 4.1K bytes
    - Click Count (0)
Back to Top