Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 168 for Unauthorized (0.27 sec)

  1. src/main/config/openapi/openapi-user.yaml

          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        Unauthorized:
          description: Unauthorized request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        NotFound:
          description: Page not found
          content:
            application/json:
              schema:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1beta1_test.go

    		// later ridiculous requests within the cache window still hit the backend
    		{name: "ridiculous unauthorized request again", attr: bobRidiculousAttr, allow: false, statusCode: 200, expectedErr: false, expectedAuthorized: false, expectedCalls: 1},
    		// ridiculous authorized requests are not cached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ErrorHandlingModuleComponentRepositoryTest.groovy

            then: 'resolution fails directly'
            1 * result.failed(_ as ArtifactResolveException)
            0 * delegate._
    
            where:
            desc | exception
            "unauthorized (401)" | unauthorized
            "forbidden (403)" | forbidden
        }
    
        List<List<?>> retryCombinations() {
            def retries = []
            (1..3).each { ret ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    	test(t, "subresource", audit.LevelRequest, stages, stages, "getPodSubResourceWildcardMatching")
    
    	test(t, "Unauthorized", audit.LevelNone, stages, stages, "tims")
    	test(t, "Unauthorized", audit.LevelMetadata, stages, stages, "tims", "default")
    	test(t, "Unauthorized", audit.LevelNone, stages, stages, "humans")
    	test(t, "Unauthorized", audit.LevelMetadata, stages, stages, "humans", "default")
    }
    
    func TestChecker(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            failedResolve.assertFailurePresent(failure)
            failure
                .assertResolutionFailure(':compile')
                .assertThatCause(CoreMatchers.containsString('Received status code 401 from server: Unauthorized'))
    
            where:
            authScheme | credsName | creds
            BASIC      | 'missing' | ''
            DIGEST     | 'missing' | ''
            NTLM       | 'missing' | ''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyPermissionsIntegrationTest.groovy

            given:
            getTestDirectory().createFile('src/unauthorized/file')
            getTestDirectory().createFile('src/authorized')
            getTestDirectory().createDir('dest')
            file('src/unauthorized').mode = 0000
    
            and:
            buildFile << """
                task copy(type: Copy) {
                    from('src'){
                        exclude 'unauthorized'
                    }
                    into 'dest'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. tests/integration/security/egress_sidecar_tls_origination_test.go

    						StatusCode: http.StatusOK,
    					},
    				},
    				// Mutual TLS origination from an unauthorized sidecar to https endpoint
    				// This will result in a 503 with the UH flag because the cluster will
    				// stay warming until a valid secret is sent.
    				{
    					name:            "unauthorized sidecar",
    					credentialToUse: credNameGeneric,
    					from:            apps.Ns1.B,
    					drSelector:      "b",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

            failure.assertHasCause("Could not GET '${mavenHttpRepo.uri.toString()}/${group}/${module}/maven-metadata.xml'. Received status code 401 from server: Unauthorized")
        }
    
        private void assertDependencyMetaDataReadTimeout(MavenModule module) {
            failure.assertHasCause("Could not resolve ${mavenModuleCoordinates(module)}.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authorization.go

    	authorizationWebhookVersionFlag         = "authorization-webhook-version"
    	authorizationWebhookAuthorizedTTLFlag   = "authorization-webhook-cache-authorized-ttl"
    	authorizationWebhookUnauthorizedTTLFlag = "authorization-webhook-cache-unauthorized-ttl"
    	authorizationPolicyFileFlag             = "authorization-policy-file"
    	authorizationConfigFlag                 = "authorization-config"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    		// later ridiculous requests within the cache window still hit the backend
    		{name: "ridiculous unauthorized request again", attr: bobRidiculousAttr, allow: false, statusCode: 200, expectedErr: false, expectedAuthorized: false, expectedCalls: 1},
    		// ridiculous authorized requests are not cached.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top