Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for maxWeight (0.08 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/cache/LocalCache.java

          }
          if (weigher != OneWeigher.INSTANCE) {
            Object unused = builder.weigher(weigher);
            if (maxWeight != UNSET_INT) {
              builder.maximumWeight(maxWeight);
            }
          } else {
            if (maxWeight != UNSET_INT) {
              builder.maximumSize(maxWeight);
            }
          }
          if (ticker != null) {
            builder.ticker(ticker);
          }
          return builder;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 143.5K bytes
    - Click Count (0)
  2. guava/src/com/google/common/cache/LocalCache.java

          }
          if (weigher != OneWeigher.INSTANCE) {
            Object unused = builder.weigher(weigher);
            if (maxWeight != UNSET_INT) {
              builder.maximumWeight(maxWeight);
            }
          } else {
            if (maxWeight != UNSET_INT) {
              builder.maximumSize(maxWeight);
            }
          }
          if (ticker != null) {
            builder.ticker(ticker);
          }
          return builder;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 148.9K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        CacheTesting.processPendingNotifications(cache);
        assertThat(removalListener.getCount()).isEqualTo(MAX_SIZE);
        CacheTesting.checkValidState(cache);
      }
    
      /**
       * With an unlimited-size cache with maxWeight of 0, entries weighing 0 should still be cached.
       * Entries with positive weight should not be cached (nor dump existing cache).
       */
      public void testEviction_maxWeight_zero() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        CacheTesting.processPendingNotifications(cache);
        assertThat(removalListener.getCount()).isEqualTo(MAX_SIZE);
        CacheTesting.checkValidState(cache);
      }
    
      /**
       * With an unlimited-size cache with maxWeight of 0, entries weighing 0 should still be cached.
       * Entries with positive weight should not be cached (nor dump existing cache).
       */
      public void testEviction_maxWeight_zero() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 15K bytes
    - Click Count (0)
  5. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(localCacheTwo.keyStrength).isEqualTo(localCacheOne.keyStrength);
        assertThat(localCacheTwo.valueEquivalence).isEqualTo(localCacheOne.valueEquivalence);
        assertThat(localCacheTwo.maxWeight).isEqualTo(localCacheOne.maxWeight);
        assertThat(localCacheTwo.weigher).isEqualTo(localCacheOne.weigher);
        assertThat(localCacheTwo.expireAfterAccessNanos)
            .isEqualTo(localCacheOne.expireAfterAccessNanos);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 114.9K bytes
    - Click Count (0)
  6. guava-tests/test/com/google/common/cache/LocalCacheTest.java

        assertThat(localCacheTwo.keyStrength).isEqualTo(localCacheOne.keyStrength);
        assertThat(localCacheTwo.valueEquivalence).isEqualTo(localCacheOne.valueEquivalence);
        assertThat(localCacheTwo.maxWeight).isEqualTo(localCacheOne.maxWeight);
        assertThat(localCacheTwo.weigher).isEqualTo(localCacheOne.weigher);
        assertThat(localCacheTwo.expireAfterAccessNanos)
            .isEqualTo(localCacheOne.expireAfterAccessNanos);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 18 18:06:14 GMT 2026
    - 116.4K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    rseInt(d[0],10)||b>parseInt(d[1],10))?["out",d[0],d[1]]:0===c.indexOf("min")&&b<e?["min",e]:0===c.indexOf("max")&&b>e?["max",e]:["ok"]},_numSuggestionElements:0,_selectedSuggestion:null,_previousTypedVal:null,suggest:function(b,d,e){var f={css:{maxHeight:"150px",background:"#FFF",lineHeight:"150%",textDecoration:"underline",overflowX:"hidden",overflowY:"auto",border:"#CCC solid 1px",borderTop:"none",cursor:"pointer"},activeSuggestionCSS:{background:"#E9E9E9"}},g=function(a,b){var c=b.offset();a....
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 32.8K bytes
    - Click Count (0)
Back to Top