Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getRealms (0.06 seconds)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            PrintStream olderr = System.err;
    
            final Set<String> realms;
            if (classWorld != null) {
                realms = new HashSet<>();
                for (ClassRealm realm : classWorld.getRealms()) {
                    realms.add(realm.getId());
                }
            } else {
                realms = Collections.emptySet();
            }
    
            try {
                if (stdout != null) {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Oct 27 13:24:03 GMT 2025
    - 78.1K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

            for (final WebAuthenticationConfig config : configs) {
                try {
                    final AuthScope authScope = new AuthScope(config.getScheme(), config.getHost(), config.getPort(), config.getRealm(), null // schemeName
                    );
    
                    final Credentials credentials = convertCredentials(config.getCredentials());
    
                    AuthScheme authScheme = null;
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            for (final WebAuthenticationConfig config : configs) {
                try {
                    final AuthScope authScope = new AuthScope(config.getHost(), config.getPort(), config.getRealm(), config.getScheme());
    
                    final Credentials credentials = convertCredentials(config.getCredentials());
    
                    AuthScheme authScheme = null;
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
Back to Top