Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for 503 (0.02 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    	// note that in production we delegate to the special handler that is attached at the end of the delegation chain that checks if the server has installed all known HTTP paths before replying to the client.
    	// it returns 503 if not all registered signals have been ready (closed) otherwise it simply replies with 404.
    	// the apiextentionserver is considered to be initialized once hasCRDInformerSyncedSignal is closed.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesDeclaringDependenciesIntegrationTest.groovy

            TestFile dslDir = sample.dir.file(dsl)
            executer.inDirectory(dslDir)
    
            when:
            succeeds(COPY_LIBS_TASK_NAME)
    
            then:
            dslDir.file('build/libs/spring-web-5.0.3.BUILD-SNAPSHOT.jar').isFile()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("dependencyManagement/declaringDependencies-fileDependencies")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. 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)
  4. src/net/http/status.go

    	StatusInternalServerError           = 500 // RFC 9110, 15.6.1
    	StatusNotImplemented                = 501 // RFC 9110, 15.6.2
    	StatusBadGateway                    = 502 // RFC 9110, 15.6.3
    	StatusServiceUnavailable            = 503 // RFC 9110, 15.6.4
    	StatusGatewayTimeout                = 504 // RFC 9110, 15.6.5
    	StatusHTTPVersionNotSupported       = 505 // RFC 9110, 15.6.6
    	StatusVariantAlsoNegotiates         = 506 // RFC 2295, 8.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  5. pkg/test/echo/server/endpoint/http.go

    		defer resp.Body.Close()
    
    		// The handler applies server readiness when handling HTTP requests. Since the
    		// server won't become ready until all endpoints (including this one) report
    		// ready, the handler will return 503. This means that the endpoint is now ready.
    		if resp.StatusCode != http.StatusServiceUnavailable {
    			return fmt.Errorf("unexpected status code %d", resp.StatusCode)
    		}
    
    		// Server is up now, we're ready.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go

    	SYS_WORK_INTERVAL_CTL              = 499
    	SYS_GETENTROPY                     = 500
    	SYS_NECP_OPEN                      = 501
    	SYS_NECP_CLIENT_ACTION             = 502
    	SYS___NEXUS_OPEN                   = 503
    	SYS___NEXUS_REGISTER               = 504
    	SYS___NEXUS_DEREGISTER             = 505
    	SYS___NEXUS_CREATE                 = 506
    	SYS___NEXUS_DESTROY                = 507
    	SYS___NEXUS_GET_OPT                = 508
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  8. src/net/http/responsewrite_test.go

    	Resp Response
    	Raw  string
    }
    
    func TestResponseWrite(t *testing.T) {
    	respWriteTests := []respWriteTest{
    		// HTTP/1.0, identity coding; no trailer
    		{
    			Response{
    				StatusCode:    503,
    				ProtoMajor:    1,
    				ProtoMinor:    0,
    				Request:       dummyReq("GET"),
    				Header:        Header{},
    				Body:          io.NopCloser(strings.NewReader("abcdef")),
    				ContentLength: 6,
    			},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go

    	SYS_WORK_INTERVAL_CTL              = 499
    	SYS_GETENTROPY                     = 500
    	SYS_NECP_OPEN                      = 501
    	SYS_NECP_CLIENT_ACTION             = 502
    	SYS___NEXUS_OPEN                   = 503
    	SYS___NEXUS_REGISTER               = 504
    	SYS___NEXUS_DEREGISTER             = 505
    	SYS___NEXUS_CREATE                 = 506
    	SYS___NEXUS_DESTROY                = 507
    	SYS___NEXUS_GET_OPT                = 508
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/stream_test.go

    			s, addr := newServer(http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
    				err := r.Copy(w, req)
    				if err != nil {
    					w.WriteHeader(503)
    				}
    			}))
    			defer s.Close()
    
    			config, err := websocket.NewConfig("ws://"+addr, "http://localhost/")
    			if err != nil {
    				t.Error(err)
    				return
    			}
    			config.Protocol = test.requested
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 7.4K bytes
    - Viewed (0)
Back to top