Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for DigestAuthentication (1.21 sec)

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

     */
    
    package org.gradle.authentication.http;
    
    import org.gradle.authentication.Authentication;
    
    /**
     * Authentication scheme for digest access authentication over HTTP.
     */
    public interface DigestAuthentication extends Authentication {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 850 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/dsl/org.gradle.authentication.http.DigestAuthentication.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/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/AuthenticatedPluginRepositorySpec.groovy

            'basic'            | 'authentication { auth(BasicAuthentication) }'                                | BASIC             | ['Basic']
            'digest'           | 'authentication { auth(DigestAuthentication) }'                               | DIGEST            | ['None', 'Digest']
            'default'          | ''                                                                            | BASIC             | ['None', 'Basic']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 7K bytes
    - Viewed (0)
  4. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpConnectorFactory.java

    import com.google.common.collect.ImmutableSet;
    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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/software/resources-http/src/main/java/org/gradle/internal/authentication/DefaultDigestAuthentication.java

    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.authentication.http.DigestAuthentication;
    
    public class DefaultDigestAuthentication extends AbstractAuthentication implements DigestAuthentication {
        public DefaultDigestAuthentication(String name) {
            super(name, DigestAuthentication.class, PasswordCredentials.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)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

     * limitations under the License.
     */
    package org.gradle.integtests.resolve.http
    
    import org.gradle.authentication.http.BasicAuthentication
    import org.gradle.authentication.http.DigestAuthentication
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    import org.gradle.integtests.fixtures.resolve.ResolveFailureTestFixture
    import org.gradle.test.fixtures.server.http.AuthScheme
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourcesServices.java

     */
    
    package org.gradle.internal.resource.transport.http;
    
    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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/toolchain-management/kotlin/settings.gradle.kts

                    credentials {
                        username = "user"
                        password = "password"
                    }
                    authentication {
                        create<DigestAuthentication>("digest")
                    } // <4>
                }
            }
        }
    }
    // end::toolchain-management[]
    
    rootProject.name = "toolchain-management"
    
    abstract class MadeUpPlugin: Plugin<Settings> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 16:22:45 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

    import org.gradle.api.specs.Spec;
    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;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolveConfigurationRepositoriesBuildOperationIntegrationTest.groovy

                        credentials {
                            username 'user'
                            password 'pass'
                        }
                        authentication {
                            digest(DigestAuthentication)
                        }
                    }
                }
                task resolve {
                    def files = configurations.compileClasspath
                    doLast { files.files }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
Back to top