Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for UnknownError (0.15 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo_lib.cc

      if (!module.ok()) {
        return absl::UnknownError(
            absl::StrCat("Failed to convert SavedModel to StableHLO: ",
                         module.status().message()));
      }
    
      auto bytecode = ModuleToBytecode(module.value().get());
      if (!bytecode.ok()) {
        return absl::UnknownError(
            absl::StrCat("Failed to serialize MLIR module to bytecode: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGIntegrationTest.groovy

            outputContains "FINISH [Test method knownError(SomeTest)] [knownError] [java.lang.RuntimeException: message]\n"
            outputContains "START [Test method unknownError(SomeTest)] [unknownError]\n"
            outputContains "FINISH [Test method unknownError(SomeTest)] [unknownError] [AppException]\n"
        }
    
        @Issue("GRADLE-1532")
        def "supports thread pool size"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

        } else {
          options.toco_flags.set_enable_select_tf_ops(false);
        }
        if (!tflite::MlirToFlatBufferTranslateFunction(module, options, &result)) {
          return absl::UnknownError("Failed to export tflite file.");
        }
      }
    
      output->os() << result;
      output->keep();
      return absl::OkStatus();
    }
    
    }  // namespace tac
    }  // namespace TFL
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 03:47:03 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/registry/core/service/ipallocator/controller/repairip.go

    			if err != nil {
    				return err
    			}
    			continue
    		}
    		if err != nil {
    			r.recorder.Eventf(svc, nil, v1.EventTypeWarning, "UnknownError", "ClusterIPAllocation", "Unable to allocate ClusterIP [%v]: %s due to an unknown error", family, ip)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
Back to top