Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,886 for omap (0.04 sec)

  1. src/main/java/org/codelibs/fess/es/log/exentity/ClickLog.java

            return getUrl();
        }
    
        @Override
        public Map<String, Object> toSource() {
            final Map<String, Object> sourceMap = super.toSource();
            if (fields != null) {
                sourceMap.putAll(fields);
            }
            return sourceMap;
        }
    
        @Override
        protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/exentity/FavoriteLog.java

            return getCreatedAt();
        }
    
        @Override
        public Map<String, Object> toSource() {
            final Map<String, Object> sourceMap = super.toSource();
            if (fields != null) {
                sourceMap.putAll(fields);
            }
            return sourceMap;
        }
    
        @Override
        protected void addFieldToSource(final Map<String, Object> sourceMap, final String field, final Object value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

        /**
         * 
         * @param key
         *            cache key
         */
        void setKey ( String key );
    
    
        /**
         * @param map
         */
        void setCacheMap ( Map<String, DfsReferralDataInternal> map );
    
    
        /**
         * Replaces the entry with key in the cache map with this referral
         */
        void replaceCache ();
    
    
        /**
         * Not exactly sure what that is all about, certainly legacy stuff
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

        }
    
        public void putAll(final Map<String, String> map) {
            params.putAll(map);
        }
    
        public boolean containsKey(final String key) {
            return params.containsKey(key);
        }
    
        public Map<String, Object> asMap() {
            return new ParamMap<>(new HashMap<>(getDataMap(params)));
        }
    
        protected static Map<String, Object> getDataMap(final Map<String, Object> params) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java

         * {@link org.codelibs.core.collection.CollectionsUtil#isEmpty(java.util.Map)}
         * .
         */
        @Test
        public void testIsEmptyMapOfQQ() {
            HashMap<String, String> map = null;
            assertThat(CollectionsUtil.isEmpty(map), is(true));
            map = new HashMap<String, String>();
            assertThat(CollectionsUtil.isEmpty(map), is(true));
        }
    
        /**
         * Test method for
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

        public void storeQueryId(final String queryId, final List<Map<String, Object>> documentItems) {
            LaRequestUtil.getOptionalRequest().map(req -> req.getSession(false)).ifPresent(session -> {
                final FessConfig fessConfig = ComponentUtil.getFessConfig();
    
                final List<String> docIdList = new ArrayList<>();
                for (final Map<String, Object> map : documentItems) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Serialization.java

      static <K extends @Nullable Object, V extends @Nullable Object> void writeMap(
          Map<K, V> map, ObjectOutputStream stream) throws IOException {
        stream.writeInt(map.size());
        for (Map.Entry<K, V> entry : map.entrySet()) {
          stream.writeObject(entry.getKey());
          stream.writeObject(entry.getValue());
        }
      }
    
      /**
       * Populates a map by reading an input stream, as part of deserialization. See {@link #writeMap}
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LayeredOptions.java

        }
    
        protected Optional<Map<String, String>> collectMapIfPresentOrEmpty(
                Function<O, Optional<Map<String, String>>> getter) {
            int had = 0;
            HashMap<String, String> items = new HashMap<>();
            for (O option : options) {
                Optional<Map<String, String>> up = getter.apply(option);
                if (up.isPresent()) {
                    had++;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

                new TestStringMapGenerator() {
                  @Override
                  protected Map<String, String> create(Entry<String, String>[] entries) {
                    Map<String, String> map = populate(new HashMap<String, String>(), entries);
                    return Collections.checkedMap(map, String.class, String.class);
                  }
                })
            .named("checkedMap/HashMap")
            .withFeatures(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/Interpolator.java

        default void interpolate(
                @Nonnull Map<String, String> map, @Nullable Function<String, String> callback, boolean defaultsToEmpty) {
            interpolate(map, callback, null, defaultsToEmpty);
        }
    
        /**
         * Interpolates the values in the given map using the provided callback function.
         *
         * @param map The map containing key-value pairs to be interpolated.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 17 09:25:53 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top