Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 691 for field3 (0.04 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                builder.setFetchSource(fields, null);
                queryHelper.processSearchPreference(builder, userBean, String.join(StringUtil.EMPTY, docIds));
                return true;
            });
        }
    
        /**
         * Updates a single field of a document.
         *
         * @param id The document ID to update
         * @param field The field name to update
         * @param value The new value for the field
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            result = ParameterUtil.createConfigParameterMap(configParameters);
            assertEquals(2, result.get(ConfigName.FIELD).size());
            assertEquals("standard", result.get(ConfigName.FIELD).get("analyzer"));
            assertEquals("true", result.get(ConfigName.FIELD).get("store"));
    
            // Test with mixed parameters
            configParameters =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        /** The set of field names for content. */
        protected final Set<String> contentFieldNameSet = new HashSet<>();
    
        /** The set of field names for tags. */
        protected final Set<String> tagFieldNameSet = new HashSet<>();
    
        /** The set of field names for roles. */
        protected final Set<String> roleFieldNameSet = new HashSet<>();
    
        /** The list of content field names. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        /** Mapping type for array fields. */
        public static final String MAPPING_TYPE_ARRAY = "array";
    
        /** Mapping type for string fields. */
        public static final String MAPPING_TYPE_STRING = "string";
    
        /** Mapping type for long fields. */
        public static final String MAPPING_TYPE_LONG = "long";
    
        /** Mapping type for double fields. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/CollectionFuture.java

        extends AggregateFuture<V, C> {
      /*
       * We access this field racily but safely. For discussion of a similar situation, see the comments
       * on the fields of TimeoutFuture. This field is slightly different from the fields discussed
       * there: cancel() never reads this field, only writes to it. That makes the race here completely
       * harmless, rather than just 99.99% harmless.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

            final String[] fields = getParamValueArray(request, "facet.field");
            final String[] queries = getParamValueArray(request, "facet.query");
            if (fields.length == 0 && queries.length == 0) {
                return null;
            }
            final FacetInfo facetInfo = new FacetInfo();
            facetInfo.field = fields;
            facetInfo.query = queries;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top