Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,980 for gets (0.05 sec)

  1. src/main/java/jcifs/internal/witness/WitnessNotification.java

        /**
         * Gets the notification timestamp.
         *
         * @return the timestamp
         */
        public long getTimestamp() {
            return timestamp;
        }
    
        /**
         * Sets the timestamp.
         *
         * @param timestamp the timestamp
         */
        public void setTimestamp(long timestamp) {
            this.timestamp = timestamp;
        }
    
        /**
         * Gets the list of new IP addresses.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            createdTime = null;
            versionNo = null;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return the default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/FileEntry.java

     *
     */
    public interface FileEntry {
    
        /**
         * Gets the file name.
         *
         * @return the file name
         */
        String getName();
    
        /**
         * Gets the file type.
         *
         * @return the file type
         */
        int getType();
    
        /**
         * Gets the file attributes.
         *
         * @return the file attributes
         */
        int getAttributes();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SystemHelper.java

        }
    
        /**
         * Gets the design JSP file name for a given key.
         *
         * @param fileName The key for the JSP file.
         * @return The file name.
         */
        public String getDesignJspFileName(final String fileName) {
            return designJspFileNameMap.get(fileName);
        }
    
        /**
         * Gets an array of design JSP file names.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/QueryHelper.java

            }
        }
    
        /**
         * Gets the query parser instance for parsing search query strings.
         *
         * @return the configured query parser
         */
        protected QueryParser getQueryParser() {
            return ComponentUtil.getQueryParser();
        }
    
        /**
         * Processes and sets search preferences for routing search requests to appropriate OpenSearch shards.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/FileEntry.java

     */
    public interface FileEntry {
    
        /**
         * Gets the name of the file or directory.
         *
         * @return the file or directory name
         */
        String getName();
    
        /**
         * Gets the type of the entry.
         *
         * @return the entry type
         */
        int getType();
    
        /**
         * Gets the file attributes.
         *
         * @return the file attributes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 881 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public <T> T[] toArray(final T[] a) {
            return parent.toArray(a);
        }
    
        /**
         * Gets the starting position of the current page in the overall result set.
         *
         * @return the start position (0-based)
         */
        public int getStart() {
            return start;
        }
    
        /**
         * Gets the offset value used for pagination calculations.
         *
         * @return the offset value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextResponse.java

        }
    
        @Override
        public byte[] getName() {
            return CONTEXT_NAME_BYTES;
        }
    
        /**
         * Gets the lease key from the server response
         * @return the lease key
         */
        public Smb2LeaseKey getLeaseKey() {
            return leaseKey;
        }
    
        /**
         * Gets the lease state granted by the server
         * @return the granted lease state
         */
        public int getLeaseState() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/pager/SynonymPager.java

            id = null;
        }
    
        /**
         * Gets the default page size from the Fess configuration.
         *
         * @return The default page size.
         */
        protected int getDefaultPageSize() {
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        /**
         * Gets the default current page number, which is 1.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbException.java

        }
    
        /**
         * Gets the error severity
         *
         * @return the severity
         */
        public Severity getSeverity() {
            return severity;
        }
    
        /**
         * Gets the error category
         *
         * @return the category
         */
        public Category getCategory() {
            return category;
        }
    
        /**
         * Gets the error context
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
Back to top