Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 714 for authenticating (0.36 sec)

  1. 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)
  2. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     *     .build();
     * ```
     *
     * The proxy authenticator may implement preemptive authentication, reactive authentication, or
     * both.
     *
     * Applications may configure OkHttp with an authenticator for origin servers, or proxy servers,
     * or both.
     *
     * ## Authentication Retries
     *
     * If your authentication may be flaky and requires retries you should apply some policy
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/authentication_test.go

    		},
    		{
    			name: "authentication-config file, feature gate is not enabled",
    			args: []string{
    				"--authentication-config=configfile",
    			},
    			expectErr: "set --feature-gates=StructuredAuthenticationConfiguration=true to use authentication-config file",
    		},
    		{
    			name: "authentication-config file, --oidc-issuer-url is set",
    			args: []string{
    				"--authentication-config=configfile",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/dsl/org.gradle.authentication.http.BasicAuthentication.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)
  5. staging/src/k8s.io/api/testdata/v1.29.0/authentication.k8s.io.v1beta1.TokenReview.pb

    SataQiu <******@****.***> 1702613527 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 540 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/authentication.k8s.io.v1beta1.TokenReview.pb

    SataQiu <******@****.***> 1713430345 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 540 bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/authentication/AuthenticationSchemeRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.internal.authentication;
    
    import org.gradle.authentication.Authentication;
    
    import java.util.Map;
    
    public interface AuthenticationSchemeRegistry {
        <T extends Authentication> void registerScheme(Class<T> type, final Class<? extends T> implementationType);
        <T extends Authentication> Map<Class<T>, Class<? extends T>> getRegisteredSchemes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 986 bytes
    - Viewed (0)
  8. src/net/smtp/auth.go

    	"errors"
    	"fmt"
    )
    
    // Auth is implemented by an SMTP authentication mechanism.
    type Auth interface {
    	// Start begins an authentication with a server.
    	// It returns the name of the authentication protocol
    	// and optionally data to include in the initial AUTH message
    	// sent to the server.
    	// If it returns a non-nil error, the SMTP client aborts
    	// the authentication attempt and closes the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/authentication/AbstractAuthentication.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.authentication;
    
    import org.gradle.api.credentials.Credentials;
    import org.gradle.authentication.Authentication;
    
    import java.util.Collection;
    import java.util.HashSet;
    import java.util.Objects;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/artifacts/defineRepository/groovy/build.gradle

        }
    }
    
    // tag::digest-authentication[]
    repositories {
        maven {
            url 'https://repo.mycompany.com/maven2'
            credentials {
                username "user"
                password "password"
            }
            authentication {
                digest(DigestAuthentication)
            }
        }
    }
    // end::digest-authentication[]
    
    // tag::preemptive-authentication[]
    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