Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ods (0.05 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. 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)
  4. 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)
  5. 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)
  6. 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)
Back to top