Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 169 for StatusCode (0.2 sec)

  1. docs/de/docs/advanced/additional-status-codes.md

    Es wird der Default-Statuscode oder derjenige verwendet, den Sie in Ihrer *Pfadoperation* festgelegt haben.
    
    ## Zusätzliche Statuscodes
    
    Wenn Sie neben dem Hauptstatuscode weitere Statuscodes zurückgeben möchten, können Sie dies tun, indem Sie direkt eine `Response` zurückgeben, wie etwa eine `JSONResponse`, und den zusätzlichen Statuscode direkt festlegen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:04:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/net/http/cgi/host.go

    			h.handleInternalRedirect(rw, req, loc)
    			return
    		}
    		if statusCode == 0 {
    			statusCode = http.StatusFound
    		}
    	}
    
    	if statusCode == 0 && headers.Get("Content-Type") == "" {
    		rw.WriteHeader(http.StatusInternalServerError)
    		h.printf("cgi: missing required Content-Type in headers")
    		return
    	}
    
    	if statusCode == 0 {
    		statusCode = http.StatusOK
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    	// get sent again
    	second, _, _ := fetchPath(manager, "application/json", discoveryPath, "wrongetag")
    
    	assert.Equal(t, http.StatusOK, initial.StatusCode, "response should be 200 OK")
    	assert.Equal(t, http.StatusOK, second.StatusCode, "response should be 200 OK")
    	assert.Equal(t, initial.Header.Get("ETag"), second.Header.Get("ETag"), "ETag of both requests should be equal")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  4. cmd/warm-backend-azure.go

    		// have StatusCode to help to convert to object errors.
    		return err
    	}
    
    	serviceCode := string(azureErr.ServiceCode())
    	statusCode := azureErr.Response().StatusCode
    
    	return azureCodesToObjectError(err, serviceCode, statusCode, bucket, object)
    }
    
    func azureCodesToObjectError(err error, serviceCode string, statusCode int, bucket string, object string) error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 16:44:08 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. cmd/tier-handlers.go

    		Code:       "XMinioAdminTierAlreadyExists",
    		Message:    "Specified remote tier already exists",
    		StatusCode: http.StatusConflict,
    	}
    	// error returned when remote tier is not found
    	errTierNotFound = AdminError{
    		Code:       "XMinioAdminTierNotFound",
    		Message:    "Specified remote tier was not found",
    		StatusCode: http.StatusNotFound,
    	}
    	// error returned when remote tier name is not in uppercase
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. pkg/spiffe/spiffe_test.go

    		t.Errorf("Unexpected spiffe URI for empty namespace and service account: %s", nonsense)
    	}
    }
    
    type handler struct {
    	statusCode int
    	body       []byte
    }
    
    func (h *handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
    	w.WriteHeader(h.statusCode)
    	w.Write(h.body)
    }
    
    func TestRetrieveSpiffeBundleRootCerts(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMethod.java

        }
    
        private static class SendFixedContent implements ResponseProducer {
            private final String content;
            private final int statusCode;
    
            SendFixedContent(int statusCode, String content) {
                this.content = content;
                this.statusCode = statusCode;
            }
    
            @Override
            public void writeTo(int requestId, HttpExchange exchange) throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. cmd/object-lambda-handlers.go

    	"Not Extended":                    http.StatusNotExtended,
    	"Network Authentication Required": http.StatusNetworkAuthenticationRequired,
    }
    
    // StatusCode returns a HTTP Status code for the HTTP text. It returns -1
    // if the text is unknown.
    func StatusCode(text string) int {
    	if code, ok := statusTextToCode[text]; ok {
    		return code
    	}
    	return -1
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/net/http/httptest/recorder.go

    	}
    	res := &http.Response{
    		Proto:      "HTTP/1.1",
    		ProtoMajor: 1,
    		ProtoMinor: 1,
    		StatusCode: rw.Code,
    		Header:     rw.snapHeader,
    	}
    	rw.result = res
    	if res.StatusCode == 0 {
    		res.StatusCode = 200
    	}
    	res.Status = fmt.Sprintf("%03d %s", res.StatusCode, http.StatusText(res.StatusCode))
    	if rw.Body != nil {
    		res.Body = io.NopCloser(bytes.NewReader(rw.Body.Bytes()))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. tensorflow/cc/training/coordinator.cc

      RequestStop().IgnoreError();
      Join().IgnoreError();
    }
    
    Status Coordinator::RegisterRunner(std::unique_ptr<RunnerInterface> runner) {
      {
        mutex_lock l(mu_);
        if (should_stop_) {
          return Status(absl::StatusCode::kFailedPrecondition,
                        "The coordinator has been stopped.");
        }
      }
      mutex_lock l(runners_lock_);
      runners_.push_back(std::move(runner));
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:30:37 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top