Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mq_open (0.11 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_helper.cc

    }
    
    const std::string TempFile::getName() const { return name_; }
    
    bool TempFile::truncate() {
      std::fstream::close();
      std::fstream::open(name_, std::ios::binary | std::ios::out);
      return std::fstream::is_open();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 26 14:56:58 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  2. prepare_stmt.go

    	defer close(cacheStmt.prepared)
    
    	// Reason why cannot lock conn.PrepareContext
    	// suppose the maxopen is 1, g1 is creating record and g2 is querying record.
    	// 1. g1 begin tx, g1 is requeue because of waiting for the system call, now `db.ConnPool` db.numOpen == 1.
    	// 2. g2 select lock `conn.PrepareContext(ctx, query)`, now db.numOpen == db.maxOpen , wait for release.
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_to_string.cc

        *serialized_model = std::string{std::istreambuf_iterator<char>(std::cin),
                                        std::istreambuf_iterator<char>()};
      } else {
        std::ifstream t(file_path);
        if (!t.is_open()) {
          std::cerr << "Failed to open input file.\n";
          return true;
        }
        *serialized_model = std::string{std::istreambuf_iterator<char>(t),
                                        std::istreambuf_iterator<char>()};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 15:52:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top