Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for getAuthentications (0.57 sec)

  1. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/RealizedJavaToolchainRepository.java

            this.repository = repository;
        }
    
        public JavaToolchainResolver getResolver() {
            return resolverProvider.get();
        }
    
        public Collection<Authentication> getAuthentications(URI uri) {
            Collection<Authentication> configuredAuthentication = repository.getConfiguredAuthentication();
    
            for (Authentication authentication : configuredAuthentication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 10:09:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/install/internal/DefaultJavaToolchainProvisioningServiceTest.groovy

            RealizedJavaToolchainRepository repository = Mock(RealizedJavaToolchainRepository)
            repository.getResolver() >> resolver
            repository.getRepositoryName() >> repositoryName
    
            repository.getAuthentications(_ as URI) >> Collections.emptyList()
            repository
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/transport/RepositoryTransportFactory.java

                }
            }
    
            @Override
            public Collection<Authentication> getAuthentications() {
                return authentications;
            }
    
            @Override
            public HttpRedirectVerifier getRedirectVerifier() {
                return redirectVerifier;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                    continue;
                }
                try {
                    if (download.isPresent()) {
                        Collection<Authentication> authentications = repository.getAuthentications(download.get().getUri());
                        successfulProvisioning = provisionInstallation(spec, download.get().getUri(), authentications);
                        break;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

            if (repositories != null && selector != null) {
                for (ArtifactRepository repository : repositories) {
                    repository.setAuthentication(getAuthentication(selector, repository));
                }
            }
        }
    
        private Authentication getAuthentication(AuthenticationSelector selector, ArtifactRepository repository) {
            if (selector != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                    repository.setLayout(getLayout(mirror.getLayout()));
                }
    
                repository.setBlocked(mirror.isBlocked());
            }
        }
    
        private Authentication getAuthentication(RepositorySystemSession session, ArtifactRepository repository) {
            if (session != null) {
                AuthenticationSelector selector = session.getAuthenticationSelector();
                if (selector != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java

                    buf.append(':');
                    buf.append(port);
                }
                buf.append('/');
            }
            return buf.toString();
        }
    
        public NtlmPasswordAuthentication getAuthentication() {
            return new NtlmPasswordAuthentication(domain == null ? "" : domain, username, password);
        }
    
        public String getServer() {
            return server;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/repository/legacy/LegacyRepositorySystemTest.java

            repositorySystem.injectAuthentication(Arrays.asList(repository), Arrays.asList(server));
            Authentication authentication = repository.getAuthentication();
            assertNotNull(authentication);
            assertEquals("jason", authentication.getUsername());
            assertEquals("abc123", authentication.getPassword());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultJavaToolchainRepository.java

        @Override
        public void authentication(Action<? super AuthenticationContainer> action) {
            authenticationSupporter.authentication(action);
        }
    
        @Override
        public AuthenticationContainer getAuthentication() {
            return authenticationContainer;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/WebAuthentication.java

        private static final long serialVersionUID = 1L;
    
        private static final Logger logger = LogManager.getLogger(WebAuthentication.class);
    
        private WebConfig webConfig;
    
        public Authentication getAuthentication() {
            return new AuthenticationImpl(getAuthScope(), getCredentials(), getAuthScheme());
        }
    
        private AuthScheme getAuthScheme() {
            final String scheme = getProtocolScheme();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
Back to top