Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 183 for machine (0.06 sec)

  1. CHANGELOG/CHANGELOG-1.26.md

    - Mark Job onPodConditions as optional in pod failure policy ([#120210](https://github.com/kubernetes/kubernetes/pull/120210), [@mimowo](https://github.com/mimowo)) [SIG API Machinery and Apps]
    
    ### Feature
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/MapRetrievalCache.java

    import static com.google.common.base.Preconditions.checkNotNull;
    
    import java.util.Map;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link MapIteratorCache} that adds additional caching. In addition to the caching provided by
     * {@link MapIteratorCache}, this structure caches values for the two most recently retrieved keys.
     *
     * @author James Sexton
     */
    final class MapRetrievalCache<K, V> extends MapIteratorCache<K, V> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        /** Number of results per page. */
        protected int pageSize;
    
        /** Current page number being displayed. */
        protected int currentPageNumber;
    
        /** Total number of records matching the search query. */
        protected long allRecordCount;
    
        /** Relation type for the record count (e.g., "eq", "gte"). */
        protected String allRecordCountRelation;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/cache/CacheBuilder.java

    /**
     * A builder of {@link LoadingCache} and {@link Cache} instances.
     *
     * <h2>Prefer <a href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a> over Guava's caching
     * API</h2>
     *
     * <p>The successor to Guava's caching API is <a
     * href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a>. Its API is designed to make it a
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

         * @param argTypes
         *            The parameter types array
         * @return The {@link Constructor} object for the {@code public} constructor matching the specified {@code argTypes}
         * @throws NoSuchConstructorRuntimeException
         *             If a matching constructor is not found
         * @see Class#getConstructor(Class...)
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 25.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/service/FessAppService.java

         */
        public FessAppService() {
            // Default constructor
        }
    
        /**
         * Wraps a query string with wildcard characters to enable partial matching.
         * This method ensures that the query string is surrounded by asterisks (*)
         * to support prefix and suffix matching in search operations.
         *
         * @param query the query string to wrap with wildcards
         * @return the wrapped query string with leading and trailing asterisks
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         * Gets JAR files from the WEB-INF/lib directory that start with the specified prefix.
         *
         * @param namePrefix the prefix that JAR file names should start with
         * @return an array of File objects representing matching JAR files, or empty array if none found
         */
        public static File[] getJarFiles(final String namePrefix) {
            final ServletContext context = LaServletContextUtil.getServletContext();
            if (context == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records matching the search criteria.
         *
         * @return The total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records matching the search criteria.
         *
         * @param allRecordCount The total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. gradle.properties

    org.gradle.caching=true
    org.gradle.parallel=true
    
    android.useAndroidX=true
    kotlin.mpp.applyDefaultHierarchyTemplate=false
    
    androidBuild=false
    graalBuild=false
    loomBuild=false
    containerTests=false
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 240 bytes
    - Viewed (0)
  10. docs/changelogs/changelog_2x.md

     *  Fix: `OkApacheClient` now allows an empty `PUT` and `POST`.
     *  Fix: Websockets no longer rebuffer socket streams.
     *  Fix: Websockets are now better at handling close frames.
     *  Fix: Content type matching is now case insensitive.
     *  Fix: `Vary` headers are not lost with `android.net.http.HttpResponseCache`.
     *  Fix: HTTP/2 wasn't enforcing stream timeouts when writing the underlying
        connection. Now it is.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
Back to top