Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for HttpHeaderAuthentication (0.25 sec)

  1. platforms/software/resources-http/src/main/java/org/gradle/authentication/http/HttpHeaderAuthentication.java

    package org.gradle.authentication.http;
    
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme for HTTP header authentication over HTTP.
     *
     * @since 4.10
     */
    public interface HttpHeaderAuthentication extends Authentication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 870 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.authentication.http.HttpHeaderAuthentication.xml

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpConnectorFactory.java

    import org.gradle.authentication.Authentication;
    import org.gradle.authentication.http.BasicAuthentication;
    import org.gradle.authentication.http.DigestAuthentication;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    import org.gradle.internal.authentication.AllSchemesAuthentication;
    import org.gradle.internal.resource.connector.ResourceConnectorFactory;
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/authentication/DefaultHttpHeaderAuthentication.java

    import org.gradle.api.credentials.HttpHeaderCredentials;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    
    public class DefaultHttpHeaderAuthentication extends AbstractAuthentication implements HttpHeaderAuthentication {
        public DefaultHttpHeaderAuthentication(String name) {
            super(name, HttpHeaderAuthentication.class, HttpHeaderCredentials.class);
        }
    
        @Override
        public boolean requiresCredentials() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/HttpClientConfigurerTest.groovy

            httpHeaderCredentials.setValue("TestHttpHeaderValue")
            AllSchemesAuthentication httpHeaderAuthentication = new AllSchemesAuthentication(httpHeaderCredentials)
            httpHeaderAuthentication.addHost(REMOTE_HOST, SOME_PORT)
    
            httpSettings.authenticationSettings >> [httpHeaderAuthentication]
            httpSettings.sslContextFactory >> sslContextFactory
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourcesServices.java

    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.authentication.http.BasicAuthentication;
    import org.gradle.authentication.http.DigestAuthentication;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    import org.gradle.internal.authentication.AuthenticationSchemeRegistry;
    import org.gradle.internal.authentication.DefaultBasicAuthentication;
    import org.gradle.internal.authentication.DefaultDigestAuthentication;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

    import org.gradle.authentication.Authentication;
    import org.gradle.authentication.http.BasicAuthentication;
    import org.gradle.authentication.http.DigestAuthentication;
    import org.gradle.authentication.http.HttpHeaderAuthentication;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.authentication.AllSchemesAuthentication;
    import org.gradle.internal.authentication.AuthenticationInternal;
    import org.gradle.internal.jvm.Jvm;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/artifacts/defineRepository/kotlin/build.gradle.kts

            credentials(HttpHeaderCredentials::class) {
                name = "Private-Token"
                value = "TOKEN"
            }
            authentication {
                create<HttpHeaderAuthentication>("header")
            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs("lib")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            credentials(org.gradle.api.credentials.HttpHeaderCredentials) {
                name = "TestHttpHeaderName"
                value = "TestHttpHeaderValue"
            }
            authentication { header(HttpHeaderAuthentication) }
        }
    }
    configurations { compile }
    dependencies {
        compile 'group:projectA:1.2'
    }
    task listJars {
        def files = configurations.compile
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

            credentials(HttpHeaderCredentials) {
                name = "Private-Token"
                value = "TOKEN"
            }
            authentication {
                header(HttpHeaderAuthentication)
            }
        }
    }
    // end::header-authenticated-maven-repo[]
    
    // tag::flat-dir[]
    // tag::flat-dir-multi[]
    repositories {
        flatDir {
            dirs 'lib'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top