Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for toSource (0.31 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java

            event.setSourceMap(map2);
            assertEquals(2, event.toSource().size());
            assertFalse(event.toSource().containsKey("key1"));
            assertTrue(event.toSource().containsKey("key2"));
            assertTrue(event.toSource().containsKey("key3"));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java

                esEntity.asDocMeta().primaryTerm(primaryTerm);
            }
            return builder;
        }
    
        protected Map<String, Object> toSource(final EsAbstractEntity esEntity) {
            return esEntity.toSource();
        }
    
        @Override
        protected int delegateDelete(final Entity entity, final DeleteOption<? extends ConditionBean> option) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java

                esEntity.asDocMeta().primaryTerm(primaryTerm);
            }
            return builder;
        }
    
        protected Map<String, Object> toSource(final EsAbstractEntity esEntity) {
            return esEntity.toSource();
        }
    
        @Override
        protected int delegateDelete(final Entity entity, final DeleteOption<? extends ConditionBean> option) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/SearchLogEvent.java

         */
        Long getVersionNo();
    
        /**
         * Converts this search log event to a source map for indexing or logging.
         *
         * @return Map representation of the event data
         */
        Map<String, Object> toSource();
    
        /**
         * Gets the type of this search log event.
         *
         * @return The event type (e.g., "search", "click", "favorite", "user_info")
         */
        String getEventType();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/SocksProxy.kt

            // Copy sources to sinks in both directions.
            val toSource = toSocket.source().buffer()
            val toSink = toSocket.sink().buffer()
            openSockets.add(toSocket)
            transfer(fromAddress, toAddress, fromSource, toSink)
            transfer(fromAddress, toAddress, toSource, fromSink)
          }
    
          else -> throw ProtocolException("unexpected command: $command")
        }
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractBehavior.java

                esEntity.asDocMeta().primaryTerm(primaryTerm);
            }
            return builder;
        }
    
        protected Map<String, Object> toSource(final EsAbstractEntity esEntity) {
            return esEntity.toSource();
        }
    
        @Override
        protected int delegateDelete(final Entity entity, final DeleteOption<? extends ConditionBean> option) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        *
        * @param searchLogEvent The search log event.
        * @return The source map.
        */
        protected Map<String, Object> toSource(final SearchLogEvent searchLogEvent) {
            final Map<String, Object> source = toLowerHyphen(searchLogEvent.toSource());
            source.put("_id", searchLogEvent.getId());
            // source.put("version_no", searchLogEvent.getVersionNo());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java

        //                                                                              Source
        //                                                                              ======
        public abstract Map<String, Object> toSource();
    
        // ===================================================================================
        //                                                                      Basic Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top