Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,650 for during (0.03 sec)

  1. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

            // Test that getType returns the same value consistently
            String type = "ApiKey";
            String message = "API key expired";
            InvalidAccessTokenException exception = new InvalidAccessTokenException(type, message);
    
            String firstCall = exception.getType();
            String secondCall = exception.getType();
    
            assertSame(firstCall, secondCall);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

         * @param timestamp The last modified timestamp of the file.
         */
        public StopwordsFile(final String id, final String path, final Date timestamp) {
            super(id, path, timestamp);
        }
    
        @Override
        public String getType() {
            return STOPWORDS;
        }
    
        @Override
        public String getPath() {
            return path;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

         */
        protected DictionaryFile(final String id, final String path, final Date timestamp) {
            this.id = id;
            this.path = path;
            this.timestamp = timestamp;
        }
    
        /**
         * Returns the unique identifier of this dictionary file.
         *
         * @return the dictionary file ID
         */
        public String getId() {
            return id;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    # Pattern for environment variable keys in crawling data.
    crawler.data.env.param.key.pattern=^FESS_ENV_.*
    # Whether to ignore robots.txt during crawling.
    crawler.ignore.robots.txt=false
    # Whether to ignore robots meta tags during crawling.
    crawler.ignore.robots.tags=false
    # Whether to ignore content exceptions during crawling.
    crawler.ignore.content.exception=true
    # HTTP status codes considered as failure URLs.
    crawler.failure.url.status.codes=404
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.34.md

        2. Remove the `kubeadm.alpha.kubernetes.io/cri-socket` annotation from nodes during upgrade operations.
        3. Remove the `--container-runtime-endpoint` flag from the `/var/lib/kubelet/kubeadm-flags.env` file during upgrades. ([#131981](https://github.com/kubernetes/kubernetes/pull/131981), [@HirazawaUi](https://github.com/HirazawaUi)) [SIG Cluster Lifecycle]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Aug 27 10:36:10 UTC 2025
    - 292.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.2.md

    * Add a SSHKey sync check to the master's healthz (when using SSHTunnels). ([#23167](https://github.com/kubernetes/kubernetes/pull/23167), [@cjcullen](https://github.com/cjcullen))
    * Validate minimum CPU limits to be >= 10m ([#23143](https://github.com/kubernetes/kubernetes/pull/23143), [@vishh](https://github.com/vishh))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Service.java

       * they were registered.
       *
       * <p>RuntimeExceptions thrown by a listener will be caught and logged. Any exception thrown
       * during {@code Executor.execute} (e.g., a {@code RejectedExecutionException}) will be caught and
       * logged.
       *
       * @param listener the listener to run when the service changes state is complete
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/entity/QueryContext.java

         * @param text The query text to highlight.
         */
        public void addHighlightedQuery(final String text) {
            if (highlightedQuerySet != null) {
                highlightedQuerySet.add(text);
            }
        }
    
        /**
         * Gets the processed query string.
         * @return The query string.
         */
        public String getQueryString() {
            return queryString;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/ProtocolHelper.java

        protected String[] webProtocols = StringUtil.EMPTY_STRINGS;
    
        /** Array of supported file protocols with colon suffix (e.g., "file:", "ftp:") */
        protected String[] fileProtocols = StringUtil.EMPTY_STRINGS;
    
        /**
         * Default constructor for ProtocolHelper.
         * Initializes the helper with empty protocol arrays that will be populated during init().
         */
        public ProtocolHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt

     */
    class OkHttpClientTestRule :
      BeforeEachCallback,
      AfterEachCallback {
      private val clientEventsList = mutableListOf<String>()
      private var testClient: OkHttpClient? = null
      private var uncaughtException: Throwable? = null
      private lateinit var testName: String
      private var defaultUncaughtExceptionHandler: Thread.UncaughtExceptionHandler? = null
      private var taskQueuesWereIdle: Boolean = false
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 30 21:28:20 UTC 2025
    - 10.5K bytes
    - Viewed (0)
Back to top