Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 171 - 180 of 325 for numero (0.04 seconds)

  1. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

        @Required
        @Size(max = 100)
        public String docId;
    
        /** Highlight query parameters. */
        public String[] hq;
    
        /** Search query parameter for error page. */
        public String q;
    
        /** Number of results parameter for error page. */
        public String num;
    
        /** Sort parameter for error page. */
        public String sort;
    
        /** Language parameter for error page. */
        public String lang;
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java

         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the role for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the role hasn't been modified by another process.
         */
        @Required
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java

         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the label type for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the label type hasn't been modified by another process.
         */
        @Required
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/job/LogNotificationJob.java

            final List<String> docIds = new ArrayList<>();
            for (final SearchHit hit : hits) {
                final Map<String, Object> source = hit.getSourceAsMap();
                events.add(new LogNotificationEvent(((Number) source.get("timestamp")).longValue(), (String) source.get("level"),
                        (String) source.get("loggerName"), (String) source.get("message"), (String) source.get("throwable")));
                docIds.add(hit.getId());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 9.4K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/helper/AbstractConfigHelper.java

         */
        protected void waitForNext() {
            if (reloadInterval > 0) {
                ThreadUtil.sleep(reloadInterval);
            }
        }
    
        /**
         * Load the configuration.
         * @return The number of loaded configurations.
         */
        public abstract int load();
    
        /**
         * Set the interval for reloading.
         * @param reloadInterval The interval for reloading.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

    import org.junit.jupiter.api.TestInfo;
    
    public class FessMimeTypeHelperTest extends UnitFessTestCase {
    
        private static final String SQL_REM_CONTENT = "rem utldtree.sql\nrem\nCREATE TABLE test (id NUMBER);\n";
    
        private FessMimeTypeHelper mimeTypeHelper;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            mimeTypeHelper = new FessMimeTypeHelper();
    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)
  7. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorConcurrencyTest.java

                    executor.shutdown();
                    executor.awaitTermination(5, TimeUnit.SECONDS);
                }
            }
        }
    
        /**
         * Test searcher that returns configurable number of documents.
         */
        static class TestSearcher extends RankFusionSearcher {
            private final long allRecordCount;
    
            TestSearcher(long allRecordCount) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/util/DocMap.java

         */
        public DocMap(final Map<String, Object> parent) {
            this.parent = parent;
        }
    
        /**
         * Returns the number of key-value mappings in this map.
         *
         * @return the number of key-value mappings in this map
         */
        @Override
        public int size() {
            return parent.size();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/app/web/go/GoActionTest.java

            assertFalse(goAction.isFileSystemPath("SMB://server/share"));
        }
    
        @Test
        public void test_isFileSystemPath_s3_various_bucket_names() {
            // S3 bucket names can contain lowercase letters, numbers, hyphens, and periods
            assertTrue(goAction.isFileSystemPath("s3://my-bucket/file"));
            assertTrue(goAction.isFileSystemPath("s3://my.bucket/file"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/relatedcontent/EditForm.java

         * Stored as a long value representing milliseconds since epoch.
         * Used for audit trail and concurrency control.
         */
        @ValidateTypeFailure
        public Long updatedTime;
    
        /**
         * The version number of the related content configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.4K bytes
    - Click Count (0)
Back to Top