Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 842 for map (0.37 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            for (final String name : dataStoreNames) {
                final Map<String, String> map = new HashMap<>();
                map.put(Constants.ITEM_LABEL, name);
                map.put(Constants.ITEM_VALUE, name);
                itemList.add(map);
            }
            RenderDataUtil.register(data, "handlerNameItems", itemList);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            final AtomicReference<String> sentIndex = new AtomicReference<>();
            final List<Map<String, Object>> sentDocList = new ArrayList<>();
            final SearchEngineClient client = new SearchEngineClient() {
                @Override
                public String[] addAll(final String index, final List<Map<String, Object>> docList,
                        final BiConsumer<Map<String, Object>, IndexRequestBuilder> options) {
                    sentIndex.set(index);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/ArrayMap.java

            threshold = (int) (initialCapacity * LOAD_FACTOR);
        }
    
        /**
         * 指定された{@link Map}と同じマッピングでインスタンスを構築します。
         *
         * @param map
         *            マッピングがこのマップに配置されるマップ
         */
        public ArrayMap(final Map<? extends K, ? extends V> map) {
            this((int) (map.size() / LOAD_FACTOR) + 1);
            putAll(map);
        }
    
        @Override
        public int size() {
            return size;
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

                }
            }
    
            final Map<String, String> labelMap = new LinkedHashMap<>();
            if (!labelTypeItems.isEmpty()) {
                for (final Map<String, String> map : labelTypeItems) {
                    labelMap.put(map.get(Constants.ITEM_VALUE), map.get(Constants.ITEM_LABEL));
                }
            }
            request.setAttribute(Constants.LABEL_VALUE_MAP, labelMap);
    
            // sort
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

          }
          SortedMap<K, V> map = (SortedMap<K, V>) delegate.create(allEntries.toArray());
    
          return createSubMap(map, firstExclusive, lastExclusive);
        }
    
        /**
         * Calls the smallest subMap overload that filters out the extreme values. This method is
         * overridden in NavigableMapTestSuiteBuilder.
         */
        SortedMap<K, V> createSubMap(SortedMap<K, V> map, K firstExclusive, K lastExclusive) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 18.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/AbstractBiMap.java

      private transient Map<K, V> delegate;
    
      @SuppressWarnings("nullness:initialization.field.uninitialized") // For J2KT (lateinit)
      @RetainedWith
      transient AbstractBiMap<V, K> inverse;
    
      /** Package-private constructor for creating a map-backed bimap. */
      AbstractBiMap(Map<K, V> forward, Map<V, K> backward) {
        setDelegates(forward, backward);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Aug 24 01:40:03 GMT 2023
    - 13.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

        private final Map<org.eclipse.aether.graph.DependencyNode, Node> allNodes =
                Collections.synchronizedMap(new WeakHashMap<>());
        private final Map<org.eclipse.aether.artifact.Artifact, Artifact> allArtifacts =
                Collections.synchronizedMap(new WeakHashMap<>());
        private final Map<org.eclipse.aether.repository.RemoteRepository, RemoteRepository> allRepositories =
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 16:33:18 GMT 2024
    - 27.2K bytes
    - Viewed (0)
  8. internal/bucket/object/lock/lock_test.go

    			},
    			expected:        map[string]string{},
    			filterRetention: true,
    		},
    		{
    			metadata: map[string]string{
    				"x-amz-object-lock-legal-hold": "off",
    			},
    			expected:        map[string]string{},
    			filterLegalHold: true,
    		},
    		{
    			metadata: map[string]string{
    				"x-amz-object-lock-legal-hold": "on",
    			},
    			expected:        map[string]string{"x-amz-object-lock-legal-hold": "on"},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/SynchronizedNavigableMapTest.java

        NavigableMap<String, Integer> map = create();
        map.put("a", 1);
        map.firstKey();
      }
    
      public void testFloorEntry() {
        create().floorEntry("a");
      }
    
      public void testFloorKey() {
        create().floorKey("a");
      }
    
      public void testHeadMap_K() {
        NavigableMap<String, Integer> map = create();
        SortedMap<String, Integer> headMap = map.headMap("a");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 19 19:24:36 GMT 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/util/BeanUtil.java

            }
        }
    
        /**
         * {@literal Map}から{@literal Map}にコピーを行います。
         *
         * @param src コピー元の{@literal Map}。{@literal null}であってはいけません
         * @param dest コピー先の{@literal Map}。{@literal null}であってはいけません
         */
        public static void copyMapToMap(final Map<String, ? extends Object> src, final Map<String, Object> dest) {
            copyMapToMap(src, dest, DEFAULT_OPTIONS);
        }
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.5K bytes
    - Viewed (0)
Back to top