Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,896 for gets (0.56 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

            this.facetResponse = facetResponse;
        }
    
        /**
         * Gets the list of documents returned by the search query.
         *
         * @return The list of search result documents
         */
        public List<Map<String, Object>> getDocumentList() {
            return documentList;
        }
    
        /**
         * Gets the total number of records that match the search criteria.
         *
         * @return The total record count
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/witness/WitnessHeartbeatRequest.java

        private String registrationId;
        private long sequenceNumber;
        private byte[] contextHandle;
    
        /**
         * Gets the registration ID.
         *
         * @return the registration ID
         */
        public String getRegistrationId() {
            return registrationId;
        }
    
        /**
         * Sets the registration ID.
         *
         * @param registrationId the registration ID
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.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
    - 7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/login/OpenIdConnectCredential.java

        }
    
        /**
         * Gets the user groups.
         *
         * @return the user groups
         */
        public String[] getUserGroups() {
            String[] userGroups = DocumentUtil.getValue(attributes, "groups", String[].class);
            if (userGroups == null) {
                userGroups = getDefaultGroupsAsArray();
            }
            return userGroups;
        }
    
        /**
         * Gets the OpenID Connect user.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java

            versionNo = null;
            description = 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 across all pages.
         *
         * @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.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

            createdTime = null;
            versionNo = null;
    
        }
    
        /**
         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
        public int getAllRecordCount() {
            return allRecordCount;
        }
    
        /**
         * Sets the total number of records in the result set.
         *
         * @param allRecordCount the total record count to set
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryFieldConfig.java

            return apiResponseFieldSet.contains(field);
        }
    
        /**
         * Gets the fields that are included in standard search responses.
         *
         * @return array of field names for standard search responses
         */
        public String[] getResponseFields() {
            return responseFields;
        }
    
        /**
         * Sets the fields that are included in standard search responses.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/JobLogPager.java

            scriptType = null;
            startTime = 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 across all pages.
         *
         * @return the total number of records
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/BuilderProblem.java

        @Nonnull
        String getSource();
    
        /**
         * Gets the one-based index of the line containing the problem. The line number should refer to some text file that
         * is given by {@link #getSource()}.
         *
         * @return the one-based index of the line containing the problem or a non-positive value if unknown
         */
        int getLineNumber();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java

        }
    
        /**
         * Gets the new lease state after the break
         * @return the new lease state
         */
        public int getNewLeaseState() {
            return newLeaseState;
        }
    
        /**
         * Gets the reason for the lease break
         * @return the break reason
         */
        public int getBreakReason() {
            return breakReason;
        }
    
        /**
         * Gets the lease flags from the notification
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top