Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for last_modified (0.4 sec)

  1. src/main/java/org/codelibs/fess/ds/AbstractDataStore.java

            // title
            // content
            // cache
            // digest
            // host
            // site
            // url
            // anchor
            // content_length
            // last_modified
            // id
            // virtual_host
            defaultDataMap.put(fessConfig.getIndexFieldVirtualHost(),
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                final Date lastModified = FessFunctions.parseDate(lastModifiedObj.toString());
                if (lastModified != null) {
                    return lastModified;
                }
            } else if (lastModifiedObj instanceof final String[] lastModifieds && lastModifieds.length > 0) {
                final Date lastModified = FessFunctions.parseDate(lastModifieds[0]);
                if (lastModified != null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

        /**
         * Field name for URL.
         */
        protected static final String URL = "url";
    
        /**
         * Field name for last modified timestamp.
         */
        protected static final String LAST_MODIFIED = "lastModified";
    
        /**
         * Field name for creation time timestamp.
         */
        protected static final String CREATE_TIME = "createTime";
    
        /**
         * Document type.
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:40:57 UTC 2025
    - 34.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. has_cache */
        String INDEX_FIELD_has_cache = "index.field.has_cache";
    
        /** The key of the configuration. e.g. last_modified */
        String INDEX_FIELD_last_modified = "index.field.last_modified";
    
        /** The key of the configuration. e.g. anchor */
        String INDEX_FIELD_ANCHOR = "index.field.anchor";
    
        /** The key of the configuration. e.g. segment */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  5. src/main/resources/fess_config.properties

    # Field name for language in the index.
    index.field.lang=lang
    # Field name for cache status in the index.
    index.field.has_cache=has_cache
    # Field name for last modified date in the index.
    index.field.last_modified=last_modified
    # Field name for anchor in the index.
    index.field.anchor=anchor
    # Field name for segment in the index.
    index.field.segment=segment
    # Field name for role in the index.
    index.field.role=role
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            // last_modified
            final Date lastModified = responseData.getLastModified();
            if (lastModified != null) {
                putResultDataBody(dataMap, fessConfig.getIndexFieldLastModified(), lastModified);
                // timestamp
                putResultDataBody(dataMap, fessConfig.getIndexFieldTimestamp(), lastModified);
            } else {
                // timestamp
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Dec 12 13:58:40 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/storage/StorageItem.java

         */
        public StorageItem(final String name, final String path, final boolean directory, final long size, final ZonedDateTime lastModified,
                final String encodedId) {
            this.name = name;
            this.path = path;
            this.directory = directory;
            this.size = size;
            this.lastModified = lastModified;
            this.encodedId = encodedId;
        }
    
        /**
         * Returns the name of the item.
         *
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/storage/S3StorageClient.java

                        final String fileName = getName(objectKey);
                        final ZonedDateTime lastModified =
                                s3Object.lastModified() != null ? s3Object.lastModified().atZone(java.time.ZoneId.systemDefault()) : null;
                        items.add(new StorageItem(fileName, prefix, false, s3Object.size(), lastModified, encodeId(objectKey)));
                    }
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/gcs/HandlerTest.java

            Handler.GcsURLConnection conn = (Handler.GcsURLConnection) handler.openConnection(url);
    
            // Should return 0 when auto-connect fails due to missing project ID
            long lastModified = conn.getLastModified();
            assertEquals(0, lastModified);
        }
    
        /**
         * Test that getDate() delegates to getLastModified().
         */
        public void test_getDate_delegatesToGetLastModified() throws Exception {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/net/protocol/storage/HandlerTest.java

            Handler.StorageURLConnection conn = (Handler.StorageURLConnection) handler.openConnection(url);
    
            // Should return 0 when auto-connect fails due to missing endpoint
            long lastModified = conn.getLastModified();
            assertEquals(0, lastModified);
        }
    
        /**
         * Test that getDate() delegates to getLastModified().
         */
        public void test_getDate_delegatesToGetLastModified() throws Exception {
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 14.4K bytes
    - Viewed (0)
Back to top