Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 383 for passWord (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/sftp-server_test.go

    		_, err = sshPasswordAuth(newSSHCon, []byte("dillon"))
    		if err != nil {
    			c.Fatal("Password authentication failed for user (dillon):", err)
    		}
    
    		newSSHCon = newSSHConnMock("dillon")
    		_, err = sshPasswordAuth(newSSHCon, []byte("dillon"))
    		if err != nil {
    			c.Fatal("Password authentication failed for user (dillon):", err)
    		}
    	}
    	{
    		userDN := "uid=fahim,ou=people,ou=swengg,dc=min,dc=io"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Feb 27 18:43:32 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  7. 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)
  8. docs/kms/README.md

    ## Encrypted Private Key
    
    MinIO supports encrypted KES client private keys. Therefore, you can use
    an password-protected private keys for `MINIO_KMS_KES_KEY_FILE`.
    
    When using password-protected private keys for accessing KES you need to
    provide the password via:
    
    ```
    export MINIO_KMS_KES_KEY_PASSWORD=<your-password>
    ```
    
    Note that MinIO only supports encrypted private keys - not encrypted certificates.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/RecordingAuthenticator.kt

    import java.net.Authenticator
    import java.net.PasswordAuthentication
    
    class RecordingAuthenticator(
      private val authentication: PasswordAuthentication? =
        PasswordAuthentication(
          "username",
          "password".toCharArray(),
        ),
    ) : Authenticator() {
      val calls = mutableListOf<String>()
    
      override fun getPasswordAuthentication(): PasswordAuthentication? {
        calls.add(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java

                            throw new RuntimeException("Plain text passwords are disabled");
                        } else {
                            // plain text
                            final String password = a.getPassword();
                            this.lmHash = new byte[(password.length() + 1) * 2];
                            this.ntHash = new byte[0];
                            writeString(password, this.lmHash, 0);
                        }
                    }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top