Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 321 for Identifier (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/service/RelatedContentService.java

            return relatedContentList;
        }
    
        /**
         * Retrieves a specific related content entity by its ID.
         *
         * @param id the unique identifier of the related content
         * @return an OptionalEntity containing the RelatedContent if found, empty otherwise
         */
        public OptionalEntity<RelatedContent> getRelatedContent(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/persistent/HandleGuid.java

    package jcifs.internal.smb2.persistent;
    
    import java.io.Serializable;
    import java.nio.ByteBuffer;
    import java.util.UUID;
    
    /**
     * Handle GUID structure for SMB2/3 durable and persistent handles.
     * Provides a unique identifier for each handle that can be used
     * for reconnection after network failures or server reboots.
     *
     * According to MS-SMB2, the GUID is a 16-byte structure with little-endian
     * byte ordering for the individual components.
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SID.java

        /**
         * Construct a SID from a domain SID and an RID
         * (relative identifier). For example, a domain SID
         * {@code S-1-5-21-1496946806-2192648263-3843101252} and RID {@code 1029} would
         * yield the SID {@code S-1-5-21-1496946806-2192648263-3843101252-1029}.
         *
         * @param domsid the domain SID
         * @param rid the relative identifier
         */
        public SID(final SID domsid, final int rid) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/CharMappingService.java

         * <p>
         * This method looks up a character mapping item using its unique identifier
         * within the context of the specified dictionary.
         * </p>
         *
         * @param dictId the dictionary ID containing the character mapping item
         * @param id the unique identifier of the character mapping item
         * @return an OptionalEntity containing the character mapping item if found, empty otherwise
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/TreeConnectResponse.java

     * service type, and DFS information for the connected share.
     *
     * @author mbechler
     */
    public interface TreeConnectResponse extends CommonServerMessageBlockResponse {
    
        /**
         * Returns the tree identifier (TID) assigned to this tree connection.
         *
         * @return tree id
         */
        int getTid();
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        /**
         * Additional flags for the SMB message.
         */
        protected int flags2;
        /**
         * Process identifier.
         */
        protected int pid;
        /**
         * User identifier for the authenticated session.
         */
        protected int uid;
        /**
         * Multiplex identifier for correlating requests and responses.
         */
        protected int mid;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/FileConfigService.java

                cb.query().setFileConfigId_Equal(fileConfigId);
            });
        }
    
        /**
         * Retrieves a file configuration by its unique identifier.
         *
         * @param id the unique identifier of the file configuration
         * @return an OptionalEntity containing the file configuration if found, empty otherwise
         */
        public OptionalEntity<FileConfig> getFileConfig(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/GroupService.java

            }).createPageNumberList());
    
            return groupList;
        }
    
        /**
         * Retrieves a specific group by its ID and applies LDAP manager settings.
         *
         * @param id the unique identifier of the group
         * @return an OptionalEntity containing the group if found, empty otherwise
         */
        public OptionalEntity<Group> getGroup(final String id) {
            return groupBhv.selectByPK(id).map(g -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java

     */
    public class ProtwordsItem extends DictionaryItem {
        private final String input;
    
        private String newInput;
    
        /**
         * Constructor for ProtwordsItem.
         * @param id the unique identifier for this item
         * @param input the protected word input
         */
        public ProtwordsItem(final long id, final String input) {
            this.id = id;
            this.input = input;
    
            if (id == 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/RequestTrace.java

     * <ul>
     *   <li>Debugging and troubleshooting request flows</li>
     *   <li>Audit logging of session operations</li>
     *   <li>Performance monitoring of nested operations</li>
     * </ul>
     *
     * @param context The context identifier for this request trace, helping to identify the scope or purpose
     *                of the request. May be null if no specific context is needed.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 29 08:17:07 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top