Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,109 for authenticating (0.77 sec)

  1. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenGcsRepoErrorsIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':retrieve'.")
                .assertHasCause("Could not resolve all dependencies for configuration ':compile'.")
                .assertHasCause("Authentication scheme 'all'(Authentication) is not supported by protocol 'gcs'")
        }
    
        @ToBeFixedForConfigurationCache(skip = ToBeFixedForConfigurationCache.Skip.FAILS_TO_CLEANUP)
        def "should include resource uri when file not found"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpConnectorFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.resource.transport.sftp;
    
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.authentication.Authentication;
    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
    - 2.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/discovery/discovery.go

    		), nil
    	}
    
    	// if the config returned from discovery has authentication credentials, proceed with the TLS boostrap process
    	if kubeconfigutil.HasAuthenticationCredentials(config) {
    		return config, nil
    	}
    
    	// if there are no authentication credentials (nor in the config returned from discovery, nor in the TLSBootstrapToken), fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. internal/logger/help.go

    			Secret:      true,
    		},
    		config.HelpKV{
    			Key:         ClientCert,
    			Description: "mTLS certificate for webhook authentication",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         ClientKey,
    			Description: "mTLS certificate key for webhook authentication",
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 07 20:17:46 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/token_test.go

    			token:         "",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    		{
    			name:          "valid: non-empty token",
    			token:         "abcdef.1234567890123456",
    			usages:        []string{"signing", "authentication"},
    			extraGroups:   []string{"system:bootstrappers:foo"},
    			expectedError: false,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. 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)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepository.java

         * @since 3.0-beta-1
         */
        boolean isProjectAware();
    
        /**
         * @param authentication authentication
         * @since 3.0-alpha-3
         */
        void setAuthentication(Authentication authentication);
    
        /**
         * @return repository authentication
         * @since 3.0-alpha-3
         */
        Authentication getAuthentication();
    
        /**
         * @param proxy proxy
         * @since 3.0-alpha-3
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 23 17:14:45 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestHttpHeaderAuthenticator.groovy

        }
    
        @Override
        Authentication validateRequest(ServletRequest request, ServletResponse response, boolean mandatory) throws ServerAuthException {
            Authentication.SEND_CONTINUE
        }
    
        @Override
        boolean secureResponse(ServletRequest request, ServletResponse response, boolean mandatory, Authentication.User validatedUser) throws ServerAuthException {
            return false
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/authentication/v1alpha1/generated.proto

    syntax = "proto2";
    
    package k8s.io.api.authentication.v1alpha1;
    
    import "k8s.io/api/authentication/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/authentication/v1alpha1";
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. pkg/apis/authentication/install/install.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/authentication"
    	"k8s.io/kubernetes/pkg/apis/authentication/v1"
    	"k8s.io/kubernetes/pkg/apis/authentication/v1alpha1"
    	"k8s.io/kubernetes/pkg/apis/authentication/v1beta1"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 14 16:00:26 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top