Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,751 for entries_ (0.16 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

            b = Multisets.immutableEntry(entries.get(1), sortedMultiset.count(entries.get(1)));
            c = Multisets.immutableEntry(entries.get(2), sortedMultiset.count(entries.get(2)));
          }
        }
      }
    
      /** Resets the contents of sortedMultiset to have entries a, c, for the navigation tests. */
      // Needed to stop Eclipse whining
      private void resetWithHole() {
        List<E> container = new ArrayList<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. maven-di/src/test/java/org/apache/maven/di/impl/InjectorImplTest.java

            List<Map.Entry<String, InjectMap.MyService>> entries = new ArrayList<>(services.entrySet());
            assertNotNull(entries.get(0));
            assertInstanceOf(InjectMap.MyService.class, entries.get(0).getValue());
            assertInstanceOf(String.class, entries.get(0).getKey());
            assertNotNull(entries.get(1));
            assertInstanceOf(String.class, entries.get(1).getKey());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/CompactLinkedHashMapTest.java

                    new TestStringMapGenerator() {
                      @Override
                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        Map<String, String> map = CompactLinkedHashMap.create();
                        for (Entry<String, String> entry : entries) {
                          map.put(entry.getKey(), entry.getValue());
                        }
                        return map;
                      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 21:08:15 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         */
        void put(K key, Provider<? extends V> providerOfValue);
    
        /**
         * Adds all entries from another {@link Map} to the property value.
         *
         * @param entries a {@link Map} containing the entries to add
         */
        void putAll(Map<? extends K, ? extends V> entries);
    
        /**
         * Adds all entries from another {@link Map} to the property value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/CompactHashMapTest.java

                    new TestStringMapGenerator() {
                      @Override
                      protected Map<String, String> create(Entry<String, String>[] entries) {
                        Map<String, String> map = CompactHashMap.create();
                        for (Entry<String, String> entry : entries) {
                          map.put(entry.getKey(), entry.getValue());
                        }
                        return map;
                      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 21:08:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

            builder.put(entry.getKey(), entry.getValue());
          }
          return builder.buildOrThrow();
        }
      }
    
      public static class ImmutableMapCopyOfGenerator extends TestStringMapGenerator {
        @Override
        protected Map<String, String> create(Entry<String, String>[] entries) {
          Map<String, String> builder = Maps.newLinkedHashMap();
          for (Entry<String, String> entry : entries) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1/customresourcedefinition.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: Mon Aug 28 12:38:10 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/users/users_linux.go

    			}
    			entry.gid = gid
    			entry.shell = fields[6]
    		}
    		entries = append(entries, entry)
    	}
    	return entries, nil
    }
    
    // validateEntries takes user and group entries and validates if these entries are valid based on limits,
    // mapping between users and groups and specs. Returns slices of missing user and group entries that must be created.
    // Returns an error if existing users and groups do not match requirements.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

            b = Multisets.immutableEntry(entries.get(1), sortedMultiset.count(entries.get(1)));
            c = Multisets.immutableEntry(entries.get(2), sortedMultiset.count(entries.get(2)));
          }
        }
      }
    
      /** Resets the contents of sortedMultiset to have entries a, c, for the navigation tests. */
      // Needed to stop Eclipse whining
      private void resetWithHole() {
        List<E> container = new ArrayList<>();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/state/checkpoint.go

    // TODO: remove in Beta.
    func verifyChecksumWithoutResourceHandles(dc *DRAManagerCheckpoint, checkSum checksum.Checksum) error {
    	entries := ClaimInfoStateListWithoutResourceHandles{}
    	for _, entry := range dc.Entries {
    		entries = append(entries, ClaimInfoStateWithoutResourceHandles{
    			DriverName: entry.DriverName,
    			ClassName:  entry.ClassName,
    			ClaimUID:   entry.ClaimUID,
    			ClaimName:  entry.ClaimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 15:23:10 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top