Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 729 for GetKey (0.36 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

                final Properties props = new Properties();
                getWebConfig().getConfigParameterMap(ConfigName.CONFIG).entrySet().stream()
                        .filter(e -> e.getKey().startsWith(Config.JCIFS_PREFIX)).forEach(e -> {
                            props.setProperty(e.getKey(), e.getValue());
                        });
                return new NTLMScheme(new JcifsEngine(props));
            }
            if (Constants.FORM.equals(scheme)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/google/MultimapEntriesTester.java

        Iterator<Entry<K, V>> iterator = multimap().entries().iterator();
        Entry<K, V> entry = iterator.next();
        K key = entry.getKey();
        V value = entry.getValue();
        multimap().removeAll(key);
        assertEquals(key, entry.getKey());
        assertEquals(value, entry.getValue());
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/MapIteratorCache.java

              }
    
              @Override
              public K next() {
                Entry<K, V> entry = entryIterator.next(); // store local reference for thread-safety
                cacheEntry = entry;
                return entry.getKey();
              }
            };
          }
    
          @Override
          public int size() {
            return backingMap.size();
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  4. src/mdo/writer-stax.vm

                    if (attr.getKey().startsWith("xml:")) {
                        serializer.writeAttribute("http://www.w3.org/XML/1998/namespace",
                        attr.getKey().substring(4), attr.getValue());
                    } else {
                        serializer.writeAttribute(attr.getKey(), attr.getValue());
                    }
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 05 08:11:33 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ImmutableMapKeySet.java

      }
    
      @Override
      public boolean contains(@CheckForNull Object object) {
        return map.containsKey(object);
      }
    
      @Override
      K get(int index) {
        return map.entrySet().asList().get(index).getKey();
      }
    
      @Override
      boolean isPartialView() {
        return true;
      }
    
      @Override
      @J2ktIncompatible // serialization
      @GwtIncompatible // serialization
      Object writeReplace() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/EncryptionAlgorithm.java

        }
    
        /**
         * Combines an algorithm and a key, and allows obtaining encryption/decryption ciphers according to those.
         */
        interface Session {
            SecretKey getKey();
            EncryptionAlgorithm getAlgorithm();
            Cipher encryptingCipher(IVCollector collector);
            Cipher decryptingCipher(IVLoader loader);
        }
    
        class EncryptionException extends RuntimeException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

          return new WrappedSortedSet(
              getKey(),
              getSortedSetDelegate().headSet(toElement),
              (getAncestor() == null) ? this : getAncestor());
        }
    
        @Override
        public SortedSet<V> subSet(@ParametricNullness V fromElement, @ParametricNullness V toElement) {
          refreshIfEmpty();
          return new WrappedSortedSet(
              getKey(),
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 46.6K bytes
    - Viewed (0)
  8. pkg/kube/krt/collection.go

    	// Note we now have the recomputeMu so this is safe; any futures calls will do the same so always have up-to-date information.
    	for idx, ev := range items {
    		iKey := GetKey(ev.Latest())
    		iObj := h.parent.GetKey(iKey)
    		if iObj == nil {
    			ev.Event = controllers.EventDelete
    			if ev.Old == nil {
    				// This was an add, now its a Delete. Make sure we don't have Old and New nil, which we claim to be illegal
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            }
    
            public Object getKey() {
                return metadata.toString();
            }
    
            public String getRemoteFilename() {
                return metadata.getType();
            }
    
            public String getLocalFilename(ArtifactRepository repository) {
                return insertRepositoryKey(getRemoteFilename(), repository.getKey());
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

        @Test
        public void testEntrySet() throws Exception {
            Iterator<Map.Entry<String, String>> i = map.entrySet().iterator();
            assertThat(i.next().getKey(), is(nullValue()));
            assertThat(i.next().getKey(), is("1"));
            assertThat(i.next().getKey(), is("2"));
        }
    
        /**
         * Test method for {@link org.seasar.util.collection.ArrayIterator#remove()}
         * .
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top