Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 455 for setting (0.03 sec)

  1. src/main/java/org/codelibs/core/collection/Maps.java

    import java.util.concurrent.ConcurrentHashMap;
    
    /**
     * Utility class for easily creating and setting values in {@link Map} instances.
     * <p>
     * By statically importing this class, you can easily initialize {@literal Map} instances as follows:
     * </p>
     *
     * <pre>
     * import static org.codelibs.core.collection.Maps.*;
     *
     * Map&lt;String, Integer&gt; map = map("a", 1).$("b", 2).$("c", 3).$();
     * </pre>
     *
     * @author koichik
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            method.setAccessible(true);
    
            Map<String, String> dataMap = new HashMap<>();
            dataMap.put("key1", "value1");
            dataMap.put("key2", "");
            dataMap.put("key3", null);
    
            // Test with existing value
            String result1 = (String) method.invoke(crawler, dataMap, "key1", "default");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  3. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       *
       * <p>Suppose {@code x} is a queue known to contain only strings. The following code can be used
       * to dump the queue into a newly allocated array of {@code String}:
       *
       * <pre>
       *     String[] y = x.toArray(new String[0]);</pre>
       *
       * <p>Note that {@code toArray(new Object[0])} is identical in function to {@code toArray()}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java

            final List<String> commands =
                    Arrays.asList("convert ${url} ${outputFile}", "echo Processing ${url} to ${outputFile}", "cp ${url} ${outputFile}");
    
            final String tempPath = "/tmp/test.tmp";
            final String outputPath = "/tmp/output.jpg";
    
            // Simulate the variable replacement logic from the source code
            final List<String> processedCommands = new ArrayList<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 16.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/CrawlJob.java

         */
        protected String[] fileConfigIds;
    
        /**
         * Array of data source crawling configuration IDs to process.
         * If null, all available data configurations will be crawled (when no other config IDs are specified).
         */
        protected String[] dataConfigIds;
    
        /**
         * Document expiration setting in days.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         * @return an OptionalThing containing the pipeline string if found, or empty if not found or blank
         */
        public OptionalThing<String> getPipeline(final String configId) {
            final CrawlingConfig config = getCrawlingConfig(configId);
            if (config == null) {
                return OptionalThing.empty();
            }
            final String pipeline = config.getConfigParameterMap(ConfigName.CONFIG).get(Config.PIPELINE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.3.md

        * In order to remain backwards compatible, the new controller only manages attach/detach of volumes that are scheduled to nodes that opt-in to controller management. Nodes running v1.3 or higher of Kubernetes opt-in to controller management by default by setting the "volumes.kubernetes.io/controller-managed-attach-detach" annotation on the Node object...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  8. android/pom.xml

                  <annotation>com.google.common.collect.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.collect.testing.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.collect.testing.testers.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.hash.IgnoreJRERequirement</annotation>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  9. pom.xml

                  <annotation>com.google.common.collect.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.collect.testing.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.collect.testing.testers.IgnoreJRERequirement</annotation>
                  <annotation>com.google.common.hash.IgnoreJRERequirement</annotation>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_label.properties

    labels.wizard_start_title=Easy Setup
    labels.wizard_start_desc=You can create a crawl setting easily by using Configuration Wizard.
    labels.wizard_start_button=Start Setup
    labels.wizard_button_cancel=Cancel
    labels.wizard_crawling_config_title=Crawl Config
    labels.wizard_crawling_setting_title=Crawl Setting
    labels.wizard_crawling_config_name=Name
    labels.wizard_crawling_config_path=Crawl Path
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top