Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 169 for array1 (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/api/chat/ChatApiManager.java

         * Parses and validates extra query parameters from the request.
         * Only configured facet query values are accepted to prevent query injection.
         *
         * @param request the HTTP request
         * @return an array of validated extra query strings
         */
        protected String[] parseExtraQueries(final HttpServletRequest request) {
            final String[] extraQueries = request.getParameterValues("ex_q");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 06:06:55 GMT 2026
    - 25.8K bytes
    - Click Count (0)
  2. src/main/resources/fess_message.properties

    errors.property_type_long={0} must be a long.
    errors.property_type_float={0} must be a float.
    errors.property_type_double={0} must be a double.
    errors.property_type_date={0} must be a date.
    errors.property_type_array={0} must be an array.
    
    errors.storage_file_upload_failure=Failed to upload {0}.
    errors.storage_file_not_found=The target file does not exist in the storage.
    errors.storage_file_download_failure=Failed to download {0}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  3. src/main/resources/fess_message_en.properties

    errors.property_type_long={0} must be a long.
    errors.property_type_float={0} must be a float.
    errors.property_type_double={0} must be a double.
    errors.property_type_date={0} must be a date.
    errors.property_type_array={0} must be an array.
    
    errors.storage_file_upload_failure=Failed to upload {0}.
    errors.storage_file_not_found=The target file does not exist in the storage.
    errors.storage_file_download_failure=Failed to download {0}.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 12.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                WebApiUtil.setObject("booleanValue", true);
                WebApiUtil.setObject("objectValue", new Object());
    
                // Test with collections
                java.util.List<String> list = java.util.Arrays.asList("item1", "item2");
                WebApiUtil.setObject("listValue", list);
    
                java.util.Map<String, String> map = new java.util.HashMap<>();
                map.put("key", "value");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  5. src/main/resources/fess_message_es.properties

    success.crud_delete_crud_table = Datos eliminados.
    errors.front_footer=
    errors.front_header=
    errors.front_prefix=<div class="alert alert-warning">
    errors.front_suffix=</div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/ds/DataStoreFactoryTest.java

                assertNull(exceptions[i], "Thread " + i + " threw exception");
                assertNotNull(results[i], "Thread " + i + " got null result");
                Assertions.assertEquals(3, results[i].length, "Thread " + i + " got wrong array length");
            }
        }
    
        /**
         * Test that volatile fields ensure visibility across threads.
         * Verify that changes to lastLoadedTime are visible to all threads.
         */
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.2K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

            assertTrue(pattern.contains("password"));
            assertTrue(pattern.contains("key"));
            assertTrue(pattern.contains("token"));
            assertTrue(pattern.contains("secret"));
        }
    
        // Test array field parsing
        @Test
        public void test_arrayFieldParsing() {
            // Test parsing of comma-separated values
            String[] arrayFields = fessConfig.getIndexAdminArrayFields().split(",");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 24.6K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/llm/LlmClientManager.java

         */
        protected boolean isRagChatEnabled() {
            return ComponentUtil.getFessConfig().isRagChatEnabled();
        }
    
        /**
         * Gets all registered LLM clients.
         *
         * @return Array of all registered LLM clients
         */
        public LlmClient[] getClients() {
            return clientList.toArray(new LlmClient[clientList.size()]);
        }
    
        /**
         * Registers an LLM client with this manager.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 11:10:51 GMT 2026
    - 17.4K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                                <c:choose>
                                                    <c:when test="${extraFieldTypes[fieldName] == 'array'}">
                                                        <la:textarea styleId="doc.${f:h(fieldName)}"
                                                                     property="doc.${f:h(fieldName)}"
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:38:39 GMT 2026
    - 28.1K bytes
    - Click Count (0)
  10. src/main/webapp/js/bootstrap.min.js.map

    DefaultType = {\n  allowList: 'object',\n  animation: 'boolean',\n  boundary: '(string|element)',\n  container: '(string|element|boolean)',\n  customClass: '(string|function)',\n  delay: '(number|object)',\n  fallbackPlacements: 'array',\n  html: 'boolean',\n  offset: '(array|string|function)',\n  placement: '(string|function)',\n  popperConfig: '(null|object|function)',\n  sanitize: 'boolean',\n  sanitizeFn: '(null|function)',\n  selector: '(string|boolean)',\n  template: 'string',\n  title: '(str...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 12 06:14:02 GMT 2025
    - 211.9K bytes
    - Click Count (0)
Back to Top