Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for entryAt (0.12 sec)

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

          K k9,
          V v9,
          K k10,
          V v10) {
        return fromEntries(
            entryOf(k1, v1),
            entryOf(k2, v2),
            entryOf(k3, v3),
            entryOf(k4, v4),
            entryOf(k5, v5),
            entryOf(k6, v6),
            entryOf(k7, v7),
            entryOf(k8, v8),
            entryOf(k9, v9),
            entryOf(k10, v10));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                } else {
                    final String entryDN = fessConfig.getLdapAdminRoleSecurityPrincipal(role.getName());
                    final BasicAttributes entry = new BasicAttributes();
                    addRoleAttributes(entry, role);
                    final Attribute oc = fessConfig.getLdapAdminRoleObjectClassAttribute();
                    entry.put(oc);
                    insert(entryDN, entry, adminEnv);
                }
            });
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/MapsTest.java

        }
        Set<Entry<Number, String>> entries = unmod.entrySet();
        Entry<Number, String> entry = entries.iterator().next();
        try {
          entry.setValue("four");
          fail("UnsupportedOperationException expected");
        } catch (UnsupportedOperationException expected) {
        }
        @SuppressWarnings("unchecked")
        Entry<Integer, String> entry2 = (Entry<Integer, String>) entries.toArray()[0];
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/MapMakerInternalMap.java

        return (vs != null) ? vs : (values = new Values());
      }
    
      @LazyInit @CheckForNull transient Set<Entry<K, V>> entrySet;
    
      @Override
      public Set<Entry<K, V>> entrySet() {
        Set<Entry<K, V>> es = entrySet;
        return (es != null) ? es : (entrySet = new EntrySet());
      }
    
      // Iterator Support
    
      abstract class HashIterator<T> implements Iterator<T> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def finalizer2 = task("finalizer2", type: Async, dependsOn: [commonDep])
            def entry1 = task("entry1", type: Async, finalizedBy: [finalizer1, finalizer2])
            def entry2 = task("entry2", type: Async, dependsOn: [commonDep])
    
            when:
            addToGraph(entry1)
            executionPlan.determineExecutionPlan() // this is called between entry groups for an included build (but not the root build) and this call triggers the issue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Synchronized.java

            }
            return elementSet;
          }
        }
    
        @Override
        public Set<Multiset.Entry<E>> entrySet() {
          synchronized (mutex) {
            if (entrySet == null) {
              entrySet = typePreservingSet(delegate().entrySet(), mutex);
            }
            return entrySet;
          }
        }
    
        @Override
        public boolean equals(@CheckForNull Object o) {
          if (o == this) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Synchronized.java

            }
            return elementSet;
          }
        }
    
        @Override
        public Set<Multiset.Entry<E>> entrySet() {
          synchronized (mutex) {
            if (entrySet == null) {
              entrySet = typePreservingSet(delegate().entrySet(), mutex);
            }
            return entrySet;
          }
        }
    
        @Override
        public boolean equals(@CheckForNull Object o) {
          if (o == this) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                            + ", please read the following articles:");
    
                    for (Map.Entry<String, String> entry : references.entrySet()) {
                        slf4jLogger.error("{} {}", MessageUtils.builder().strong(entry.getValue()), entry.getKey());
                    }
                }
    
                if (result.canResume()) {
                    logBuildResumeHint("mvn [args] -r");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      Strength getValueStrength() {
        return MoreObjects.firstNonNull(valueStrength, Strength.STRONG);
      }
    
      /**
       * Specifies that each entry should be automatically removed from the cache once a fixed duration
       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	"k8s.io/apiserver/pkg/features"
    	"k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope"
    	envelopekmsv2 "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2"
    	kmstypes "k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2"
    	"k8s.io/apiserver/pkg/storage/value/encrypt/envelope/metrics"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top