Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for UnknownError (0.23 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/junit/AbstractJUnitTestListenerIntegrationTest.groovy

            containsLine(result.getOutput(), "START [Test ${maybeParentheses('unknownError')}(SomeTest)] [${maybeParentheses('unknownError')}]")
            containsLine(result.getOutput(), "FINISH [Test ${maybeParentheses('unknownError')}(SomeTest)] [${maybeParentheses('unknownError')}] [FAILURE] [1] [AppException]")
    
            when:
            testDirectory.file('src/test/java/SomeOtherTest.java').delete()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/registry/core/service/portallocator/controller/repair.go

    			default:
    				nodePortRepairPortErrors.WithLabelValues("unknown").Inc()
    				c.recorder.Eventf(svc, nil, corev1.EventTypeWarning, "UnknownError", "PortAllocation", "Unable to allocate port %d due to an unknown error", port)
    				return fmt.Errorf("unable to allocate port %d for service %s/%s due to an unknown error, exiting: %v", port, svc.Name, svc.Namespace, err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repair.go

    			default:
    				clusterIPRepairIPErrors.WithLabelValues("unknown").Inc()
    				c.recorder.Eventf(&svc, nil, v1.EventTypeWarning, "UnknownError", "ClusterIPAllocation", "Unable to allocate cluster IP [%v]:%s due to an unknown error", family, ip)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top