Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for ods (0.07 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/JodExtractorTest.java

            assertTrue(content.contains("ใƒ†ใ‚นใƒˆ"));
        }
    
        public void test_getText_ooos() {
            InputStream in = ResourceUtil.getResourceAsStream("extractor/ooo/test.ods");
            Map<String, String> params = new HashMap<String, String>();
            params.put("resourceName", "test.ods");
            ExtractData extractData = jodExtractor.getText(in, params);
            String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/string_util.h

    namespace tensorflow {
    std::string OpAsString(mlir::Operation& op);
    std::string AttrAsString(mlir::Attribute& attr);
    
    // b/281863212 enable automatic without Op/AttrAsString.
    // We add logging via a wrapper struct in order to respect ODS and avoid
    // multiple symbol definitions if MLIR or someone else decides to add ostream
    // definitions for the MLIR symbols.
    struct LoggableOperation {
      mlir::Operation& v;
      // NOLINTNEXTLINE(google-explicit-constructor)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 15 19:47:52 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // A derived attribute that returns the size of `idx`-th ODS-declared variadic
    // operand.
    class TF_DerivedOperandSizeAttr<int idx> : DerivedAttr<
      "size_t",
      "auto range = getODSOperands(" # idx # ");\n"
      "return std::distance(range.begin(), range.end());",
      [{ $_builder.getI64IntegerAttr($_self) }]>;
    
    // A derived attribute that returns the element type of `idx`-th ODS-declared
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            extensionMap.put("docx", "txt");
            extensionMap.put("wpd", "txt");
            extensionMap.put("txt", "txt");
            extensionMap.put("html", "txt");
            // Spreadsheet Formats
            extensionMap.put("ods", "tsv");
            extensionMap.put("ots", "tsv");
            extensionMap.put("sxc", "tsv");
            extensionMap.put("xls", "tsv");
            extensionMap.put("xlsx", "tsv");
            extensionMap.put("csv", "tsv");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      static auto* const registry = []() {
        auto* registry = new CostFunctionRegistry;
        // TODO(chky): Find a more scalable way to register cost functions. One
        // option is to incorporate it is TF MLIR ODS.
        RegisterCostFunction<mlir::TF::GatherV2Op>(*registry, InferGatherV2Cost);
        RegisterCostFunction<mlir::TF::SparseSegmentSumOp>(
            *registry, InferSparseSegmentOpCost<mlir::TF::SparseSegmentSumOp>);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions_drq.cc

        if (spec->quantizable_operands.empty()) return failure();
    
        for (auto idx : spec->quantizable_operands) {
          // This op is guaranteed to be a constant as ODS checks IsConstTensor.
          // Check if the number of elements meets the requirement.
          int current_num_elements =
              mlir::cast<ShapedType>(call_op.getOperand(idx).getType())
                  .getNumElements();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Client-TLSv13-ALPN

    00000040  00 00 00 00 00 00 00 00  00 00 00 00 13 03 00 00  |................|
    00000050  2e 00 2b 00 02 03 04 00  33 00 24 00 1d 00 20 21  |..+.....3.$... !|
    00000060  18 6f 64 73 17 22 b0 11  60 92 ab 01 b3 fb 8a 2d  |.ods."..`......-|
    00000070  27 15 5a 46 ec 6c c3 0c  a7 73 00 b2 7e 9f 4f 14  |'.ZF.l...s..~.O.|
    00000080  03 03 00 01 01 17 03 03  00 24 68 7f 90 b2 66 74  |.........$h...ft|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      }
    
     private:
      // Return true is there are still unfilled ODS slots for adding more inputs.
      bool IsNextODSArgAvailable();
    
      MLIRContext* context_;
      MlirFunctionContext* function_context_;
      SmallVector<Value, 8> operands_;
      llvm::StringMap<Attribute> attrs_;
      std::unique_ptr<OperationState> state_;
      // This is the index of the next ODS operand that will be added with AddInput
      // or AddInput;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/export_tf_dialect_op.cc

      // The elements are owned by the MLIRContext.
      absl::flat_hash_set<absl::string_view> attrs_to_ignore;
    
      // We ignore attributes attached to the operation when there is already a
      // derived attribute defined in ODS.
      if (derived_attrs) {
        for (auto derived_attr : derived_attrs) {
          attrs_to_ignore.insert(
              mlir::StringRefToView(derived_attr.getName().strref()));
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

            return absl::InternalError("The input of BatchMatMul must have rank.");
          }
        } else if (function_name.contains("gather")) {
          // This op is guaranteed to be a constant as ODS checks IsConstTensor.
          // Check if the number of elements meets the requirement.
          int64_t num_elements =
              mlir::cast<ShapedType>(call_op.getOperand(0).getType())
                  .getNumElements();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top