Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for setPassword (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java

         * used. There is no way to retrieve a users password in plain text unless
         * it is supplied by the user at runtime.
         *
         * @return the password or null if using raw hashes
         */
        public String getPassword() {
            return password;
        }
    
        /**
         * Return the domain and username in the format:
         * {@code domain\\username}. This is equivalent to {@code toString()}.
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

                    final boolean normalizeText = params == null ? true : !Constants.FALSE.equalsIgnoreCase(params.get(NORMALIZE_TEXT));
                    final String password = getPassword(params);
    
                    final Metadata metadata = createMetadata(resourceName, contentType, contentEncoding, password);
    
                    final Parser parser = new TikaDetectParser();
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 30.7K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

                validateRequest(ftpClient);
    
                final FtpAuthentication auth = ftpAuthenticationHolder.get(info.toUrl());
                if (auth != null && !ftpClient.login(auth.getUsername(), auth.getPassword())) {
                    throw new CrawlerLoginFailureException("Login Failure: " + auth.getUsername() + " for " + info.toUrl());
                }
    
                if (enterLocalPassiveMode) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 39.5K bytes
    - Viewed (0)
Back to top