Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for 503 (0.03 sec)

  1. pilot/pkg/networking/core/route/retry/retry_test.go

    					Attempts: 2,
    					RetryOn:  "gateway-error,retriable-status-codes,503",
    				},
    			},
    			assertFunc: func(g *WithT, policy *envoyroute.RetryPolicy) {
    				g.Expect(policy).To(Not(BeNil()))
    				g.Expect(policy.RetryOn).To(Equal("gateway-error,retriable-status-codes"))
    				g.Expect(policy.RetriableStatusCodes).To(Equal([]uint32{503}))
    			},
    		},
    		{
    			name: "TestRetryOnWithWhitespace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/routes/istio-gateway-http-route-prefix/configdump.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    			svdata: FakeSVMapData{
    				gvr: schema.GroupVersionResource{
    					Group:    "core",
    					Version:  "bar",
    					Resource: "baz"},
    				serverId: ""},
    		},
    		{
    			desc:                 "503 if no endpoint fetched from lease",
    			requestPath:          "/api/foo/bar",
    			expectedStatus:       http.StatusServiceUnavailable,
    			informerFinishedSync: true,
    			svdata: FakeSVMapData{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/envoy/configdump/testdata/routes/k8s-gateway-http-route-path-prefix/configdump.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 29 12:37:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesTroubleshootingDependencyResolutionIntegrationTest.groovy

            given:
            def sampleDir = sample.dir.file(dsl)
            executer.inDirectory(sampleDir)
    
            when:
            succeeds(COPY_LIBS_TASK_NAME)
    
            then:
            sampleDir.file('build/libs/spring-web-5.0.3.BUILD-SNAPSHOT.jar').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("dependencyManagement/troubleshooting-cache-dynamic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/ivy/with-dependencies.xml

            <dependency org="org.ow2.asm" name="asm" rev="5.0.3" force="true" conf="runtime-&gt;compile(*),runtime(*),master(*)"/>
            <dependency org="org.ow2.asm" name="asm-tree" rev="5.0.3" force="true" conf="runtime-&gt;compile(*),runtime(*),master(*)"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. tests/integration/security/egress_gateway_origination_test.go

    					useGateway:      false,
    				},
    
    				// Set up an UpstreamCluster with a CredentialName when secret doesn't even exist in istio-system ns.
    				// Secret fetching error at Gateway, results in a 503 response.
    				{
    					name:            "missing secret",
    					statusCode:      http.StatusServiceUnavailable,
    					credentialToUse: credNameMissing,
    					useGateway:      false,
    				},
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/transport/NetworkingIssueVerifierTest.groovy

            "HttpErrorStatusCodeException with server error"            | new HttpErrorStatusCodeException("something", "something", 503, "something")
            "HttpErrorStatusCodeException with transient client error"  | new HttpErrorStatusCodeException("something", "something", 429, "something")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    )
    
    // New returns an HTTP handler that is meant to be executed at the end of the delegation chain.
    // It checks if the request have been made before the server has installed all known HTTP paths.
    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. pkg/proxy/healthcheck/proxier_health.go

    	healthy = healthy && nodeEligible
    	resp.Header().Set("Content-Type", "application/json")
    	resp.Header().Set("X-Content-Type-Options", "nosniff")
    	if !healthy {
    		metrics.ProxyHealthzTotal.WithLabelValues("503").Inc()
    		resp.WriteHeader(http.StatusServiceUnavailable)
    	} else {
    		metrics.ProxyHealthzTotal.WithLabelValues("200").Inc()
    		resp.WriteHeader(http.StatusOK)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 10:41:18 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top