Search Options

Results per page
Sort
Preferred Languages
Advance

Results 301 - 310 of 465 for entries_ (0.05 sec)

  1. internal/grid/handlers.go

    	return &StreamTypeHandler[Payload, Req, Resp]{id: h, InCapacity: 1, OutCapacity: 1}
    }
    
    // Register a handler for two-way streaming with payload, input stream and output stream.
    // An optional subroute can be given. Multiple entries are joined with '/'.
    func (h *StreamTypeHandler[Payload, Req, Resp]) Register(m *Manager, handle func(ctx context.Context, p Payload, in <-chan Req, out chan<- Resp) *RemoteErr, subroute ...string) error {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Sep 09 16:58:30 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  2. cmd/admin-handlers_test.go

    		peerLocks []*PeerLocks
    		expected  madmin.LockEntries
    	}{
    		{
    			peerLocks: peerLocks,
    			expected:  exp,
    		},
    	}
    
    	// printEntries := func(entries madmin.LockEntries) {
    	// 	for i, entry := range entries {
    	// 		fmt.Printf("%d: %s %s %s %s %v %d\n", i, entry.Resource, entry.ID, entry.Owner, entry.Type, entry.ServerList, entry.Elapsed)
    	// 	}
    	// }
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 24 10:24:01 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        assertEquals(MAX_SIZE, removalListener.getCount());
        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() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 19:07:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Synchronized.java

            }
            return valuesCollection;
          }
        }
    
        @Override
        public Collection<Map.Entry<K, V>> entries() {
          synchronized (mutex) {
            if (entries == null) {
              entries = typePreservingCollection(delegate().entries(), mutex);
            }
            return entries;
          }
        }
    
        @Override
        public Map<K, Collection<V>> asMap() {
          synchronized (mutex) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Synchronized.java

            }
            return valuesCollection;
          }
        }
    
        @Override
        public Collection<Map.Entry<K, V>> entries() {
          synchronized (mutex) {
            if (entries == null) {
              entries = typePreservingCollection(delegate().entries(), mutex);
            }
            return entries;
          }
        }
    
        @Override
        public void forEach(BiConsumer<? super K, ? super V> action) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  6. src/archive/zip/reader.go

    	d.dirDiskNbr = b.uint32()         // number of the disk with the start of the central directory
    	d.dirRecordsThisDisk = b.uint64() // total number of entries in the central directory on this disk
    	d.directoryRecords = b.uint64()   // total number of entries in the central directory
    	d.directorySize = b.uint64()      // size of the central directory
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/MapTestSuiteBuilderTests.java

      private abstract static class WrappedHashMapGenerator extends TestStringMapGenerator {
        @Override
        protected final Map<String, String> create(Entry<String, String>[] entries) {
          HashMap<String, String> map = Maps.newHashMap();
          for (Entry<String, String> entry : entries) {
            map.put(entry.getKey(), entry.getValue());
          }
          return wrap(map);
        }
    
        abstract Map<String, String> wrap(HashMap<String, String> map);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. docs/bucket/versioning/DESIGN.md

    | inline data    | binary         | Inline data if any, see Inline Data section for encoding.  
    | [EOF] | |
    
    ## v1.0-v1.2 Versions
    
    `xl.meta` carries three types of object entries which designate the type of version object stored.
    
    - ObjectType (default)
    - LegacyObjectType (preserves existing deployments and older xl.json format)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/MediaType.java

            && (mediaTypeRange.subtype.equals(WILDCARD) || mediaTypeRange.subtype.equals(this.subtype))
            && this.parameters.entries().containsAll(mediaTypeRange.parameters.entries());
      }
    
      /**
       * Creates a new media type with the given type and subtype.
       *
       * @throws IllegalArgumentException if type or subtype is invalid or if a wildcard is used for the
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/FluentIterable.java

       * k, valueFunction))}. {@code ImmutableMap.copyOf(stream.collect(Collectors.toMap(k -> k,
       * valueFunction)))} behaves similarly, but may not preserve the order of entries.
       *
       * @throws NullPointerException if any element of this iterable is {@code null}, or if {@code
       *     valueFunction} produces {@code null} for any key
       * @since 14.0
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 24 13:42:31 UTC 2024
    - 35.7K bytes
    - Viewed (0)
Back to top