Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 107 for refresh (0.35 sec)

  1. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          Map<K, V> map = new HashMap<K, V>();
          for (K key : keys) {
            map.put(key, localCache.getOrLoad(key));
          }
          return ImmutableMap.copyOf(map);
        }
    
        @Override
        public void refresh(K key) {
          throw new UnsupportedOperationException();
        }
      }
    
      /**
       * LinkedHashMap that enforces it's maximum size and logs events in a StatsCounter object and an
       * optional RemovalListener.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 27 19:19:19 GMT 2024
    - 21.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/HttpHeaders.java

      /** The HTTP {@code Proxy-Authenticate} header field name. */
      public static final String PROXY_AUTHENTICATE = "Proxy-Authenticate";
      /** The HTTP {@code Refresh} header field name. Non-standard header supported by most browsers. */
      public static final String REFRESH = "Refresh";
      /**
       * The HTTP <a href="https://www.w3.org/TR/reporting/">{@code Report-To}</a> header field name.
       *
       * @since 27.1
       */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                }
            });
    
            if (!idList.isEmpty()) {
                thumbnailQueueBhv.queryDelete(cb -> {
                    cb.query().setId_InScope(idList);
                });
                thumbnailQueueBhv.refresh();
            }
            return idList.size();
        }
    
        protected void process(final FessConfig fessConfig, final ThumbnailQueue entity) {
            final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          return perms;
        }
    
        @Override
        public boolean implies(ProtectionDomain pd, Permission p) {
          return perms.implies(p);
        }
    
        @Override
        public void refresh() {}
      }
    
      /** Returns a policy containing all the permissions we ever need. */
      public static Policy permissivePolicy() {
        return new AdjustablePolicy
        // Permissions j.u.c. needs directly
        (
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 37.7K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                return (T) this;
            }
            return null;
        }
    
    
        @Override
        public Subject getSubject () {
            return null;
        }
    
    
        @Override
        public void refresh () throws CIFSException {}
    
    
        /**
         * 
         * {@inheritDoc}
         *
         * @see jcifs.smb.CredentialsInternal#createContext(jcifs.CIFSContext, java.lang.String, java.lang.String, byte[],
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeConnection.java

            try ( SmbSessionImpl treesess = t.getSession() ) {
                if ( treesess.getCredentials().isAnonymous() || treesess.getCredentials().isGuest() ) {
                    // refresh anonymous session or fallback to anonymous from guest login
                    try ( SmbSessionInternal s = trans
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        public void reloadConfiguration() {
            reloadConfiguration(true);
        }
    
        public void reloadConfiguration(final boolean resetJobs) {
            ComponentUtil.getSearchEngineClient().refresh();
    
            ComponentUtil.getSuggestHelper().init();
            ComponentUtil.getPopularWordHelper().init();
    
            ComponentUtil.getLabelTypeHelper().update();
            ComponentUtil.getPathMappingHelper().update();
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  8. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

          return perms;
        }
    
        public boolean implies(ProtectionDomain pd, Permission p) {
          return perms.implies(p);
        }
    
        public void refresh() {}
      }
    
      /** Returns a policy containing all the permissions we ever need. */
      public static Policy permissivePolicy() {
        return new AdjustablePolicy
        // Permissions j.u.c. needs directly
        (
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 37.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_REINDEX_requests_per_second = "index.reindex.requests_per_second";
    
        /** The key of the configuration. e.g. false */
        String INDEX_REINDEX_REFRESH = "index.reindex.refresh";
    
        /** The key of the configuration. e.g. 1m */
        String INDEX_REINDEX_TIMEOUT = "index.reindex.timeout";
    
        /** The key of the configuration. e.g. 5m */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  10. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          LocalCache<String, String> cache = makeLocalCache(builder, loader);
    
          assertThat(cache.getOrLoad("test")).isEqualTo("testLoad");
    
          ticker.advance(10, MILLISECONDS); // so that the next call will trigger refresh
          assertThat(cache.getOrLoad("test")).isEqualTo("testLoad");
          reloadStarted.await();
          ticker.advance(500, MILLISECONDS); // so that the entry expires during the reload
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
Back to top