Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 201 for _clear (0.05 seconds)

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

  1. src/test/java/org/codelibs/fess/app/pager/PathMapPagerTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class PathMapPagerTest extends UnitFessTestCase {
    
        public void test_PathMapPager() {
            PathMapPager pathMapPager = new PathMapPager();
    
            pathMapPager.clear();
            assertEquals(0, pathMapPager.getAllRecordCount());
            assertEquals(0, pathMapPager.getAllPageCount());
            assertEquals(false, pathMapPager.isExistPrePage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractEntity.java

        }
    
        public void mymodifyPropertyCancel(String propertyName) {
            __modifiedProperties.remove(propertyName);
        }
    
        public void clearModifiedInfo() {
            __modifiedProperties.clear();
        }
    
        public boolean hasModification() {
            return !__modifiedProperties.isEmpty();
        }
    
        protected EntityModifiedProperties newModifiedProperties() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. .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)
  9. 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)
  10. src/test/java/org/codelibs/fess/app/pager/ReqHeaderPagerTest.java

    public class ReqHeaderPagerTest extends UnitFessTestCase {
    
        public void test_ReqHeaderPager() {
            ReqHeaderPager reqHeaderPager = new ReqHeaderPager();
    
            reqHeaderPager.clear();
            assertEquals(0, reqHeaderPager.getAllRecordCount());
            assertEquals(0, reqHeaderPager.getAllPageCount());
            assertEquals(false, reqHeaderPager.isExistPrePage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 3.2K bytes
    - Click Count (0)
Back to Top