Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,387 for param3 (0.12 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

            return new Extractor() {
                @Override
                public ExtractData getText(final InputStream in, final Map<String, String> params) {
                    for (final Extractor extractor : extractors) {
                        try {
                            return extractor.getText(in, params);
                        } catch (final UnsupportedExtractException e) {
                            if (logger.isDebugEnabled()) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

        }
    
        /**
         * Sets the initialization parameter map for all clients.
         * @param params The map of parameters.
         */
        public void setInitParameterMap(final Map<String, Object> params) {
            if (params != null) {
                for (final CrawlerClient client : clientMap.values()) {
                    client.setInitParameterMap(params);
                }
            }
        }
    
        /**
         * Sets the client map.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java

         *
         * @param builder The XContentBuilder to write to.
         * @param params Additional parameters for the conversion.
         * @return The XContentBuilder with the access result data.
         * @throws IOException if the conversion fails.
         */
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            builder.startObject();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/MimeTypeHelper.java

         * @param is the input stream to analyze
         * @param filename the filename to help determine the content type
         * @return the detected content type
         */
        String getContentType(InputStream is, String filename);
    
        /**
         * Determines the content type of the given input stream using the provided parameters.
         * @param is the input stream to analyze
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. api/maven-api-plugin/pom.xml

                  </models>
                  <templates>
                    <template>model.vm</template>
                  </templates>
                  <params>
                    <param>packageModelV4=org.apache.maven.api.plugin.descriptor</param>
                  </params>
                </configuration>
              </execution>
              <execution>
                <id>modello-lifecycle</id>
                <goals>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sun Jun 29 22:37:39 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java

        /**
         * Returns the password for the given parameters.
         * @param params The parameters.
         * @return The password.
         */
        protected String getPassword(final Map<String, String> params) {
            final String url = params != null ? params.get(ExtractData.URL) : null;
            if (!passwordMap.isEmpty()) {
                final String resourceName = params != null ? params.get(ExtractData.RESOURCE_NAME_KEY) : null;
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java

         * Sets the initialization parameters for the underlying CrawlerClient.
         *
         * @param params a map of parameter names and values to be set
         */
        public void setInitParameterMap(final Map<String, Object> params) {
            client.setInitParameterMap(params);
        }
    
        /**
         * Executes the request with retry logic.
         * @param request The request data.
         * @return The response data.
         */
        @Override
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java

         */
        private final Map<String, String> params;
    
        /**
         * Constructs a new FieldConfigs instance with the specified parameter map.
         *
         * @param params the map containing field names as keys and configuration values as values
         */
        public FieldConfigs(final Map<String, String> params) {
            this.params = params;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/query/DefaultQueryBuilder.java

            queryBuilder.visit(visitor);
        }
    
        @Override
        public XContentBuilder toXContent(final XContentBuilder builder, final Params params) throws IOException {
            return queryBuilder.toXContent(builder, params);
        }
    
        @Override
        public void writeTo(final StreamOutput out) throws IOException {
            queryBuilder.writeTo(out);
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

              InvocationTargetException,
              FactoryMethodReturnsNullException {
        List<Parameter> params = factory.getParameters();
        List<FreshValueGenerator> argGenerators = Lists.newArrayListWithCapacity(params.size());
        List<@Nullable Object> args = Lists.newArrayListWithCapacity(params.size());
        for (Parameter param : params) {
          FreshValueGenerator generator = newFreshValueGenerator();
          argGenerators.add(generator);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
Back to top