Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,783 for statusCh (0.17 sec)

  1. pilot/pkg/config/kube/gateway/testdata/reference-policy-service.status.yaml.golden

        reason: Programmed
        status: "True"
        type: Programmed
      listeners:
      - attachedRoutes: 2
        conditions:
        - lastTransitionTime: fake
          message: No errors found
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: No errors found
          reason: NoConflicts
          status: "False"
          type: Conflicted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 16 17:59:50 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Status.java

    import javax.annotation.Nullable;
    import java.io.Serializable;
    
    public class Status implements Serializable {
        @Nullable
        private final Long pid;
        private final String version;
        private final String status;
    
        public Status(Long pid, String version, String status) {
            this.pid = pid;
            this.version = version;
            this.status = status;
        }
    
        @Nullable
        public Long getPid() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compiler_test.cc

    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/notification.h"
    #include "tensorflow/core/platform/status.h"
    #include "tensorflow/core/platform/status_matchers.h"
    #include "tensorflow/core/platform/statusor.h"
    
    namespace tensorflow {
    namespace {
    using ::testing::_;
    using ::testing::Return;
    
    using XlaDeviceCompiler =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/eastwest-remote.status.yaml.golden

    metadata:
      creationTimestamp: null
      name: eastwestgateway-grpc
      namespace: istio-system
    spec: null
    status:
      parents: []
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      creationTimestamp: null
      name: eastwestgateway-webhook
      namespace: istio-system
    spec: null
    status:
      parents: []
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 21:19:52 UTC 2023
    - 544 bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/ReportDaemonStatusClient.java

        }
    
        @VisibleForTesting
        void printRunningDaemons(final List<Status> statuses) {
            if (!statuses.isEmpty()) {
                for(Status status : statuses) {
                    Long pid = status.getPid();
                    LOGGER.quiet(String.format(STATUS_FORMAT, pid == null ? "PID unknown" : pid, status.getStatus(), status.getVersion()));
                }
            }
        }
    
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.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: Fri Dec 15 04:12:07 UTC 2023
    - 608 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/resource.k8s.io.v1alpha2.Status.yaml

      group: groupValue
      kind: kindValue
      name: nameValue
      retryAfterSeconds: 5
      uid: uidValue
    kind: Status
    message: messageValue
    metadata:
      continue: continueValue
      remainingItemCount: 4
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
    reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 432 bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.Status.yaml

      group: groupValue
      kind: kindValue
      name: nameValue
      retryAfterSeconds: 5
      uid: uidValue
    kind: Status
    message: messageValue
    metadata:
      continue: continueValue
      remainingItemCount: 4
      resourceVersion: resourceVersionValue
      selfLink: selfLinkValue
    reason: reasonValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 432 bytes
    - Viewed (0)
  9. docs/de/docs/advanced/response-change-status-code.md

    # Response – Statuscode ändern
    
    Sie haben wahrscheinlich schon vorher gelesen, dass Sie einen Standard-[Response-Statuscode](../tutorial/response-status-code.md){.internal-link target=_blank} festlegen können.
    
    In manchen Fällen müssen Sie jedoch einen anderen als den Standard-Statuscode zurückgeben.
    
    ## Anwendungsfall
    
    Stellen Sie sich zum Beispiel vor, Sie möchten standardmäßig den HTTP-Statuscode „OK“ `200` zurückgeben.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:58 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. cmd/server_test.go

    	c.Assert(err, nil)
    	// execute the HTTP request initiating the new multipart upload.
    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	// expecting the response status code to be http.StatusOK(200 OK) .
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	// parse the response body and obtain the new upload ID.
    	decoder := xml.NewDecoder(response.Body)
    	newResponse := &InitiateMultipartUploadResponse{}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top