Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 328 for PassworD (0.04 sec)

  1. src/main/java/jcifs/smb/Kerb5Authenticator.java

         *            domain for NTLM fallback
         * @param username
         *            user for NTLM fallback
         * @param password
         *            password for NTLM fallback
         */
        public Kerb5Authenticator(Subject subject, String domain, String username, String password) {
            super(domain, username, password);
            this.canFallback = true;
            this.subject = subject;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java

            boolean result = chain.changePassword(null, "password");
    
            assertFalse(result);
            assertEquals(1, chain.changePasswordCalls.size());
            assertNull(chain.changePasswordCalls.get(0).getKey());
            assertEquals("password", chain.changePasswordCalls.get(0).getValue());
        }
    
        // Test changePassword with null password
        public void test_changePassword_nullPassword() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  3. README.md

    // Create context with credentials
    CIFSContext context = new BaseContext(new jcifs.config.PropertyConfiguration());
    NtlmPasswordAuthenticator auth = new NtlmPasswordAuthenticator("domain", "username", "password");
    CIFSContext authContext = context.withCredentials(auth);
    
    // Use authenticated context
    try (SmbFile file = new SmbFile("smb://server/share/", authContext)) {
        for (SmbFile f : file.listFiles()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/profile/ProfileAction.java

         * Displays the profile index page.
         *
         * @return the HTML response
         */
        @Execute
        public HtmlResponse index() {
            return asIndexHtml();
        }
    
        /**
         * Changes the user password.
         *
         * @param form the profile form
         * @return the HTML response
         */
        @Execute
        public HtmlResponse changePassword(final ProfileForm form) {
            final VaErrorHook toIndexPage = () -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

             */
            public int current_uses;
            /**
             * The local path of the share.
             */
            public String path;
            /**
             * The share password (if any).
             */
            public String password;
            /**
             * The size of the security descriptor.
             */
            public int sd_size;
            /**
             * The security descriptor bytes.
             */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 27K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_it.properties

    errors.invalid_kuromoji_segmentation=Il numero di segmentazioni di {0} non corrisponde al numero di segmentazioni di {1}.
    errors.invalid_str_is_included = {0} non è valido in {1}.
    errors.blank_password = La password è obbligatoria.
    errors.invalid_confirm_password = La conferma della password non corrisponde.
    errors.cannot_delete_doc_because_of_running = Il crawler è in esecuzione. Impossibile eliminare il documento.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                final String username = userCredential.getUser();
                final String password = userCredential.getPassword();
                if (!fessConfig.isAdminUser(username)) {
                    final OptionalEntity<FessUser> ldapUser = ComponentUtil.getLdapManager().login(username, password);
                    if (ldapUser.isPresent()) {
                        return ldapUser;
                    }
                }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  8. docs/en/docs/reference/security/index.md

    ::: fastapi.security.HTTPBasicCredentials
    
    ## OAuth2 Authentication
    
    ::: fastapi.security.OAuth2
    
    ::: fastapi.security.OAuth2AuthorizationCodeBearer
    
    ::: fastapi.security.OAuth2PasswordBearer
    
    ## OAuth2 Password Form
    
    ::: fastapi.security.OAuth2PasswordRequestForm
    
    ::: fastapi.security.OAuth2PasswordRequestFormStrict
    
    ## OAuth2 Security Scopes in Dependencies
    
    ::: fastapi.security.SecurityScopes
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_user.user/user.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "password": {
            "type": "keyword"
          },
          "surname": {
            "type": "keyword"
          },
          "givenName": {
            "type": "keyword"
          },
          "employeeNumber" : {
            "type" : "keyword"
          },
          "mail" : {
            "type" : "keyword"
          },
          "telephoneNumber" : {
            "type" : "keyword"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                                    key="labels.webauth_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.5K bytes
    - Viewed (0)
Back to top