Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,980 for gets (0.03 sec)

  1. src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java

            }
    
            /**
             * Gets the name of this cached file or directory
             * @return the file name
             */
            public String getName() {
                return name;
            }
    
            /**
             * Gets the size of this cached file in bytes
             * @return the file size
             */
            public long getSize() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Response.java

         */
        void clearReceived();
    
        /**
         * Gets the number of credits granted by the server.
         *
         * @return number of credits granted by the server
         */
        int getGrantedCredits();
    
        /**
         * Gets the error status code.
         *
         * @return status code
         */
        int getErrorCode();
    
        /**
         * Sets the message ID.
         *
         * @param k the message ID to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.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.
         *
         * @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.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessVersion.java

         */
        WitnessVersion(int version) {
            this.version = version;
        }
    
        /**
         * Gets the numeric version value.
         *
         * @return the version value
         */
        public int getValue() {
            return version;
        }
    
        /**
         * Gets the major version number.
         *
         * @return the major version
         */
        public int getMajorVersion() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java

        /**
         * Default constructor.
         */
        public VirtualHostHelper() {
            // Default constructor
        }
    
        /**
         * Gets the virtual host path for the specified HTML page.
         *
         * @param page The HTML page to get the virtual host path for
         * @return The HTML page with updated virtual host path
         */
        public HtmlNext getVirtualHostPath(final HtmlNext page) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SSPContext.java

         * @return whether the specified mechanism is preferred
         */
        boolean isPreferredMech(ASN1ObjectIdentifier selectedMech);
    
        /**
         * Gets the negotiated context flags.
         * @return context flags
         */
        int getFlags();
    
        /**
         * Gets the array of supported security mechanism OIDs.
         * @return array of supported mechanism OIDs
         */
        ASN1ObjectIdentifier[] getSupportedMechs();
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                    .execute();
        }
    
        /**
         * Gets the OpenID Connect client secret.
         *
         * @return the client secret
         */
        protected String getOicClientSecret() {
            return ComponentUtil.getSystemProperties().getProperty(OIC_CLIENT_SECRET, StringUtil.EMPTY);
        }
    
        /**
         * Gets the OpenID Connect token server URL.
         *
         * @return the token server URL
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/curl/CurlResponse.java

            }
        }
    
        /**
         * Gets the content of the response using the provided parser function.
         *
         * @param <T> the type of the parsed content.
         * @param parser the function to parse the content.
         * @return the parsed content.
         */
        public <T> T getContent(final Function<CurlResponse, T> parser) {
            return parser.apply(this);
        }
    
        /**
         * Gets the content of the response as a string.
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

            this.maxCount = this.minCount = maxCount;
            this.openTimeout = 0xFFFFFFFF;
        }
    
        /**
         * Gets the maximum count of bytes to read.
         *
         * @return the maxCount
         */
        public final int getMaxCount() {
            return this.maxCount;
        }
    
        /**
         * Sets the maximum count of bytes to read.
         *
         * @param maxCount
         *            the maxCount to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/dfs/Referral.java

        }
    
        /**
         * Gets the server type of this referral.
         *
         * @return the serverType
         */
        public final int getServerType() {
            return this.serverType;
        }
    
        /**
         * Gets the referral flags.
         *
         * @return the rflags
         */
        public final int getRFlags() {
            return this.rflags;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top