Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for load32 (0.03 sec)

  1. guava/src/com/google/common/hash/LittleEndianByteArray.java

        byteArray.putLongLittleEndian(sink, offset, value);
      }
    
      /**
       * Load 4 bytes from the provided array at the indicated offset.
       *
       * @param source the input bytes
       * @param offset the offset into the array at which to start
       * @return the value found in the array in the form of a long
       */
      static int load32(byte[] source, int offset) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:49:18 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheLoader.java

     * overridden as desired.
     *
     * <p>Usage example:
     *
     * {@snippet :
     * CacheLoader<Key, Graph> loader = new CacheLoader<Key, Graph>() {
     *   public Graph load(Key key) throws AnyException {
     *     return createExpensiveGraph(key);
     *   }
     * };
     * LoadingCache<Key, Graph> cache = CacheBuilder.newBuilder().build(loader);
     * }
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/ClassLoaderUtil.java

         * </ol>
         * <p>
         * However, if both the class loader that loaded the target class and the class loader that loaded this class can be obtained,
         * and the class loader that loaded the target class is an ancestor of the class loader that loaded this class,
         * the class loader that loaded this class is returned.
         * </p>
         *
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/PropertiesUtil.java

            final InputStream in = URLUtil.openStream(url);
    
            try {
                props.load(in);
            } catch (final IOException e) {
                throw new IORuntimeException(e);
            } finally {
                CloseableUtil.close(in);
            }
        }
    
        /**
         * Loads a resource from the context class loader into the {@link Properties} (wraps exception handling).
         *
         * @param props
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/unit/TestSystemProperties.java

                    logger.debug("Loaded test system properties");
                } else {
                    logger.warn("system.properties not found in test classpath, using defaults");
                    setDefaultProperties();
                }
            } catch (IOException e) {
                logger.warn("Failed to load system.properties, using defaults", e);
                setDefaultProperties();
            }
        }
    
        private void setDefaultProperties() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

        }
    
        /**
         * Loads user information by processing through all authentication chains.
         * @param user The user template containing search criteria.
         * @return The loaded and enriched user information.
         */
        public User load(final User user) {
            User u = user;
            for (final AuthenticationChain chain : chains) {
                u = chain.load(u);
            }
            return u;
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/auth/chain/AuthenticationChain.java

         */
        boolean changePassword(String username, String password);
    
        /**
         * Loads user information from the authentication chain.
         * @param user The user template containing search criteria.
         * @return The loaded user, or null if not found.
         */
        User load(User user);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/internal/Finalizer.java

     * loader. That way, this class doesn't prevent the main class loader from getting garbage
     * collected, and this class can detect when the main class loader has been garbage collected and
     * stop itself.
     */
    public class Finalizer implements Runnable {
    
      private static final Logger logger = Logger.getLogger(Finalizer.class.getName());
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                cb.fetchFirst(ComponentUtil.getFessConfig().getPageKeymatchMaxFetchSizeAsInteger());
            });
        }
    
        /**
         * Loads KeyMatch settings from the database and builds a query map.
         *
         * @return The number of loaded KeyMatch settings.
         */
        @Override
        public int load() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheStats.java

       * #loadSuccessCount}). Multiple concurrent misses for the same key will result in a single load
       * operation. This may be incremented not in conjunction with {@code missCount} if the load occurs
       * as a result of a refresh or if the cache loader returned more items than was requested. {@code
       * missCount} may also be incremented not in conjunction with this (nor {@link #loadSuccessCount})
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
Back to top