Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,980 for gets (0.01 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/BaseSearchBody.java

            // Default constructor
        }
    
        /**
         * Gets the page size for search results.
         * @return The page size.
         */
        public int getPageSize() {
            if (size != null) {
                return size;
            }
            return ComponentUtil.getFessConfig().getPagingPageSizeAsInteger();
        }
    
        /**
         * Gets the current page number for search results.
         * @return The current page number.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceException.java

            this.availableResources = -1;
            this.requestedResources = -1;
        }
    
        /**
         * Gets the resource type
         *
         * @return the resource type
         */
        public ResourceType getResourceType() {
            return resourceType;
        }
    
        /**
         * Gets available resources
         *
         * @return available resources or -1 if unknown
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

                this.active = true;
            }
    
            /**
             * Gets the path of the directory being monitored
             * @return the directory path
             */
            public String getDirectoryPath() {
                return directoryPath;
            }
    
            /**
             * Gets the lease key associated with this notification handle
             * @return the lease key
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            accessType = null;
            logType = LOG_TYPE_SEARCH;
    
        }
    
        /**
         * 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 matching 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)
  6. src/main/java/jcifs/pac/PacSidAttributes.java

            this.id = id;
            this.attributes = attributes;
        }
    
        /**
         * Gets the Security Identifier.
         *
         * @return the SID associated with this instance
         */
        public SID getId() {
            return this.id;
        }
    
        /**
         * Gets the attribute flags associated with the SID.
         *
         * @return the attribute flags
         */
        public int getAttributes() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        String getProjectId();
    
        /**
         * Gets the POM file from which the project was built.
         *
         * @return the optional POM file
         */
        @Nonnull
        Optional<Path> getPomFile();
    
        /**
         * Gets the project that was built.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/AuthenticationProvider.java

         */
        byte[] authenticate(CIFSContext context, byte[] challenge) throws CIFSException;
    
        /**
         * Gets the session key after successful authentication
         *
         * @return the session key or null if not available
         */
        byte[] getSessionKey();
    
        /**
         * Gets the signing key for SMB2/3
         *
         * @return the signing key or null if not available
         */
        byte[] getSigningKey();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java

            return nameId;
        }
    
        /**
         * Gets the SAML user.
         * @return The SAML user.
         */
        public SamlUser getUser() {
            return new SamlUser(nameId, sessionIndex, nameIdFormat, nameidNameQualifier, nameidSPNameQualifier, getDefaultGroupsAsArray(),
                    getDefaultRolesAsArray());
        }
    
        /**
         * Gets the default groups as an array.
         * @return The default groups as an array.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

         */
        protected void registerBugReportItems(final RenderData data) {
            RenderDataUtil.register(data, "bugReportItems", getBugReportItems());
        }
    
        /**
         * Gets a list of environment variables as key-value pairs.
         *
         * @return list of environment variable items
         */
        public static List<Map<String, String>> getEnvItems() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top