Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,718 for m_param (0.52 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

        //                                               Details
        //                                               -------
        /**
         * Show the details page.
         * @param dictId The dictionary ID.
         * @param crudMode The CRUD mode.
         * @param id The ID of the char mapping item.
         * @return The HTML response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K 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/jcifs/DfsResolver.java

         *
         * @param tf the CIFS context
         * @param domain the domain name
         * @return connection to the domain controller
         * @throws CIFSException if the connection fails
         */
        SmbTransport getDc(CIFSContext tf, String domain) throws CIFSException;
    
        /**
         * Resolve the location of a DFS path
         *
         * @param domain the domain for the DFS referral
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

        /**
         * Creates a Type-2 message in response to the given Type-1 message.
         *
         * @param tc
         *            context to use
         * @param type1
         *            The Type-1 message which this represents a response to.
         * @param challenge
         *            The challenge from the domain controller/server.
         * @param target
         *            The authentication target.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/collection/SLinkedList.java

        /**
         * Returns the element at the specified position.
         *
         * @param index the index
         * @return the element
         */
        public E get(final int index) {
            return getEntry(index).element;
        }
    
        /**
         * Sets the element at the specified position.
         *
         * @param index the index
         * @param element the element
         * @return the original element
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/com/SmbComWriteAndX.java

        /**
         * Sets the parameters for this write AndX request.
         *
         * @param fid the file identifier
         * @param offset the file offset at which to write
         * @param remaining the number of bytes remaining to be written
         * @param b the data buffer containing bytes to write
         * @param off the offset in the buffer where data starts
         * @param len the number of bytes to write
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/ExecJob.java

         * Otherwise, it uses the default value if provided.
         *
         * @param cmdList the command list to add the property to
         * @param name the property name
         * @param defaultValue the default value to use if property doesn't exist
         * @param appendValue the value to append to the property value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/GenericsUtil.java

        }
    
        /**
         * Returns the generic type of the specified type for the given index, or the default class if not found.
         *
         * @param type the type to analyze
         * @param index the index of the generic type
         * @param defaultClass the default class to return if not found
         * @return the generic type class, or the default class
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

            return 0L;
        }
    
        /**
         * Updates a specific field of a document in the search index.
         *
         * @param searchEngineClient the search engine client to use for the update
         * @param id the document ID to update
         * @param field the field name to update
         * @param value the new value for the field
         * @return true if the update was successful, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.1K bytes
    - Viewed (0)
Back to top