Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,540 for statusCh (0.14 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/tensorflow/tests/move_tpu_compile_to_front.mlir

       // CHECK: _TPUCompileMlir
       // CHECK-SAME: Y
       // CHECK: OpA
       // CHECK: OpB
       // CHECK: OpC
       "tf.OpA"() : () -> ()
       %status_x, %program_x = "tf._TPUCompileMlir"() { metadata = "X", mlir_module = "..." } : () -> (tensor<!tf_type.string>, tensor<!tf_type.string>)
       "tf.OpB"() : () -> ()
       %status_y, %program_y = "tf._TPUCompileMlir"() { metadata = "Y", mlir_module = "..." } : () -> (tensor<!tf_type.string>, tensor<!tf_type.string>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 17 00:26:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph_populator.go

    }
    
    func resourceClaimStatusesEqual(statusA, statusB []corev1.PodResourceClaimStatus) bool {
    	if len(statusA) != len(statusB) {
    		return false
    	}
    	// In most cases, status entries only get added once and not modified.
    	// But this cannot be guaranteed, so for the sake of correctness in all
    	// cases this code here has to check.
    	for i := range statusA {
    		if statusA[i].Name != statusB[i].Name {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K 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. istioctl/pkg/writer/pilot/status.go

    	}
    
    	return w, fullStatus, nil
    }
    
    func xdsStatusPrintln(w io.Writer, status *xdsWriterStatus) error {
    	_, err := fmt.Fprintf(w, "%v\t%v\t%v\t%v\t%v\t%v\t%v\t%v\t%v\n",
    		status.proxyID, status.clusterID,
    		status.clusterStatus, status.listenerStatus, status.endpointStatus, status.routeStatus,
    		status.extensionconfigStatus,
    		status.istiodID, status.istiodVersion)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. 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)
  7. src/net/http/status.go

    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
    	StatusEarlyHints         = 103 // RFC 8297
    
    	StatusOK                   = 200 // RFC 9110, 15.3.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)
  8. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization_test.cc

    #include "tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.h"
    
    #include <string>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "tensorflow/cc/saved_model/loader.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_executable_persistor_test.cc

      MOCK_METHOD(absl::StatusOr<std::string>, SerializeExecutable,
                  (const xla::LocalExecutable& executable), (override));
      MOCK_METHOD(absl::StatusOr<std::string>, BuildSerializedExecutable,
                  (const XlaCompiler::Options& options,
                   const XlaCompiler::CompilationResult& result),
                  (override));
      MOCK_METHOD(absl::StatusOr<std::unique_ptr<xla::LocalExecutable>>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog_test.go

    func TestStatusIsNot(t *testing.T) {
    	statusTestTable := []struct {
    		status   int
    		statuses []int
    		want     bool
    	}{
    		{http.StatusOK, []int{}, true},
    		{http.StatusOK, []int{http.StatusOK}, false},
    		{http.StatusCreated, []int{http.StatusOK, http.StatusAccepted}, true},
    	}
    	for _, tt := range statusTestTable {
    		sp := StatusIsNot(tt.statuses...)
    		got := sp(tt.status)
    		if got != tt.want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 18:05:09 UTC 2021
    - 6.2K bytes
    - Viewed (0)
Back to top