Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 685 for field2 (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/go/GoForm.java

         * Specifies the language preference if redirection fails.
         */
        public String lang;
    
        /**
         * Additional fields map for error page fallback.
         * Contains extra search parameters as key-value pairs if redirection fails.
         */
        public Map<String, String[]> fields = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Serialization.java

      // Secret sauce for setting final fields; don't make it public.
      static final class FieldSetter<T> {
        private final Field field;
    
        private FieldSetter(Field field) {
          this.field = field;
          field.setAccessible(true);
        }
    
        void set(T instance, Object value) {
          try {
            field.set(instance, value);
          } catch (IllegalAccessException impossible) {
            throw new AssertionError(impossible);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java

            assertNotNull(result);
    
        }
    
        // Test with various field names
        public void test_convertFuzzyQuery_withVariousFields() {
            QueryContext context = new QueryContext("test", false);
            String[] fields = { "title", "content", "url", "site", "host", "mimetype" };
    
            for (String field : fields) {
                Term term = new Term(field, "fuzzy");
                FuzzyQuery fuzzyQuery = new FuzzyQuery(term);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/beans/FieldDesc.java

         * Returns the field.
         *
         * @return the field
         */
        Field getField();
    
        /**
         * Returns the field name.
         *
         * @return the field name
         */
        String getFieldName();
    
        /**
         * Returns the type of the field.
         *
         * @param <T>
         *            the type of the field
         * @return the type of the field
         */
        <T> Class<T> getFieldType();
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available.
    
      /*
       * The following fields are package-private, even though we intend never to use them outside this
       * file. If they were instead private, then we wouldn't be able to access them reflectively from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/QueryContext.java

        }
    
        /**
         * Adds a field and text pair to the field log for tracking query terms.
         * @param field The field name.
         * @param text The query text for this field.
         */
        public void addFieldLog(final String field, final String text) {
            if (fieldLogMap == null) {
                return;
            }
    
            List<String> list = fieldLogMap.get(field);
            if (list == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

                if (ComponentUtil.hasComponent("ingestFactory")) {
                    try {
                        java.lang.reflect.Field field = IndexUpdateCallbackImpl.class.getDeclaredField("ingestFactory");
                        field.setAccessible(true);
                        field.set(this, ComponentUtil.getComponent("ingestFactory"));
                    } catch (Exception e) {
                        // Ignore for tests
                    }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/scheduler/EditForm.java

        }
    
        /**
         * The unique identifier of the scheduler being edited.
         * This is a required field for identifying which scheduler to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The version number of the scheduler for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      // TODO(lukes): Investigate using a @Contended annotation on these fields once one is available.
    
      /*
       * The following fields are package-private, even though we intend never to use them outside this
       * file. If they were instead private, then we wouldn't be able to access them reflectively from
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/net/HttpHeaders.java

      public static final String DATE = "Date";
    
      /** The HTTP {@code Pragma} header field name. */
      public static final String PRAGMA = "Pragma";
    
      /** The HTTP {@code Via} header field name. */
      public static final String VIA = "Via";
    
      /** The HTTP {@code Warning} header field name. */
      public static final String WARNING = "Warning";
    
      // HTTP Request header fields
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Mar 27 20:37:16 UTC 2025
    - 35.4K bytes
    - Viewed (0)
Back to top