Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for param2 (0.05 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/AbstractCrawlerClient.java

        }
    
        /**
         * Sets the initialization parameter map.
         * @param params The map of parameters.
         */
        @Override
        public void setInitParameterMap(final Map<String, Object> params) {
            initParamMap = params;
        }
    
        /**
         * Executes the request based on the HTTP method.
         * @param request The request data.
         * @return The response data.
         */
        @Override
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/common/CommonExtensions.kt

        arch: Arch = Arch.AMD64,
    ) {
        params {
            param("env.BOT_TEAMCITY_GITHUB_TOKEN", "%github.bot-teamcity.token%")
            param("env.GRADLE_CACHE_REMOTE_SERVER", "%gradle.cache.remote.server%")
    
            param("env.JAVA_HOME", javaHome(buildJvm, os, arch))
            param("env.ANDROID_HOME", os.androidHome)
            param("env.ANDROID_SDK_ROOT", os.androidHome)
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * ✏ Fix typo in `docs/en/docs/tutorial/query-params-str-validations.md`. PR [#9272](https://github.com/tiangolo/fastapi/pull/9272) by [@nicornk](https://github.com/nicornk).
    * ✏ Fix typo/bug in inline code example in `docs/en/docs/tutorial/query-params-str-validations.md`. PR [#9273](https://github.com/tiangolo/fastapi/pull/9273) by [@tim-habitat](https://github.com/tim-habitat).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java

                Map<String, Object> params = new HashMap<String, Object>();
                FtpAuthentication auth = new FtpAuthentication();
                auth.setUsername(username);
                auth.setPassword(password);
                params.put(FtpClient.FTP_AUTHENTICATIONS_PROPERTY, new FtpAuthentication[] { auth });
                ftpClient.setInitParameterMap(params);
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 18K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java

        }
    
        /**
         * Generates a Type 3 NTLM message.
         *
         * @param username the username
         * @param password the password
         * @param domain the domain
         * @param workstation the workstation
         * @param challenge the Type 2 challenge message
         * @return the Base64-encoded Type 3 message
         * @throws NTLMEngineException if an NTLM engine error occurs
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ExtractData.java

        /**
         * Constructs a new ExtractData with the specified content.
         *
         * @param content the content to set
         */
        public ExtractData(final String content) {
            this.content = content;
        }
    
        /**
         * Puts multiple values for a given key in the metadata.
         *
         * @param key the metadata key
         * @param values the values to associate with the key
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

        /**
         * Processes allowed SIDs (Security Identifiers) and adds them to the SID set.
         * If the SID is a group, it recursively processes all group members.
         *
         * @param file the SMB file
         * @param sid the SID to process
         * @param sidSet the set of SIDs to add to
         */
        protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) {
            if (logger.isDebugEnabled()) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

        /**
         * Processes allowed SIDs (Security Identifiers) and adds them to the SID set.
         * If the SID is a group, it recursively processes all group members.
         *
         * @param file the SMB1 file
         * @param sid the SID to process
         * @param sidSet the set of SIDs to add to
         */
        protected void processAllowedSIDs(final SmbFile file, final SID sid, final Set<SID> sidSet) {
            if (logger.isDebugEnabled()) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 23K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java

        /**
         * Sets the server address.
         * @param server The server address.
         */
        public void setServer(final String server) {
            this.server = server;
        }
    
        /**
         * Returns the port number.
         * @return The port number.
         */
        public int getPort() {
            return port;
        }
    
        /**
         * Sets the port number.
         * @param port The port number.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Sep 18 09:30:45 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java

         * Sets the rule ID for this rule.
         *
         * @param ruleId the rule ID to set
         */
        public void setRuleId(final String ruleId) {
            this.ruleId = ruleId;
        }
    
        @Override
        public ResponseProcessor getResponseProcessor() {
            return responseProcessor;
        }
    
        /**
         * Sets the response processor for this rule.
         *
         * @param responseProcessor the response processor to set
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 2.8K bytes
    - Viewed (0)
Back to top