Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for max_age (1.83 sec)

  1. src/main/resources/fess_config.properties

    cookie.search.parameter.secure=
    # Max-Age (in seconds) for the search parameter cookie. Use -1 for session-only cookies.
    cookie.search.parameter.max_age=60
    # Domain attribute for the search parameter cookie. Set to the domain scope you want the cookie to be available on (e.g., example.com).
    cookie.search.parameter.domain=
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String COOKIE_SEARCH_PARAMETER_SECURE = "cookie.search.parameter.secure";
    
        /** The key of the configuration. e.g. 60 */
        String COOKIE_SEARCH_PARAMETER_max_age = "cookie.search.parameter.max_age";
    
        /** The key of the configuration. e.g.  */
        String COOKIE_SEARCH_PARAMETER_DOMAIN = "cookie.search.parameter.domain";
    
        /** The key of the configuration. e.g. / */
    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/java/org/codelibs/fess/helper/RoleQueryHelper.java

        }
    
        /**
         * Sets the maximum age of the role information in seconds.
         * @param maxAge The maximum age of the role information in seconds.
         */
        public void setMaxAge(final long maxAge) {
            this.maxAge = maxAge;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/RoleQueryHelperTest.java

                @Override
                protected long getCurrentTime() {
                    return System.currentTimeMillis();
                }
            };
            roleQueryHelper.maxAge = 60; // 1 minute
    
            Set<String> roleSet = new HashSet<>();
            // Create timestamp that's 2 minutes old
            long expiredTimestamp = System.currentTimeMillis() / 1000 - 120;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt

        assertThat(cookie.value).isEqualTo("android")
        assertThat(cookie.comment).isNull()
        assertThat(cookie.commentURL).isNull()
        assertThat(cookie.discard).isFalse()
        assertThat(cookie.maxAge).isGreaterThan(100000000000L)
        assertThat(cookie.path).isEqualTo("/path")
        assertThat(cookie.secure).isTrue()
        assertThat(cookie.version).isEqualTo(0)
      }
    
      @Test
      fun testRfc2109Response() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_fr.properties

    errors.failed_to_upload_badword_file = Échec du téléversement d'un fichier de mots incorrects.
    errors.failed_to_download_mapping_file = Échec du téléchargement d'un fichier de mappage.
    errors.failed_to_upload_mapping_file = Échec du téléversement d'un fichier de mappage.
    errors.invalid_kuromoji_token={0} n'est pas valide en tant que jeton.
    errors.invalid_kuromoji_segmentation=Le nombre de segmentations pour {0} et {1} est différent.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_fr.properties

    labels.log_level=Niveau de journalisation
    labels.csv_file_encoding=Encodage du fichier CSV
    labels.notification_to=E-mail de notification
    labels.pathmap_configuration=Mappage de chemin
    labels.pathmap_title_details=Mappage de chemin
    labels.disabled=Désactivé
    labels.pathmap_pt_crawling=Exploration
    labels.pathmap_pt_displaying=Affichage
    labels.pathmap_pt_both=Exploration/Affichage
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/DocList.java

     * This class extends ArrayList to hold document maps while tracking content size
     * and processing time metrics. It's used throughout the Fess search system to
     * manage collections of search results and crawled documents.
     *
     */
    public class DocList extends ArrayList<Map<String, Object>> {
    
        /** Serial version UID for serialization */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

    import org.codelibs.fess.Constants;
    import org.dbflute.optional.OptionalThing;
    
    /**
     * Utility class for managing field configurations with parameter mappings.
     * This class provides functionality to retrieve and manage field-specific configurations
     * from a parameter map.
     */
    public class FieldConfigs {
    
        /**
         * Map containing field names as keys and their corresponding configuration values as values.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/service/FailureUrlService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing failure URLs that occur during web crawling.
     * Provides functionality to store, retrieve, and manage failed crawling attempts
     * with their associated error information.
     */
    public class FailureUrlService {
    
        /** Logger instance for this class */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top