Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for clicking (0.03 sec)

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

    import java.time.format.DateTimeFormatter;
    import java.util.Map;
    
    import org.codelibs.fess.entity.SearchLogEvent;
    import org.codelibs.fess.opensearch.log.bsentity.BsClickLog;
    
    /**
     * @author FreeGen
     */
    public class ClickLog extends BsClickLog implements SearchLogEvent {
    
        private static final long serialVersionUID = 1L;
    
        private Map<String, Object> fields;
    
        @Override
        public String getId() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  2. docs/changelogs/changelog_1x.md

     * Fix bug where the Content-Length header was not always dropped when
       following a redirect from a POST to a GET.
     * Implement basic support for `Thread.interrupt()`. OkHttp now checks
       for an interruption before doing a blocking call. If it is interrupted,
       it throws an `InterruptedIOException`.
    
    ## Version 1.5.2
    
    _2014-03-17_
    
     * Fix bug where deleting a file that was absent from the `HttpResponseCache`
       caused an IOException.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends ClickLog> typeOfSelectedEntity() {
            return ClickLog.class;
        }
    
        @Override
        protected Class<ClickLog> typeOfHandlingEntity() {
            return ClickLog.class;
        }
    
        @Override
        protected Class<ClickLogCB> typeOfHandlingConditionBean() {
            return ClickLogCB.class;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                    final ClickLog clickLog = new ClickLog();
                    clickLog.setUrlId((String) doc.get(fessConfig.getIndexFieldId()));
                    clickLog.setUrl(url);
                    clickLog.setRequestedAt(systemHelper.getCurrentTimeAsLocalDateTime());
                    clickLog.setQueryRequestedAt(DfTypeUtil.toLocalDateTime(Long.parseLong(form.rt)));
                    clickLog.setUserSessionId(userSessionId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. docs/contribute/concurrency.md

    ## HTTP/2 Connections
    
    The HttpURLConnection API is a blocking API. You make a blocking write to send a request, and a blocking read to receive the response.
    
    #### Blocking APIs
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java

            assertThrows(ExecutionException.class, () -> getDone(task));
        assertThat(executionException).hasCauseThat().isEqualTo(e);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // blocking wait
      public void testCancel_interrupted() throws Exception {
        AtomicBoolean interruptedExceptionThrown = new AtomicBoolean();
        CountDownLatch enterLatch = new CountDownLatch(1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

    /**
     * Form class for editing elevate word configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing elevate word entries,
     * including tracking information for optimistic locking and audit trails.
     * Elevate words are used to boost specific documents in search results when certain keywords are matched.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

     * Form class for editing request header configurations in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing request header entries,
     * including tracking information for optimistic locking and audit trails.
     * Request headers are used to customize HTTP requests sent during web crawling operations.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/EditForm.java

    /**
     * Form class for editing users in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing user entries,
     * including tracking information for optimistic locking.
     * Users represent individual accounts that can access and search within the system.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
         * Creates a new EditForm instance.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  10. .github/PULL_REQUEST_TEMPLATE.md

    KEPs or supporting documentation, please reference a specific commit and avoid
    linking directly to the master branch. This ensures that links reference a
    specific point in time, rather than a document that may change over time.
    
    See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files
    
    Please use the following format for linking documentation:
    - [KEP]: <link>
    - [Usage]: <link>
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Jun 06 14:40:00 UTC 2025
    - 3.1K bytes
    - Viewed (0)
Back to top