Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 120 for stopping (0.03 sec)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt

                .networkResponse(networkResponse.stripBody())
                .build()
    
            networkResponse.body.close()
    
            // Update the cache after combining headers but before stripping the
            // Content-Encoding header (as performed by initContentStream()).
            cache!!.trackConditionalCacheHit()
            cache.update(cacheResponse, response)
            return response.also {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         */
        public RelatedContentHelper() {
            super();
        }
    
        private static final Logger logger = LogManager.getLogger(RelatedContentHelper.class);
    
        /**
         * Cache map storing related content configurations organized by virtual host key.
         * The outer map key is the virtual host key, and the value is a pair containing:
         * - First: Map of exact term matches (term -> content)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

         */
        protected class ProtwordsUpdater implements Closeable {
    
            /** Flag indicating if the update should be committed */
            protected boolean isCommit = false;
    
            /** Temporary file for storing updates */
            protected File newFile;
    
            /** Writer for writing to the temporary file */
            protected Writer writer;
    
            /** The item being updated */
            protected ProtwordsItem item;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RegularImmutableBiMap.java

     */
    @GwtCompatible
    @SuppressWarnings("serial") // uses writeReplace(), not default serialization
    final class RegularImmutableBiMap<K, V> extends ImmutableBiMap<K, V> {
      @SuppressWarnings("unchecked") // TODO(cpovirk): Consider storing Entry<?, ?>[] instead.
      static final RegularImmutableBiMap<Object, Object> EMPTY =
          new RegularImmutableBiMap<>(
              null, null, (Entry<Object, Object>[]) ImmutableMap.EMPTY_ENTRY_ARRAY, 0, 0);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        /**
         * Logger instance for this class.
         */
        protected static final Logger logger = LogManager.getLogger(ThumbnailManager.class);
    
        /**
         * Base directory for storing thumbnail files.
         */
        protected File baseDir;
    
        /**
         * List of available thumbnail generators.
         */
        protected final List<ThumbnailGenerator> generatorList = new ArrayList<>();
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/HttpUrl.kt

         * the encoded path will have a trailing '/'.
         *
         * Popping "/a/b/c/" yields "/a/b/". In this case the list of path segments goes from ["a",
         * "b", "c", ""] to ["a", "b", ""].
         *
         * Popping "/a/b/c" also yields "/a/b/". The list of path segments goes from ["a", "b", "c"]
         * to ["a", "b", ""].
         */
        private fun pop() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 63.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_nl.properties

    errors.not_load_from_server = Kan niet laden vanaf deze server. Oorzaak: {0}
    errors.failed_to_start_job = Kan taak {0} niet starten.
    errors.failed_to_stop_job = Kan taak {0} niet stoppen.
    errors.failed_to_download_synonym_file = Kan synoniembestand niet downloaden.
    errors.failed_to_upload_synonym_file = Kan synoniembestand niet uploaden.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       once. This reduces the expense of habitually making defensive copies at API boundaries.
     *       However, the precise conditions for skipping the copy operation are undefined.
     *   <li><b>Warning:</b> a view collection such as {@link ImmutableMap#keySet} or {@link
     *       ImmutableList#subList} may retain a reference to the entire data set, preventing it from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 21.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Joiner.java

            throw new UnsupportedOperationException("already specified useForNull");
          }
        };
      }
    
      /**
       * Returns a joiner with the same behavior as this joiner, except automatically skipping over any
       * provided null elements.
       */
      public Joiner skipNulls() {
        return new Joiner(this) {
          @Override
          @SuppressWarnings("JoinIterableIterator") // suggests infinite recursion
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 15:16:19 UTC 2025
    - 21K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

                        if (settings.getIdpSingleLogoutServiceUrl() == null) {
                            if (logger.isDebugEnabled()) {
                                logger.debug("IdP single logout service URL is not configured, skipping SLO for user: {}", samlUser);
                            }
                            return null;
                        }
                        final Auth auth = new Auth(settings, request, response);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.4K bytes
    - Viewed (1)
Back to top