Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,751 for entries_ (0.13 sec)

  1. guava/src/com/google/common/collect/JdkBackedImmutableMap.java

      }
    
      private final transient Map<K, V> delegateMap;
      private final transient ImmutableList<Entry<K, V>> entries;
    
      JdkBackedImmutableMap(Map<K, V> delegateMap, ImmutableList<Entry<K, V>> entries) {
        this.delegateMap = delegateMap;
        this.entries = entries;
      }
    
      @Override
      public int size() {
        return entries.size();
      }
    
      @Override
      @CheckForNull
      public V get(@CheckForNull Object key) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            if (!prefix.equals("") && current.entries.size() < maxChildIndexEntries / 2) {
                throw new IOException(String.format("Too few entries found in %s", current));
            }
            if (current.entries.size() > maxChildIndexEntries) {
                throw new IOException(String.format("Too many entries found in %s", current));
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultMapProperty.java

                // for MapProperty allows a provider to override the entries of earlier providers and so there can be multiple entries
                // with the same key
                Map<K, V> entries = new LinkedHashMap<>();
                Value<Void> result = collector.collectEntries(consumer, entryCollector, entries);
                if (result.isMissing()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/testers/MapCreationTester.java

      }
    
      private Entry<K, V>[] getEntriesMultipleNonNullKeys() {
        Entry<K, V>[] entries = createSamplesArray();
        entries[0] = entry(k1(), v0());
        return entries;
      }
    
      private void expectFirstRemoved(Entry<K, V>[] entries) {
        resetMap(entries);
    
        List<Entry<K, V>> expectedWithDuplicateRemoved =
            Arrays.asList(entries).subList(1, getNumElements());
        expectContents(expectedWithDuplicateRemoved);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. cmd/os-readdir-common.go

    type readDirOpts struct {
    	// The maximum number of entries to return
    	count int
    	// Follow directory symlink
    	followDirSymlink bool
    }
    
    // Return all the entries at the directory dirPath.
    func readDir(dirPath string) (entries []string, err error) {
    	return readDirWithOpts(dirPath, readDirOpts{count: -1})
    }
    
    // Return up to count entries at the directory dirPath.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jul 09 23:20:51 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

          Set<Entry<Object, Object>> entries = cache.asMap().entrySet();
          List<Entry<Object, Object>> warmed = warmUp(cache, WARMUP_MIN, WARMUP_MAX);
    
          Set<?> expected = Maps.newHashMap(cache.asMap()).entrySet();
          assertThat(entries).containsExactlyElementsIn(expected);
          assertThat(entries.toArray()).asList().containsExactlyElementsIn(expected);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/RegularImmutableBiMap.java

      @VisibleForTesting final transient Entry<K, V>[] entries;
      private final transient int mask;
      private final transient int hashCode;
    
      static <K, V> ImmutableBiMap<K, V> fromEntries(Entry<K, V>... entries) {
        return fromEntryArray(entries.length, entries);
      }
    
      static <K, V> ImmutableBiMap<K, V> fromEntryArray(int n, @Nullable Entry<K, V>[] entryArray) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. pkg/apis/resource/structured/namedresources/validation/validation.go

    		} else {
    			attributeNames.Insert(attributeName)
    		}
    
    		entries := sets.New[string]()
    		if attribute.QuantityValue != nil {
    			entries.Insert("quantity")
    		}
    		if attribute.BoolValue != nil {
    			entries.Insert("bool")
    		}
    		if attribute.IntValue != nil {
    			entries.Insert("int")
    		}
    		if attribute.IntSliceValue != nil {
    			entries.Insert("intSlice")
    		}
    		if attribute.StringValue != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:20 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. src/go/printer/testdata/slow.golden

    type Bar struct {
    	baz	*Baz
    	foo	[]*Foo
    }
    
    type Baz struct {
    	entries		map[int]interface{}
    	whatever	string
    }
    
    func newFoo() *Foo {
    	return &Foo{bar: &Bar{baz: &Baz{
    		entries: map[int]interface{}{
    			42:	&Foo{},
    			21:	&Bar{},
    			11:	&Baz{whatever: "it's just a test"}}}},
    		bang: &Bar{foo: []*Foo{
    			&Foo{bar: &Bar{baz: &Baz{
    				entries: map[int]interface{}{
    					43:	&Foo{},
    					22:	&Bar{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/persistentvolumeclaimtemplate.go

    	b.ensureObjectMetaApplyConfigurationExists()
    	if b.Labels == nil && len(entries) > 0 {
    		b.Labels = make(map[string]string, len(entries))
    	}
    	for k, v := range entries {
    		b.Labels[k] = v
    	}
    	return b
    }
    
    // WithAnnotations puts the entries into the Annotations field in the declarative configuration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top