11+ results for 'Inputfile:' (0 ms)
Not the results you expected?
AppService_services.py (https://github.com/jackygrahamez/DrugDiscovery-Home.git) Python · 535 lines
229 _launchJobInput: ns1.JobInputType_Def
230 _argList: str, optional
231 _inputFile: ns1.InputFileType_Def, optional
232 _contents: str
233 _name: str
261 _launchJobBlockingInput: ns1.JobInputType_Def
262 _argList: str, optional
263 _inputFile: ns1.InputFileType_Def, optional
264 _contents: str
265 _name: str
splitace.pl (https://github.com/stuartpyoung/agua.git) Perl · 253 lines
fake_file_operations.cc (https://github.com/chromium/chromium.git) C++ · 283 lines
91 FakeFileOperations::OutputFile::~OutputFile() = default;
93 FakeFileOperations::InputFile::InputFile(
94 base::FilePath filename,
95 std::vector<std::uint8_t> data,
99 io_error(std::move(io_error)) {}
101 FakeFileOperations::InputFile::InputFile() = default;
102 FakeFileOperations::InputFile::InputFile(const InputFile&) = default;
103 FakeFileOperations::InputFile::InputFile(InputFile&&) = default;
104 FakeFileOperations::InputFile& FakeFileOperations::InputFile::operator=(
105 const InputFile&) = default;
106 FakeFileOperations::InputFile& FakeFileOperations::InputFile::operator=(
107 InputFile&&) = default;
108 FakeFileOperations::InputFile::~InputFile() = default;
main.cpp (https://github.com/mgottschlag/horde3d.git) C++ · 171 lines
run-tests.js (https://github.com/fishmongr/Mandible.git) JavaScript · 97 lines
qmverifier.py (https://github.com/shamelmerchant/RMG-Py.git) Python · 71 lines
GenerateTaxiRoutes.py (https://bitbucket.org/sieben/ensiie.git) Python · 205 lines
kvthick.m
(git://github.com/aludnam/MATLAB.git)
Objective C · 211 lines
✨ Summary
The code is a wrapper for the Khoros image processing software, specifically the vthick
function. It takes input parameters and optional arguments from MATLAB, calls the corresponding Khoros command-line interface, and returns the output to MATLAB. The code handles various input/output requirements, including required and optional inputs/outputs, and provides a way to access Khoros functionality within MATLAB.
The code is a wrapper for the Khoros image processing software, specifically the vthick
function. It takes input parameters and optional arguments from MATLAB, calls the corresponding Khoros command-line interface, and returns the output to MATLAB. The code handles various input/output requirements, including required and optional inputs/outputs, and provides a way to access Khoros functionality within MATLAB.
ImfCompressor.h (https://bitbucket.org/melbyruarus/pbrt.git) C Header · 252 lines
tiki2po.py (https://github.com/mellterm/translate.git) Python · 88 lines
mapped_file_windows.cc (https://github.com/google/bazel.git) C++ · 211 lines
43 };
45 MappedInputFile::MappedInputFile(const char* name) {
46 impl_ = NULL;
47 opened_ = false;
91 }
93 MappedInputFile::~MappedInputFile() {
94 delete impl_;
95 }
97 void MappedInputFile::Discard(size_t bytes) {
98 // This is not supported on Windows for now. I'm not sure if we can unmap
99 // parts of an existing view and that this is necessary for Windows at all.