Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 839 for seus (0.04 sec)

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

         * Gets the total number of records across all pages.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records across all pages.
         *
         * @param allRecordCount the total record count
         */
        public void setAllRecordCount(final int allRecordCount) {
            this.allRecordCount = allRecordCount;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/jcifs/internal/smb2/io/Smb2ReadRequest.java

            this.fileId = fileId;
        }
    
        /**
         * Sets the padding for the read request
         *
         * @param padding
         *            the padding to set
         */
        public void setPadding(final byte padding) {
            this.padding = padding;
        }
    
        /**
         * Sets the read flags for the read operation
         *
         * @param readFlags
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/witness/WitnessHeartbeatResponse.java

        }
    
        /**
         * Gets the sequence number.
         *
         * @return the sequence number
         */
        public long getSequenceNumber() {
            return sequenceNumber;
        }
    
        /**
         * Sets the sequence number.
         *
         * @param sequenceNumber the sequence number
         */
        public void setSequenceNumber(long sequenceNumber) {
            this.sequenceNumber = sequenceNumber;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 3K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/witness/WitnessRegisterResponse.java

         *
         * @return the error description
         */
        public String getError() {
            return error != null ? error : "Error code: " + returnCode;
        }
    
        /**
         * Sets the error message.
         *
         * @param error the error message
         */
        public void setError(String error) {
            this.error = error;
        }
    
        /**
         * Gets the registration ID.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/ExecJob.java

         * This method sets the job executor and then calls the abstract execute method.
         *
         * @param jobExecutor the job executor to use for execution
         * @return the execution result message or summary
         */
        public String execute(final JobExecutor jobExecutor) {
            jobExecutor(jobExecutor);
            return execute();
        }
    
        /**
         * Sets the job executor for this job.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top