Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 967 for field5 (0.07 sec)

  1. 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)
  2. 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)
  3. src/main/java/org/codelibs/fess/query/QueryCommand.java

            }
            return SortBuilders.fieldSort(field).order(order);
        }
    
        /**
         * Checks if the specified field is a search field.
         * @param field The field name to check.
         * @return True if the field is a search field, false otherwise.
         */
        protected boolean isSearchField(final String field) {
            for (final String searchField : getQueryFieldConfig().searchFields) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. 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)
  5. src/test/java/jcifs/spnego/SpnegoConstantsTest.java

            assertEquals(4, c.getDeclaredFields().length, "Unexpected number of fields");
            assertEquals(0, c.getDeclaredMethods().length, "No declared methods expected");
            assertEquals(0, c.getDeclaredConstructors().length, "Interfaces have no constructors");
        }
    
        @Test
        @DisplayName("Fields are public static final Strings with expected values")
        void fieldModifiersAndTypes() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            }
    
            // Helper methods to access private fields using reflection
            protected void setFieldValue(String fieldName, Object value) {
                try {
                    Field field = null;
                    Class<?> clazz = this.getClass();
                    while (clazz != null && field == null) {
                        try {
                            field = clazz.getDeclaredField(fieldName);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top