Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 837 for statusCh (0.12 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/STLExtras.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    #include "mlir/IR/OwningOpRef.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. 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)
  4. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

    std::vector<TensorHandlePtr> DeviceThread::Join(TF_Status* status) {
      std::vector<TensorHandlePtr> result;
      {
        tensorflow::mutex_lock l(execution_mutex_);
        while (execution_state_ != ExecutionState::kHasResult) {
          finished_execute_.wait(l);
        }
        if (TF_GetCode(status_.get()) != TF_OK) {
          TF_SetStatus(status, TF_GetCode(status_.get()),
                       TF_Message(status_.get()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 07:47:20 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/log/log.h"
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/span.h"
    #include "llvm/ADT/SmallVector.h"
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_experimental_test.cc

          TF_NewStatus(), TF_DeleteStatus);
      int assign = TF_OpIsStateful("AssignAddVariableOp", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      EXPECT_EQ(assign, 1);
      int id = TF_OpIsStateful("Identity", status.get());
      ASSERT_EQ(TF_OK, TF_GetCode(status.get())) << TF_Message(status.get());
      EXPECT_EQ(id, 0);
    }
    
    class ShapeInferenceTest : public ::testing::Test {
     protected:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. pkg/proxy/healthcheck/healthcheck_test.go

    	testHandlerWithHealth(hcs, nsn3, http.StatusOK, 7, true, t)
    	testHandlerWithHealth(hcs, nsn4, http.StatusOK, 6, true, t)
    }
    
    func testHandler(hcs *server, nsn types.NamespacedName, status int, endpoints int, t *testing.T) {
    	tHandler(hcs, nsn, status, endpoints, true, t)
    }
    
    func testHandlerWithHealth(hcs *server, nsn types.NamespacedName, status int, endpoints int, kubeProxyHealthy bool, t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/object.h

        }
        auto imm_t =
            static_cast<tensorflow::ImmediateExecutionTensorHandle*>(abstract_t);
        tensorflow::Status status;
        t.reset(imm_t->Resolve(&status));
        if (!status.ok()) {
          return status;
        }
      }
      if (data.size() != t->NumElements()) {
        return tensorflow::errors::InvalidArgument(absl::StrCat(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  10. plugin/pkg/admission/noderestriction/admission.go

    	}
    }
    
    func resourceClaimStatusesEqual(statusA, statusB []api.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
    - 23.6K bytes
    - Viewed (0)
Back to top