Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,167 for gstatus (0.16 sec)

  1. src/net/http/status.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http
    
    // HTTP status codes as registered with IANA.
    // See: https://www.iana.org/assignments/http-status-codes/http-status-codes.xhtml
    const (
    	StatusContinue           = 100 // RFC 9110, 15.2.1
    	StatusSwitchingProtocols = 101 // RFC 9110, 15.2.2
    	StatusProcessing         = 102 // RFC 2518, 10.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)
  2. pilot/pkg/config/kube/ingress/status.go

    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var statusLog = log.RegisterScope("ingress status", "")
    
    // StatusSyncer keeps the status IP in each Ingress resource updated
    type StatusSyncer struct {
    	meshConfig mesh.Watcher
    
    	queue          controllers.Queue
    	ingresses      kclient.Client[*knetworking.Ingress]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/status.go

    type statusError interface {
    	Status() metav1.Status
    }
    
    // ErrorToAPIStatus converts an error to an metav1.Status object.
    func ErrorToAPIStatus(err error) *metav1.Status {
    	switch t := err.(type) {
    	case statusError:
    		status := t.Status()
    		if len(status.Status) == 0 {
    			status.Status = metav1.StatusFailure
    		}
    		switch status.Status {
    		case metav1.StatusSuccess:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 26 12:39:56 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/base/public/status.h

      void SetStatus(TF_Code code, const std::string& msg);
    
      // Status is movable, but not copyable.
      Status(Status&&) = default;
      Status& operator=(Status&&) = default;
    
     private:
      friend class RuntimeBuilder;
      friend class Runtime;
      friend class SavedModelAPI;
      friend class TensorHandle;
    
      // Wraps a TF_Status*, and takes ownership of it.
      explicit Status(TF_Status* status) : status_(status) {}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  5. docs/de/docs/reference/status.md

    # Statuscodes
    
    Sie können das Modul `status` von `fastapi` importieren:
    
    ```python
    from fastapi import status
    ```
    
    `status` wird direkt von Starlette bereitgestellt.
    
    Es enthält eine Gruppe benannter Konstanten (Variablen) mit ganzzahligen Statuscodes.
    
    Zum Beispiel:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * usw.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:17:17 UTC 2024
    - 934 bytes
    - Viewed (0)
  6. src/internal/trace/testdata/generators/go122-syscall-steal-proc-simple.go

    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcRunning)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack)
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 988 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-syscall-steal-proc-gen-boundary-reacquire-new-proc.go

    	testgen.Main(gen)
    }
    
    func gen(t *testgen.Trace) {
    	g := t.Generation(1)
    
    	// One goroutine is exiting with a syscall. It already
    	// acquired a new P.
    	b0 := g.Batch(trace.ThreadID(0), 0)
    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoSyscall)
    	b0.Event("ProcStatus", trace.ProcID(1), go122.ProcIdle)
    	b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b0.Event("GoSyscallEndBlocked")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.Status.json

    {
      "kind": "Status",
      "apiVersion": "resource.k8s.io/v1alpha2",
      "metadata": {
        "selfLink": "selfLinkValue",
        "resourceVersion": "resourceVersionValue",
        "continue": "continueValue",
        "remainingItemCount": 4
      },
      "status": "statusValue",
      "message": "messageValue",
      "reason": "reasonValue",
      "details": {
        "name": "nameValue",
        "group": "groupValue",
        "kind": "kindValue",
        "uid": "uidValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 608 bytes
    - Viewed (0)
  9. src/cmd/trace/procgen.go

    	logEventGenerator[trace.ProcID]
    
    	gStates   map[trace.GoID]*gState[trace.ProcID]
    	inSyscall map[trace.ProcID]*gState[trace.ProcID]
    	maxProc   trace.ProcID
    }
    
    func newProcGenerator() *procGenerator {
    	pg := new(procGenerator)
    	rg := func(ev *trace.Event) trace.ProcID {
    		return ev.Proc()
    	}
    	pg.stackSampleGenerator.getResource = rg
    	pg.logEventGenerator.getResource = rg
    	pg.gStates = make(map[trace.GoID]*gState[trace.ProcID])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. istioctl/pkg/waypoint/waypoint_test.go

    	if programmed {
    		conditions = append(conditions, metav1.Condition{
    			Type:   string(gateway.GatewayConditionProgrammed),
    			Status: kstatus.StatusTrue,
    		})
    	} else {
    		conditions = append(conditions, metav1.Condition{
    			Type:   string(gateway.GatewayConditionProgrammed),
    			Status: kstatus.StatusFalse,
    		})
    	}
    	className := "other"
    	if isWaypoint {
    		className = constants.WaypointGatewayClassName
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 15:53:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top