Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 899 for Assets (0.04 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java

        public void close() {
            isFinished.set(true);
            queue.clear();
        }
    
        /**
         * Sets the scroll size.
         * @param scrollSize The scroll size.
         */
        public void setScrollSize(final int scrollSize) {
            this.scrollSize = scrollSize;
        }
    
        /**
         * Sets the limit of document size.
         * @param limitOfDocumentSize The limit of document size.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

        /**
         * Sets the index name.
         * @param index The index name.
         */
        public void setIndex(final String index) {
            this.index = index;
        }
    
        /**
         * Sets the size of results.
         * @param size The size.
         */
        public void setSize(final int size) {
            this.size = size;
        }
    
        /**
         * Sets the seed for random function.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

        /**
         * Initializes the query field configuration by loading field mappings from FessConfig.
         * This method is called after dependency injection is complete.
         * It sets up response fields, search fields, facet fields, sort fields, and other
         * field configurations based on the application configuration.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XmlTransformer.java

        public boolean isIncludeAware() {
            return includeAware;
        }
    
        /**
         * Sets the includeAware.
         *
         * @param includeAware the includeAware to set
         */
        public void setIncludeAware(final boolean includeAware) {
            this.includeAware = includeAware;
        }
    
        /**
         * Sets the cache duration.
         * @param cacheDuration The cache duration in minutes.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  5. cmd/metacache-server-pool.go

    			if err == nil || err == io.EOF {
    				return entries, err
    			}
    			entries.truncate(0)
    		} else {
    			if o.pool < len(z.serverPools) && o.set < len(z.serverPools[o.pool].sets) {
    				o.debugln("Resuming", o)
    				entries, err = z.serverPools[o.pool].sets[o.set].streamMetadataParts(ctx, *o)
    				entries.reuse = true // We read from stream and are not sharing results.
    				if err == nil {
    					return entries, nil
    				}
    			} else {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon May 26 07:06:43 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

        }
    
        /**
         * Gets the base path for storing files.
         *
         * @return the base path
         */
        public String getPath() {
            return path;
        }
    
        /**
         * Sets the base path for storing files.
         *
         * @param path the base path to set
         */
        public void setPath(final String path) {
            this.path = path;
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/entity/SuggestItem.java

         */
        public ZonedDateTime getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the text of the suggest item.
         * @param text The text to set.
         */
        public void setText(final String text) {
            this.text = text;
        }
    
        /**
         * Sets the timestamp of the suggest item.
         * @param timestamp The timestamp to set.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 25.1K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbAuthentication.java

        }
    
        /**
         * Sets the SMB server address.
         * @param server the server address to set
         */
        public void setServer(final String server) {
            this.server = server;
        }
    
        /**
         * Returns the SMB server port.
         * @return the server port
         */
        public int getPort() {
            return port;
        }
    
        /**
         * Sets the SMB server port.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

         */
        public Method getMethod() {
            return method;
        }
    
        /**
         * Sets the HTTP method for this request.
         * @param method the HTTP method
         */
        public void setMethod(final Method method) {
            this.method = method;
        }
    
        /**
         * Sets the HTTP method for this request using a string value.
         * Defaults to GET if the method is not recognized.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/misc/Tuple3.java

            this.value3 = value3;
        }
    
        /**
         * Returns the first value.
         *
         * @return The first value
         */
        public T1 getValue1() {
            return value1;
        }
    
        /**
         * Sets the first value.
         *
         * @param value1
         *            The first value
         */
        public void setValue1(final T1 value1) {
            this.value1 = value1;
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 4.6K bytes
    - Viewed (0)
Back to top