Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,109 for authenticating (0.71 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

                private final Set<String> ivyPatterns;
                private final Collection<Authentication> authentications;
    
                public DefaultRepositorySpec(String name, URI repositoryUrl, boolean allowInsecureProtocol, CredentialsSpec credentials, AbstractRepositoryLayout layout, Set<String> artifactPatterns, Set<String> ivyPatterns, Collection<Authentication> authentications) {
                    this.name = name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/AbstractAuthenticationSupportedRepositoryTest.groovy

            }
    
            then:
            thrown IllegalStateException
        }
    
        def "authentication container throws IUD with authentication of unknown type"() {
            def action = new Action<AuthenticationContainer>() {
                @Override
                void execute(AuthenticationContainer authentications) {
                    authentications.create('basic', UnsupportedAuthentication)
                }
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJavaToolchainProvisioningService.java

                }
                try {
                    if (download.isPresent()) {
                        Collection<Authentication> authentications = repository.getAuthentications(download.get().getUri());
                        successfulProvisioning = provisionInstallation(spec, download.get().getUri(), authentications);
                        break;
                    }
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 23:01:05 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        cat <<EOF >/etc/gcp_authn.config
    clusters:
      - name: gcp-authentication-server
        cluster:
          server: ${GCP_AUTHN_URL}
    users:
      - name: kube-apiserver
        user:
          auth-provider:
            name: gcp
    current-context: webhook
    contexts:
    - context:
        cluster: gcp-authentication-server
        user: kube-apiserver
      name: webhook
    EOF
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. architecture/ambient/peer-authentication.md

    Keith Mattix II <******@****.***> 1691618958 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmServlet.java

    import javax.servlet.http.HttpServletResponse;
    
    /**
     * This servlet may be used with pre-2.3 servlet containers
     * to protect content with NTLM HTTP Authentication. Servlets that
     * extend this abstract base class may be authenticatied against an SMB
     * server or domain controller depending on how the
     * <tt>jcifs.smb1.smb1.client.domain</tt> or <tt>jcifs.smb1.http.domainController</tt>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.8K bytes
    - Viewed (0)
  7. releasenotes/notes/ambient-peer-authentication.yaml

    Keith Mattix II <******@****.***> 1687380312 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 20:45:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

            * Use StatefulSet for Elasticsearch instead of ReplicationController, with persistent volume claims
            * Require authenticating towards Elasticsearch, as Elasticsearch 5.5 by default requires basic authentication
    * Rebase hyperkube image on debian-hyperkube-base, based on debian-base. ([#48365](https://github.com/kubernetes/kubernetes/pull/48365), [@ixdy](https://github.com/ixdy))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. pkg/apis/authentication/v1/zz_generated.conversion.go

    package v1
    
    import (
    	unsafe "unsafe"
    
    	v1 "k8s.io/api/authentication/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	types "k8s.io/apimachinery/pkg/types"
    	authentication "k8s.io/kubernetes/pkg/apis/authentication"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 12:50:40 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/NtlmAuthenticator.groovy

            private NtlmPasswordAuthentication authentication
            private byte[] challenge
    
            TestNtlmCredentials(NtlmPasswordAuthentication authentication, byte[] challenge) {
                this.authentication = authentication
                this.challenge = challenge
            }
    
            @Override
            boolean check(Object credentials) {
                if (credentials instanceof String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top