Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for last_modified (0.05 sec)

  1. src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java

                public String getIndexFieldSite() {
                    return "site";
                }
    
                @Override
                public String getIndexFieldLastModified() {
                    return "last_modified";
                }
    
                @Override
                public String getIndexFieldTimestamp() {
                    return "timestamp";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 16.7K bytes
    - Viewed (0)
  2. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  3. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. src/main/config/openapi/openapi-user.yaml

                            host:
                              type: string
                              format: hostname
                              example: "fess.codelibs.org"
                            last_modified:
                              type: string
                              format: date-time
                              example: "2017-10-09T22:28:56.000Z"
                            content_length:
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/query/QueryFieldConfigTest.java

                public String getIndexFieldSite() {
                    return "site";
                }
    
                @Override
                public String getIndexFieldLastModified() {
                    return "last_modified";
                }
    
                @Override
                public String getIndexFieldTimestamp() {
                    return "timestamp";
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Set.of(), //
                    "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"asc\"}}", //
                    buildQuery("sort:timestamp.desc sort:last_modified"));
            assertQueryContext(query, Map.of(), //
                    Set.of(), //
                    "{\"timestamp\":{\"order\":\"desc\"}}{\"last_modified\":{\"order\":\"desc\"}}", //
                    buildQuery("sort:timestamp.desc sort:last_modified.desc"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  7. 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: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Expires} header field name. */
      public static final String EXPIRES = "Expires";
    
      /** The HTTP {@code Last-Modified} header field name. */
      public static final String LAST_MODIFIED = "Last-Modified";
    
      /** The HTTP {@code Link} header field name. */
      public static final String LINK = "Link";
    
      /** The HTTP {@code Location} header field name. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            final Properties prop = new Properties();
            lastModified = propertiesFile.lastModified();
            prop.load(inStream);
            properties = prop;
        }
    
        @Override
        public synchronized void load(final Reader reader) throws IOException {
            final Properties prop = new Properties();
            lastModified = propertiesFile.lastModified();
            prop.load(reader);
            properties = prop;
        }
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/log/AdminLogAction.java

            return redirect(getClass()); // no-op
        }
    
        /**
         * Gets a list of log file items for display in the admin interface.
         *
         * @return list of maps containing log file information (id, name, lastModified, size)
         */
        public static List<Map<String, Object>> getLogFileItems() {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top