Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for maximize (0.03 sec)

  1. guava/src/com/google/common/util/concurrent/Striped.java

     * small portion of these would be in use.
     *
     * <p>Prior to this class, one might be tempted to use {@code Map<K, Lock>}, where {@code K}
     * represents the task. This maximizes concurrency by having each unique key mapped to a unique
     * lock, but also maximizes memory footprint. On the other extreme, one could use a single lock for
     * all tasks, which minimizes memory footprint but also minimizes concurrency. Instead of choosing
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_de.properties

    labels.confirmPassword=Bestätigen
    labels.crawler=Crawler
    labels.crudMode=Modus
    labels.errorCountMax=Maximale Fehleranzahl
    labels.errorCountMin=Minimale Fehleranzahl
    labels.facet=Facette
    labels.geo=Geo
    labels.groups=Gruppen
    labels.hash=Hash
    labels.kuromojiFile=Kuromoji-Datei
    labels.maxSize=Maximale Größe
    labels.order=Reihenfolge
    labels.purgeSuggestSearchLogDay=Alte Vorschlagsinformationen löschen
    labels.q=Abfrage
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.5K bytes
    - Viewed (1)
  3. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        }
      }
    
      public void testSetMaximumSize() {
        // vary maximumSize wrt concurrencyLevel
    
        for (int maxSize = 1; maxSize < 100; maxSize++) {
          checkMaximumSize(1, 8, maxSize);
          checkMaximumSize(2, 8, maxSize);
          checkMaximumSize(4, 8, maxSize);
          checkMaximumSize(8, 8, maxSize);
        }
    
        checkMaximumSize(1, 8, Long.MAX_VALUE);
        checkMaximumSize(2, 8, Long.MAX_VALUE);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 110.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Sets.java

          }
    
          @Override
          int minSize() {
            int difference = minSize(set1) - maxSize(set2);
            return difference >= 0 ? difference : max(minSize(set2) - maxSize(set1), 0);
          }
    
          @Override
          int maxSize() {
            return saturatedAdd(maxSize(set1), maxSize(set2));
          }
        };
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/KeyMatchDbm.java

                false, false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnMaxSize = cci("maxSize", "maxSize", null, null, Integer.class, "maxSize", null, false, false, false,
                "Integer", 0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

      constructor(directory: File, maxSize: Long) : this(
        FileSystem.SYSTEM,
        directory.toOkioPath(),
        maxSize,
      )
    
      internal val cache =
        DiskLruCache(
          fileSystem = fileSystem,
          directory = directory,
          appVersion = VERSION,
          valueCount = ENTRY_COUNT,
          maxSize = maxSize,
          taskRunner = taskRunner,
        )
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/SetViewTest.java

      }
    
      public void testUnion_maxSize_saturated() {
        assertThat(union(setSize(Integer.MAX_VALUE), setSize(1)).maxSize())
            .isEqualTo(Integer.MAX_VALUE);
        assertThat(union(setSize(1), setSize(Integer.MAX_VALUE)).maxSize())
            .isEqualTo(Integer.MAX_VALUE);
      }
    
      public void testIntersection_minSize() {
        assertMinSize(intersection(emptySet(), emptySet()), 0);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java

        /** The term of the key match. */
        public String term;
    
        /** The query of the key match. */
        public String query;
    
        /** The max size of the key match. */
        public String maxSize;
    
        /** The boost of the key match. */
        public String boost;
    
        /** The creator of the key match. */
        public String createdBy;
    
        /** The created time of the key match. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/keymatch/CreateForm.java

        public String query;
    
        /**
         * The maximum number of results to return.
         */
        @Required
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer maxSize;
    
        /**
         * The boost score for matched results.
         */
        @Required
        @ValidateTypeFailure
        public Float boost;
    
        /**
         * The virtual host for the key match.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java

        @Override
        public void setUp() throws Exception {
            super.setUp();
            dataIndexHelper = new DataIndexHelper();
            setupMockComponents();
            // Reduce default interval to minimize test execution time
            dataIndexHelper.setCrawlingExecutionInterval(1L); // 1ms instead of 5000ms
        }
    
        private void setupMockComponents() {
            // Lightweight mock CrawlingConfigHelper
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top