Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,137 for entryAt (0.19 sec)

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

      }
    
      boolean removeEntriesIf(Predicate<? super Entry<K, Collection<V>>> predicate) {
        Iterator<Entry<K, Collection<V>>> entryIterator = unfiltered.asMap().entrySet().iterator();
        boolean changed = false;
        while (entryIterator.hasNext()) {
          Entry<K, Collection<V>> entry = entryIterator.next();
          K key = entry.getKey();
          Collection<V> collection = filterCollection(entry.getValue(), new ValuePredicate(key));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

            for (final Map.Entry<String, String> entry : System.getenv().entrySet()) {
                itemList.add(createItem(entry.getKey(), entry.getValue()));
            }
            return itemList;
        }
    
        public static List<Map<String, String>> getPropItems() {
            final List<Map<String, String>> itemList = new ArrayList<>();
            for (final Map.Entry<Object, Object> entry : System.getProperties().entrySet()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesNonStringTest.groovy

            1 * listener.onAccess('keyWithNonStringValue', NON_STRING_VALUE)
            0 * listener._
        }
    
        def "entrySet() contains(entry(#key, #requestedValue)) and containsAll(entry(#key, #requestedValue)) are tracked for non-strings"() {
            when:
            def containsResult = getMapUnderTestToRead().entrySet().contains(entry(key, requestedValue))
    
            then:
            containsResult == expectedResult
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

            while (iterator.hasNext()) {
                Entry<FileSystemLocationFingerprint, FilePathWithType> entry = iterator.next();
                FileSystemLocationFingerprint previousFingerprint = entry.getKey();
                FilePathWithType pathWithType = entry.getValue();
    
                Change change = getChange(propertyTitle, addedFilesByNormalizedPath, previousFingerprint, pathWithType);
                if (!visitor.visitChange(change)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableMultiset.java

        ImmutableSet<Entry<E>> es = entrySet;
        return (es == null) ? (entrySet = createEntrySet()) : es;
      }
    
      private ImmutableSet<Entry<E>> createEntrySet() {
        return isEmpty() ? ImmutableSet.<Entry<E>>of() : new EntrySet();
      }
    
      abstract Entry<E> getEntry(int index);
    
      @WeakOuter
      private final class EntrySet extends IndexedImmutableSet<Entry<E>> {
        @Override
        boolean isPartialView() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/StandardTable.java

            if (o instanceof Entry) {
              Entry<?, ?> entry = (Entry<?, ?>) o;
              return containsMapping(entry.getKey(), columnKey, entry.getValue());
            }
            return false;
          }
    
          @Override
          public boolean remove(@CheckForNull Object obj) {
            if (obj instanceof Entry) {
              Entry<?, ?> entry = (Entry<?, ?>) obj;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  7. src/mdo/java/ImmutableCollections.java

            private final Entry<K, V> entry;
    
            private Map1(K key, V value) {
                this.entry = new SimpleImmutableEntry<>(key, value);
            }
    
            @Override
            public Set<Entry<K, V>> entrySet() {
                return new AbstractImmutableSet<Entry<K, V>>() {
                    @Override
                    public Iterator<Entry<K, V>> iterator() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

        }
    
        def "entry method setValue changes map"() {
            when:
            def map = getMapUnderTestToWrite()
            def entry = map.entrySet().find { entry -> entry.getKey() == 'existing' }
    
            def result = entry.setValue('newValue')
    
            then:
            result == 'existingValue'
            map['existing'] == 'newValue'
        }
    
        def "entry method setValue reports change"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/TemplateOperationFactory.java

                final Set<Map.Entry<String, String>> entries = bindings.entrySet();
                Map<String, TemplateValue> wrappedBindings = new HashMap<>(entries.size());
                for (Map.Entry<String, String> entry : entries) {
                    if (entry.getValue() == null) {
                        throw new IllegalArgumentException("Null value provided for binding '" + entry.getKey() + "'.");
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top