Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,643 for a_param (0.17 sec)

  1. src/main/java/org/codelibs/fess/util/WebApiUtil.java

         *
         * @param name The attribute name
         * @param value The attribute value
         */
        public static void setObject(final String name, final Object value) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value));
        }
    
        /**
         * Gets an object from the current request attributes.
         *
         * @param <T> The type of the object
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/ServerResponseValidator.java

        private final AtomicLong integerOverflowsPrevented = new AtomicLong(0);
    
        /**
         * Validate SMB response buffer bounds
         *
         * @param buffer the buffer to validate
         * @param expectedSize expected minimum size
         * @param maxSize maximum allowed size
         * @throws SmbException if validation fails
         */
        public void validateBuffer(byte[] buffer, int expectedSize, int maxSize) throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/net/URLUtil.java

            }
        }
    
        /**
         * Creates a <code>URL</code> by parsing the specified spec within the specified context.
         *
         * @param context
         *            The context in which to parse the spec. Must not be {@literal null}.
         * @param spec
         *            A string to be parsed as a <code>URL</code>. Must not be {@literal null} or empty.
         * @return A <code>URL</code>.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/lang/ModifierUtil.java

         *
         * @param modifier
         *            the modifier to check
         * @return true if public, static, and final, false otherwise
         */
        public static boolean isPublicStaticFinal(final int modifier) {
            return isPublic(modifier) && isStatic(modifier) && isFinal(modifier);
        }
    
        /**
         * Checks if the specified modifier is public.
         *
         * @param modifier
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

         * Configures the cookie with security settings including domain, path, secure flag, and HTTP-only flag.
         *
         * @param userCode the user code to store in the cookie
         * @param age the maximum age of the cookie in seconds
         */
        protected void updateCookie(final String userCode, final int age) {
            final Cookie cookie = new Cookie(cookieName, userCode);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java

         *
         * @param config the configuration
         */
        public SmbComReadAndX(final Configuration config) {
            super(config, SMB_COM_READ_ANDX);
            this.openTimeout = 0xFFFFFFFF;
        }
    
        /**
         * Constructs a Read AndX request with parameters.
         *
         * @param config the configuration
         * @param fid the file identifier
         * @param offset the file offset to read from
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java

         *
         * @param cipherId
         *            negotiated cipher identifier
         * @param dialect
         *            SMB dialect version
         * @param encryptionKey
         *            key for client->server encryption
         * @param decryptionKey
         *            key for server->client decryption
         * @param keyManager
         *            secure key manager
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/dcerpc/ndr/NdrBuffer.java

                i--;
            }
            return n;
        }
    
        /**
         * Writes an octet array to the buffer.
         *
         * @param b the byte array to write
         * @param i the starting index in the array
         * @param l the number of bytes to write
         */
        public void writeOctetArray(final byte[] b, final int i, final int l) {
            System.arraycopy(b, i, buf, index, l);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/info/Smb2SetInfoRequest.java

         *
         * @param config
         *            the configuration to use for this request
         */
        public Smb2SetInfoRequest(final Configuration config) {
            this(config, Smb2Constants.UNSPECIFIED_FILEID);
        }
    
        /**
         * Constructs a SMB2 set info request with the specified configuration and file ID
         *
         * @param config
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         *
         * @param documentList The list of documents returned by the search
         * @param allRecordCount The total number of matching records
         * @param allRecordCountRelation The relation type for the record count
         * @param queryTime The time taken to execute the query in milliseconds
         * @param partialResults Whether the results are partial
         * @param facetResponse The facet response containing aggregated data
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top