Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for multi (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         * Defines how search results are ordered when no specific sort is requested.
         */
        @Size(max = 1000)
        public String defaultSortValue;
    
        /**
         * Virtual host configuration for multi-tenant setups.
         * Allows different search configurations based on the request host.
         */
        @Size(max = 10000)
        public String virtualHostValue;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

            assertEquals("", crawlingInfoHelper.getCanonicalSessionId("-suffix"));
            assertEquals("prefix", crawlingInfoHelper.getCanonicalSessionId("prefix-"));
            assertEquals("multi", crawlingInfoHelper.getCanonicalSessionId("multi-part-session"));
        }
    
        public void test_putToInfoMap() {
            // Test initial null map
            crawlingInfoHelper.putToInfoMap("key1", "value1");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  3. samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt

        var random: String? = null
        lateinit var currentThread: Thread
    
        private val loggerHandler =
          object : Handler() {
            override fun publish(record: LogRecord) {
              // Try to avoid multi threading issues with concurrent requests
              if (Thread.currentThread() != currentThread) {
                return
              }
    
              // https://timothybasanov.com/2016/05/26/java-pre-master-secret.html
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. android/pom.xml

                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
                  <manifestEntries>
                    <Multi-Release>true</Multi-Release>
                  </manifestEntries>
                </archive>
              </configuration>
              <dependencies>
                <dependency>
                  <groupId>org.codehaus.plexus</groupId>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  5. pom.xml

                  <exclude>META-INF/versions/9/com/**/*.class</exclude>
                </excludes>
                <archive>
                  <manifestEntries>
                    <Multi-Release>true</Multi-Release>
                  </manifestEntries>
                </archive>
              </configuration>
              <dependencies>
                <dependency>
                  <groupId>org.codehaus.plexus</groupId>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryStringBuilder.java

         */
        public QueryStringBuilder() {
            // Default constructor
        }
    
        /**
         * Quotes a string value if it contains spaces.
         * Multi-word values are wrapped in double quotes with internal quotes replaced by spaces.
         *
         * @param value the string value to quote
         * @return the quoted string if it contains spaces, otherwise the original value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

        //                                     Parameter Logging
        //                                     -----------------
        // logging filter cannot show the parameters when multi-part so logging here
        protected void showFieldLoggingTitle() {
            if (logger.isDebugEnabled()) {
                logger.debug("[Multipart Request Parameter]");
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.17.md

    - Openstack: Do not delete managed LB in case of security group reconciliation errors ([#82264](https://github.com/kubernetes/kubernetes/pull/82264), [@multi-io](https://github.com/multi-io))
    - Fix aggressive VM calls for Azure VMSS ([#83102](https://github.com/kubernetes/kubernetes/pull/83102), [@feiskyer](https://github.com/feiskyer))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

        /**
         * Statistics data object that stores timestamped events and maintains reference counting.
         * Extends LinkedHashMap to store event names mapped to their timestamps.
         * Includes reference counting for multi-threaded access tracking.
         */
        public static class StatsObject extends LinkedHashMap<String, Long> {
            /** Serial version UID for serialization. */
            private static final long serialVersionUID = 1L;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/validation/UriTypeTest.java

                @Override
                public ProtocolType protocolType() {
                    return ProtocolType.WEB;
                }
    
                @Override
                public String message() {
                    return "Multi test";
                }
    
                @Override
                public Class<?>[] groups() {
                    return new Class<?>[] { TestGroup.class, AnotherTestGroup.class };
                }
    
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 21K bytes
    - Viewed (0)
Back to top