Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 203 for lista (0.02 sec)

  1. src/main/resources/fess_label_es.properties

    labels.related_content_list=Lista de contenido relacionado
    labels.plugin_list=Lista de complementos
    labels.pathmap_list=Lista de mapeo de rutas
    labels.log_file_list=Lista de archivos de registro
    labels.labeltype_list=Lista de tipos de etiquetas
    labels.key_match_list=Lista de coincidencias de claves
    labels.job_log_list=Lista de registros de trabajos
    labels.group_list=Lista de grupos
    labels.file_config_list=Lista de configuración de archivos
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 49K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        /**
         * Sets the Lasta environment configuration.
         *
         * @param env the Lasta environment string
         * @return this ExecJob instance for method chaining
         */
        public ExecJob lastaEnv(final String env) {
            lastaEnv = env;
            return this;
        }
    
        /**
         * Adds a system property to the command list.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/storage/StorageClient.java

         */
        void deleteObject(String objectName);
    
        /**
         * Lists objects in storage with the given prefix.
         *
         * @param prefix the path prefix to list objects under (null or empty for root)
         * @param maxItems maximum number of items to return
         * @return list of storage items
         */
        List<StorageItem> listObjects(String prefix, int maxItems);
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

        /** Character used to separate cache key components */
        protected static final char CACHE_KEY_SPLITTER = '\n';
    
        /** Cache for storing popular word lists */
        protected Cache<String, List<String>> cache;
    
        /** Fess configuration instance */
        protected FessConfig fessConfig;
    
        /**
         * Default constructor.
         */
        public PopularWordHelper() {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

            }
            return 0;
        }
    
        /**
         * Gets the list of process types.
         *
         * @return the list of process types
         */
        protected List<String> getProcessTypeList() {
            final List<String> ptList = new ArrayList<>();
            final String executeType = System.getProperty("lasta.env");
            if (Constants.EXECUTE_TYPE_CRAWLER.equalsIgnoreCase(executeType)) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java

            // Test parsing mixed fields and lists
            String xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + "<doc>\n" + "  <field name=\"title\">Test Title</field>\n"
                    + "  <field name=\"tags\">\n" + "    <list>\n" + "      <item>java</item>\n" + "      <item>xml</item>\n" + "    </list>\n"
                    + "  </field>\n" + "  <field name=\"content\">Test Content</field>\n" + "</doc>";
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

                    list.add(entity);
                }
            });
            taskList.clear();
            if (logger.isDebugEnabled()) {
                logger.debug("Storing {} thumbnail tasks.", list.size());
            }
            final ThumbnailQueueBhv thumbnailQueueBhv = ComponentUtil.getComponent(ThumbnailQueueBhv.class);
            thumbnailQueueBhv.batchInsert(list);
        }
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

         *
         * @param form the search form for filtering
         * @return HTML response for the web authentication list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    
        /**
         * Displays a paginated list of web authentication configurations.
         *
         * @param pageNumber the page number to display (optional)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 19.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                });
                final List<Artifact> list = new ArrayList<>(jarFiles.length);
                for (final File file : jarFiles) {
                    list.add(getArtifactFromFileName(artifactType, file.getName()));
                }
                list.sort(Comparator.comparing(Artifact::getName));
                return list.toArray(new Artifact[list.size()]);
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileconfig/AdminFileconfigAction.java

        /**
         * Displays the file configuration list page.
         *
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the file configuration list with pagination.
         *
         * @param pageNumber the page number
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top