Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 776 for statusCh (0.3 sec)

  1. pkg/envoy/agent.go

    	log.Info("Starting proxy agent")
    	go a.runWait(a.abortCh)
    
    	select {
    	case status := <-a.statusCh:
    		if status.err != nil {
    			if status.err.Error() == errOutOfMemory {
    				log.Warnf("Envoy may have been out of memory killed. Check memory usage and limits.")
    			}
    			log.Errorf("Envoy exited with error: %v", status.err)
    		} else {
    			log.Infof("Envoy exited normally")
    		}
    
    	case <-ctx.Done():
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/io_test.cc

    #include <cstdint>
    #include <fstream>
    #include <string>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/functional/any_invocable.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "tsl/platform/env.h"
    #include "tsl/platform/file_system.h"
    #include "tsl/platform/status_matchers.h"
    #include "tsl/platform/types.h"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 03:28:15 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/isolation.status.yaml.golden

    spec: null
    status:
      conditions:
      - lastTransitionTime: fake
        message: Resource accepted
        reason: Accepted
        status: "True"
        type: Accepted
      - lastTransitionTime: fake
        message: 'Failed to assign to any requested addresses: hostname "isolation-istio.gateway-conformance-infra.svc.domain.suffix"
          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call_test.cc

    #include "tensorflow/compiler/mlir/quantization/common/lift_as_function_call.h"
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/algorithm/container.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/SmallVector.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. docs/en/docs/reference/status.md

    # Status Codes
    
    You can import the `status` module from `fastapi`:
    
    ```python
    from fastapi import status
    ```
    
    `status` is provided directly by Starlette.
    
    It contains a group of named constants (variables) with integer status codes.
    
    For example:
    
    * 200: `status.HTTP_200_OK`
    * 403: `status.HTTP_403_FORBIDDEN`
    * etc.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 871 bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Status.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 586 bytes
    - Viewed (0)
  7. 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)
  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. 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)
  10. tensorflow/compiler/mlir/tf2xla/internal/test_matchers_test.cc

        tensorflow::monitoring::Counter<1>::New(kMetric, "description", "status");
    constexpr char kOkStatus[] = "ok";
    const int kArbitraryIntResult = 37;
    
    template <typename T>
    tsl::StatusOr<T> success(T t) {
      return t;
    }
    absl::StatusOr<int> success() { return kArbitraryIntResult; }
    template <typename T>
    tsl::StatusOr<T> filtered(T t) {
      return tsl::StatusOr<T>(tensorflow::CompileToHloGraphAnalysisFailedError());
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top