Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for processed_ (0.05 sec)

  1. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            return logger;
        }
    
        /**
         * Stores parsed data from response into result data.
         * Processes HTML content using XPath expressions and handles robots tags.
         *
         * @param responseData the response data from crawling
         * @param resultData the result data to store processed information
         */
        @Override
        protected void storeData(final ResponseData responseData, final ResultData resultData) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                }
            }
            writeJsonResponse(HttpServletResponse.SC_METHOD_NOT_ALLOWED, escapeJsonKeyValue(MESSAGE_FIELD, method + " is not allowed."));
            return false;
        }
    
        /**
         * Processes a scroll search request.
         * @param request The HTTP request.
         * @param response The HTTP response.
         * @param chain The filter chain.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Futures.java

        @SuppressWarnings("nullness")
        ListenableFuture<List<V>> nonNull = nullable;
        return nonNull;
      }
    
      /**
       * Creates a {@link FutureCombiner} that processes the completed futures whether or not they're
       * successful.
       *
       * <p>Any failures from the input futures will not be propagated to the returned future.
       *
       * @since 20.0
       */
      @SafeVarargs
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                }
            } catch (final Exception e) {
                logger.warn("Failed to get sAMAccountName: {}", groupName, e);
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Processes sub-roles for the specified LDAP user.
         *
         * @param ldapUser the LDAP user to process sub-roles for
         * @param bindDn the bind DN for LDAP connection
         * @param subRoleSet the set of sub-roles to process
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    job.template.script=return container.getComponent("crawlJob").logLevel("info").webConfigIds([{0}] as String[]).fileConfigIds([{1}] as String[]).dataConfigIds([{2}] as String[]).jobExecutor(executor).execute();
    # Maximum number of crawler processes.
    job.max.crawler.processes=0
    # Default script language for jobs.
    job.default.script=groovy
    # Pattern to filter system properties for jobs.
    job.system.property.filter.pattern=
    
    # Number of processors to use.
    processors=0
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        }
    
        /**
         * Gets the URL link for a document with proper protocol handling.
         * Handles file, SMB, FTP, and HTTP protocols.
         *
         * @param document the document data map
         * @return the processed URL link
         */
        public String getUrlLink(final Map<String, Object> document) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt

                          .build(),
                      )
                    val response = call.execute()
                    assertThat(response.body.string()).isEqualTo("ABC")
                    // Wait until the GOAWAY has been processed.
                    val connection = chain.connection() as RealConnection?
                    while (connection!!.isHealthy(false));
                  }
                  return chain.proceed(chain.request())
                }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 73.4K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.3.md

        * Specifically the new controller watches the API server for scheduled pods. It processes each pod and ensures that any volumes that implement the volume Attacher interface are attached to the node their pod is scheduled to.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top