Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for reportError (0.3 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        return mlir::success();
      }
      if (report_error)
        llvm::errs() << std::string(sharding_hlo.status().message()) << "\n";
      return mlir::failure();
    }
    
    mlir::LogicalResult DecodeShardingAttribute(mlir::Attribute shard_attr,
                                                xla::OpSharding& sharding,
                                                bool report_error) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/catalog/parser/TomlCatalogFileParser.java

                .severity(ERROR);
        }
    
        private void assertNoParseErrors(TomlParseResult result) {
            if (result.hasErrors()) {
                List<TomlParseError> errors = result.errors();
                reportErrors(errors);
    
                TreeFormatter formatter = new TreeFormatter();
                formatter.node(INVALID_TOML_CATALOG_DEFINITION);
                formatter.startChildren();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    	logger.CriticalIf(GlobalContext, registry.Register(nodeCollector))
    	if err := registry.Register(prometheus.NewProcessCollector(prometheus.ProcessCollectorOpts{
    		Namespace:    minioNamespace,
    		ReportErrors: true,
    	})); err != nil {
    		logger.CriticalIf(GlobalContext, err)
    	}
    	if err := registry.Register(prometheus.NewGoCollector()); err != nil {
    		logger.CriticalIf(GlobalContext, err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
Back to top