Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 333 for fieldset (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

                assertEquals(FessUserTimeZoneProcessProvider.centralTimeZone, providedTimeZone);
            } else {
                // Cannot test due to reflection access limitations
                assertTrue("Cannot access DBFluteSystem fields via reflection", true);
            }
        }
    
        public void test_processDBFluteSystem_setsTimeZoneProvider() {
            // When
            curtainBeforeHook.processDBFluteSystem();
    
            // Then
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/FacetInfoTest.java

        }
    
        // Test field assignment
        public void test_fieldAssignment() {
            String[] fields = new String[] { "field1", "field2", "field3" };
            facetInfo.field = fields;
            assertNotNull(facetInfo.field);
            assertEquals(3, facetInfo.field.length);
            assertSame(fields, facetInfo.field);
        }
    
        // Test size assignment
        public void test_sizeAssignment() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

        public Integer pn;
    
        /** The number of results to display. */
        @ValidateTypeFailure
        public Integer num;
    
        /** The languages. */
        public String[] lang;
    
        /** The fields. */
        public Map<String, String[]> fields = new HashMap<>();
    
        /** The conditions. */
        public Map<String, String[]> as = new HashMap<>();
    
        /** The extra queries. */
        public String[] ex_q;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java

        /** Sort parameter for error page. */
        public String sort;
    
        /** Language parameter for error page. */
        public String lang;
    
        /** Additional fields map for cache operations. */
        public Map<String, String[]> fields = new HashMap<>();
    
        /**
         * Default constructor for CacheForm.
         */
        public CacheForm() {
            super();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/search/SearchAction.java

            final StringBuilder buf = new StringBuilder(100);
            buf.append(form.q);
            if (!form.fields.isEmpty() && form.fields.containsKey(LABEL_FIELD)) {
                final String[] values = form.fields.get(LABEL_FIELD);
                final List<String> labelList = new ArrayList<>();
                if (values != null) {
                    Collections.addAll(labelList, values);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java

            }
        }
    
        /**
         * Prepares the fields.
         */
        protected void setupFieldDescs() {
            if (beanClass.isInterface()) {
                setupFieldDescsByInterface(beanClass);
            } else {
                setupFieldDescsByClass(beanClass);
            }
        }
    
        /**
         * Prepares the fields defined in the interface.
         *
         * @param interfaceClass
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 25.8K bytes
    - Viewed (1)
  7. guava/src/com/google/common/collect/EnumBiMap.java

       *
       * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use
       * them under J2CL—or, as an unfortunate side effect, under GWT. We do still give the fields
       * themselves their proper values under GWT, since GWT's EnumMap does need the Class instance.
       *
       * Note that sometimes these fields *do* have correct values under J2CL: They will if the caller
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/TimeoutFuture.java

        delegate.addListener(fire, directExecutor());
        return result;
      }
    
      /*
       * Memory visibility of these fields. There are two cases to consider.
       *
       * 1. visibility of the writes to these fields to Fire.run:
       *
       * The initial write to delegateRef is made definitely visible via the semantics of
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Headers.kt

    import okhttp3.internal.unmodifiable
    import org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
    
    /**
     * The header fields of a single HTTP message. Values are uninterpreted strings; use `Request` and
     * `Response` for interpreted headers. This class maintains the order of the header fields within
     * the HTTP message.
     *
     * This class tracks header values line-by-line. A field with multiple comma- separated values on
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:51:25 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  10. mockwebserver-junit5/README.md

    This module integrates mockwebserver3.MockWebServer with JUnit 5.
    
    To use, first add this library as a test dependency:
    
    ```
    testImplementation("com.squareup.okhttp3:mockwebserver3-junit5:5.1.0")
    ```
    
    Annotate fields in test classes with `@StartStop`. The server will be started and shut down
    automatically.
    
    ```
    class MyTest {
    
      @StartStop
      public final MockWebServer server = new MockWebServer();
    
      @Test
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 665 bytes
    - Viewed (0)
Back to top