Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 165 for password1 (0.23 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webauth/CreateForm.java

        /**
         * The username for authentication.
         */
        @Required
        @Size(max = 100)
        public String username;
    
        /**
         * The password for authentication.
         */
        @Size(max = 100)
        public String password;
    
        /**
         * Additional parameters for the authentication.
         */
        @Size(max = 1000)
        public String parameters;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp

                                                    key="labels.file_auth_password"/></th>
                                            <td><c:if test="${password!=''}">******</c:if> <la:hidden
                                                    property="password"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 6.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_message.properties

    errors.invalid_kuromoji_segmentation=The number of segmentation for {0} and {1} is different.
    errors.invalid_str_is_included = {1} is invalid for {0}.
    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_en.properties

    errors.invalid_kuromoji_segmentation=The number of segmentation for {0} and {1} is different.
    errors.invalid_str_is_included = {1} is invalid for {0}.
    errors.blank_password = Password is required.
    errors.invalid_confirm_password = Does not match a confirmation password.
    errors.cannot_delete_doc_because_of_running = A crawler is running. You cannot delete documents.
    errors.failed_to_delete_doc_in_admin = Failed to delete a document.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

            }
        }
    
        @Override
        public boolean changePassword(final String username, final String password) {
            if (isTargetUser(username) && StringUtil.isNotBlank(password)) {
                return executeCommand(updateCommand, username, password) == 0;
            }
            return true;
        }
    
        @Override
        public User load(final User user) {
            return user;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  6. samples/guide/src/main/java/okhttp3/recipes/kt/YubikeyClientAuth.kt

          if (callback is PasswordCallback) {
            val console = System.console()
    
            if (console != null) {
              callback.password = console.readPassword(callback.prompt)
            } else {
              System.err.println(callback.prompt)
              callback.password =
                System.`in`
                  .bufferedReader()
                  .readLine()
                  .toCharArray()
            }
          } else {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat May 10 11:15:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/config/cbean/ca/bs/BsFileAuthenticationCA.java

        public void setPassword_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setPassword_Terms("password", opLambda, null);
        }
    
        public void setPassword_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsFileAuthenticationCA> aggsLambda) {
            setPassword_Terms("password", opLambda, aggsLambda);
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 71.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java

            this.pager = value;
        }
    
        public String getPassword() {
            checkSpecifiedProperty("password");
            return convertEmptyToNull(password);
        }
    
        public void setPassword(String value) {
            registerModifiedProperty("password");
            this.password = value;
        }
    
        public String getPhysicalDeliveryOfficeName() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  9. src/main/config/es/fess_config_file_authentication.json

                "type" : "keyword"
              },
              "hostname" : {
                "type" : "keyword"
              },
              "parameters" : {
                "type" : "keyword"
              },
              "password" : {
                "type" : "keyword"
              },
              "port" : {
                "type" : "integer"
              },
              "protocolScheme" : {
                "type" : "keyword"
              },
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

        }
    
        // Helper methods
    
        private void setupMockConfig(String fesenUrl, String username, String password) {
            setupMockConfig(fesenUrl, username, password, "");
        }
    
        private void setupMockConfig(String fesenUrl, String username, String password, String certificateAuthorities) {
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
Back to top