Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for 503 (0.09 sec)

  1. releasenotes/notes/push-cds-on-auto-passthrough-gateway-change.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:59 UTC 2024
    - 181 bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/StatusLineTest.kt

        assertThat(statusLine.protocol).isEqualTo(Protocol.HTTP_1_1)
        assertThat(statusLine.code).isEqualTo(code)
      }
    
      @Test
      fun emptyMessage() {
        val version = 1
        val code = 503
        val statusLine = parse("HTTP/1.$version $code ")
        assertThat(statusLine.message).isEqualTo("")
        assertThat(statusLine.protocol).isEqualTo(Protocol.HTTP_1_1)
        assertThat(statusLine.code).isEqualTo(code)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/proxy/healthcheck/healthcheck_test.go

    		testMetricEquals(metrics.ProxyHealthzTotal.WithLabelValues("503"), float64(hsTest.tracking503), t)
    	}
    	if hsTest.url == livezURL {
    		testMetricEquals(metrics.ProxyLivezTotal.WithLabelValues("200"), float64(hsTest.tracking200), t)
    		testMetricEquals(metrics.ProxyLivezTotal.WithLabelValues("503"), float64(hsTest.tracking503), t)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tests/integration/security/egress_sidecar_tls_origination_test.go

    					expectedResponse: ingressutil.ExpectedResponse{
    						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,
    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. internal/http/server.go

    		} else {
    			interfaceFound = true
    		}
    	}
    	if !interfaceFound {
    		return nil, errors.New("no available interface found")
    	}
    
    	// Wrap given handler to do additional
    	// * return 503 (service unavailable) if the server in shutdown.
    	wrappedHandler := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		// If server is in shutdown.
    		if atomic.LoadUint32(&srv.inShutdown) != 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 09 21:25:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/proxy/util/nfacct/nfacct_linux_test.go

    			},
    			// expected calls: NFNL_MSG_ACCT_GET
    			netlinkCalls: 1,
    		},
    		{
    			name:        "valid without padding",
    			counterName: "metrics",
    			counter:     &Counter{Name: "metrics", Packets: 12, Bytes: 503},
    			handler: &fakeHandler{
    				responses: [][][]byte{{{
    					0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x01, 0x00,
    					0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x00,
    					0x0c, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/RequestBody.kt

       *    has since been closed by the server.
       *  * A client timeout (HTTP 408).
       *  * A authorization challenge (HTTP 401 and 407) that is satisfied by the [Authenticator].
       *  * A retryable server failure (HTTP 503 with a `Retry-After: 0` response header).
       *  * A misdirected request (HTTP 421) on a coalesced connection.
       */
      open fun isOneShot(): Boolean = commonIsOneShot()
    
      companion object {
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 25 14:41:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top