Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 252 for Identifier (0.05 sec)

  1. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

         */
        private int pageSize;
    
        /**
         * The current page number for pagination.
         */
        private int currentPageNumber;
    
        /**
         * The unique identifier of the request header.
         */
        public String id;
    
        /**
         * The name of the request header.
         */
        public String name;
    
        /**
         * The value of the request header.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

     *
     */
    public class AdminPluginAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminPluginAction() {
            super();
        }
    
        /**
         * Role identifier for plugin administration.
         */
        public static final String ROLE = "admin-plugin";
    
        private static final Logger logger = LogManager.getLogger(AdminPluginAction.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenAlias.java

        /**
         * Creates a new request to open an alias handle.
         *
         * @param handle the domain handle
         * @param access the desired access rights
         * @param rid the relative identifier of the alias
         * @param aliasHandle the alias handle to be populated
         */
        public MsrpcSamrOpenAlias(final SamrDomainHandle handle, final int access, final int rid, final SamrAliasHandle aliasHandle) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java

    public class lsarpc {
    
        /**
         * Private constructor to prevent instantiation of utility class.
         */
        private lsarpc() {
            // Utility class
        }
    
        /**
         * Returns the RPC syntax identifier for LSA RPC interface.
         *
         * @return the RPC syntax string
         */
        public static String getSyntax() {
            return "12345778-1234-abcd-ef00-0123456789ab:0.0";
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 42.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         */
        private String newOutput;
    
        /**
         * Constructs a new CharMappingItem with the specified ID, input sequences, and output sequence.
         *
         * @param id the unique identifier for this mapping item
         * @param inputs array of input character sequences that will be mapped to the output
         * @param output the output character sequence that inputs will be mapped to
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K 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/FailureUrlService.java

            }).createPageNumberList());
    
            return failureUrlList;
        }
    
        /**
         * Retrieves a specific failure URL by its ID.
         *
         * @param id the unique identifier of the failure URL
         * @return an OptionalEntity containing the FailureUrl if found, empty otherwise
         */
        public OptionalEntity<FailureUrl> getFailureUrl(final String id) {
            return failureUrlBhv.selectByPK(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java

        private final String input;
    
        /** The new stopword, if updated. */
        private String newInput;
    
        /**
         * Constructs a new stopword item.
         *
         * @param id    The unique identifier of the item.
         * @param input The stopword.
         */
        public StopwordsItem(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.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComClose.java

        private final int fid;
        private final long lastWriteTime;
    
        /**
         * Creates a new SMB1 close file request.
         *
         * @param config the CIFS configuration
         * @param fid the file identifier to close
         * @param lastWriteTime the last write time to set on the file
         */
        public SmbComClose(final Configuration config, final int fid, final long lastWriteTime) {
            super(config, SMB_COM_CLOSE);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
Back to top