Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getBufferSize (0.17 sec)

  1. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

            return getTerminal().getWidth();
        }
    
        @Override
        public int getHeight() {
            return getTerminal().getHeight();
        }
    
        @Override
        public Size getBufferSize() {
            return getTerminal().getBufferSize();
        }
    
        @Override
        public void flush() {
            getTerminal().flush();
        }
    
        @Override
        public String getType() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/import_utils.cc

            string(input_filename.data(), input_filename.size()).c_str());
      }
    
      const auto& input_file = *file_or_err;
      absl::string_view content(input_file->getBufferStart(),
                                input_file->getBufferSize());
      return LoadProtoFromBuffer(content, proto);
    }
    
    Status LoadProtoFromFile(absl::string_view input_filename,
                             protobuf::Message* proto) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
          context, loc, false, inputs, outputs, false);
    }
    
    }  // namespace
    
    std::string FlatBufferFileToMlir(const std::string& model_file_or_buffer,
                                     bool input_is_filepath) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/utils/utils.cc

                                    /*column=*/0);
      std::vector<std::string> inputs;
      std::vector<std::string> outputs;
      return tflite::FlatBufferToMlir(
          absl::string_view(buffer->getBufferStart(), buffer->getBufferSize()),
          context, loc, /*use_external_constant=*/false, inputs, outputs,
          experimental_prune_unreachable_nodes_unconditionally);
    }
    
    absl::Status ExportFlatbufferOrMlir(const std::string& output_filename,
    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. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        return emitError(loc, "parsing output array info failed ")
                   << output_arrays_flag,
               nullptr;
      }
      return tflite::FlatBufferToMlir(
          absl::string_view(input->getBufferStart(), input->getBufferSize()),
          context, loc, use_external_constant, inputs, outputs,
          experimental_prune_unreachable_nodes_unconditionally,
          disable_vhlo_to_stablehlo);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/mlir.cc

                       ("Unable to load input file " + error).c_str());
          return;
        }
    
        auto buffer_view =
            std::string_view(buffer->getBufferStart(), buffer->getBufferSize());
        module = tflite::FlatBufferToMlir(
            buffer_view, &context, loc, use_external_constant, ordered_input_arrays,
            ordered_output_arrays);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

            return controlEncoding;
        }
    
        public void setControlEncoding(final String controlEncoding) {
            this.controlEncoding = controlEncoding;
        }
    
        public int getBufferSize() {
            return bufferSize;
        }
    
        public void setBufferSize(final int bufferSize) {
            this.bufferSize = bufferSize;
        }
    
        public String getPassiveLocalHost() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top