Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Pygments (0.14 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         */
        long sum = 0L;
        Segment<K, V, E, S>[] segments = this.segments;
        for (int i = 0; i < segments.length; ++i) {
          if (segments[i].count != 0) {
            return false;
          }
          sum += segments[i].modCount;
        }
    
        if (sum != 0L) { // recheck unless no modifications
          for (int i = 0; i < segments.length; ++i) {
            if (segments[i].count != 0) {
              return false;
            }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

    import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
    import org.opensearch.action.admin.indices.refresh.RefreshResponse;
    import org.opensearch.action.admin.indices.segments.IndicesSegmentResponse;
    import org.opensearch.action.admin.indices.segments.PitSegmentsRequest;
    import org.opensearch.action.bulk.BulkItemResponse;
    import org.opensearch.action.bulk.BulkItemResponse.Failure;
    import org.opensearch.action.bulk.BulkRequest;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <ul>
     *   <li>automatic loading of entries into the cache
     *   <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is
     *       divided into segments, each of which does LRU internally)
     *   <li>time-based expiration of entries, measured since last access or last write
     *   <li>keys automatically wrapped in {@code WeakReference}
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
Back to top