Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,488 for m_param (0.04 sec)

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

            private final String path;
            private volatile boolean breaking;
    
            /**
             * Create a new lease entry
             *
             * @param key lease key
             * @param path file path
             * @param state initial lease state
             */
            public LeaseEntry(Smb2LeaseKey key, String path, int state) {
                this.leaseKey = key;
                this.path = path;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

         *
         * @param dst the destination buffer
         * @param dstIndex the starting position in the buffer
         * @return number of bytes written
         */
        protected abstract int writeBytesWireFormat(byte[] dst, int dstIndex);
    
        /**
         * Reads the message body from the wire format.
         *
         * @param buffer the buffer to read from
         * @param bufferIndex the starting position in the buffer
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/QueryHelper.java

         * boosts, and role-based access controls.
         *
         * @param searchRequestType the type of search request (e.g., regular search, admin search)
         * @param query the user's search query string
         * @param context a consumer that allows additional customization of the query context
         * @return a fully constructed QueryContext ready for OpenSearch execution
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        @Resource
        private SynonymService synonymService;
    
        /**
         * Retrieves synonym dictionary settings with pagination support.
         *
         * @param dictId the dictionary ID
         * @param body the search body containing pagination and filter parameters
         * @return JSON response containing list of synonym dictionary items
         */
        // GET /api/admin/dict/synonym/settings/{dictId}
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param jobname The parameter value of jobname. (NotNull)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/io/FileUtil.java

        }
    
        /**
         * Reads text from a file with the specified encoding.
         *
         * @param path
         *            The file path. Must not be {@literal null} or empty.
         * @param encoding
         *            The encoding. Must not be {@literal null} or empty.
         * @return The text read from the file.
         */
        public static String readText(final String path, final String encoding) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java

         *
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            saveToken();
            return asListHtml();
        }
    
        /**
         * Displays the job log list with pagination.
         *
         * @param pageNumber the page number
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PluginHelper.java

        }
    
        /**
         * Gets the actual version string for a SNAPSHOT artifact by parsing the snapshot metadata.
         *
         * @param builder the document builder to use for parsing XML
         * @param pluginUrl the URL of the plugin
         * @param version the snapshot version
         * @return the actual version string with timestamp and build number, or null if not found
         * @throws SAXException if XML parsing fails
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
Back to top