Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for output_filename (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            withProjectConfig("b") {
                outputFileName = "new"
            }
            succeeds(":a:resolve")
    
            then: // no change, should be up-to-date
            result.assertTasksNotSkipped(":a:resolve")
            transformed()
            outputContains("result = [b-dir.green, c-dir.green]")
    
            when:
            withProjectConfig("b") {
                outputFileName = "new"
                outputFileContent = "new"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.cc

        // We will export the runtime metadata with the same name under the same
        // directory except with a different extention ".rtmeta".
        llvm::SmallString<128> metadata_filename(options_.output_file_name);
        const char kRuntimeMetadataName[] = "rtmeta";
        llvm::sys::path::replace_extension(metadata_filename, kRuntimeMetadataName);
    
        std::string error_msg;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.h

    class TfLiteExporter : public mlir::TFL::tac::TacExporter {
     public:
      // Exporter configuration options.
      struct Options {
        bool export_runtime_metadata = false;
        bool output_mlir = false;
        std::string output_file_name;
        std::vector<std::string> target_hardware_backends;
      };
    
      explicit TfLiteExporter(const Options& options) : options_(options) {}
    
      absl::Status Export(mlir::ModuleOp module) override;
    
     private:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/ReportGeneratorTest.groovy

            then:
            1 * projectReportGenerator.execute(project)
    
            then:
            1 * renderer.completeProject(projectDetails)
    
            then:
            1 * renderer.complete()
        }
    
        def 'sets outputFileName on renderer before generation'() {
            setup:
            final File file = temporaryFolder.getTestDirectory().file("report.txt");
            def generator = createReportGenerator(file)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 22:12:23 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    // options.
    // TODO(jpienaar): Revise the command line option parsing here.
    extern llvm::cl::opt<std::string> input_file_name;
    extern llvm::cl::opt<std::string> output_file_name;
    extern llvm::cl::opt<bool> use_splatted_constant;
    extern llvm::cl::opt<bool> input_mlir;
    extern llvm::cl::opt<bool> output_mlir;
    extern llvm::cl::list<std::string> custom_opdefs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. operator/pkg/object/objects_test.go

    				assert.Error(t, err)
    			} else {
    				assert.NoError(t, err)
    			}
    			assert.Equal(t, tc.expectCount, len(objects))
    			if tc.expectOut {
    				outputFileName := fmt.Sprintf("testdata/%s.out.yaml", tc.input)
    				outputFile, err := os.Open(outputFileName)
    				if err != nil {
    					t.Errorf("error opening test data file: %v", err)
    				}
    				defer outputFile.Close()
    				expectedYAML, err := io.ReadAll(outputFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformTestFixture.groovy

                executer.withArgument("-D${projectName}OutputDir=${buildDirPath}")
            }
    
            void setOutputFileName(String outputFileName) {
                executer.withArgument("-D${projectName}FileName=${outputFileName}")
            }
    
            void setOutputDirName(String outputDirName) {
                executer.withArgument("-D${projectName}DirName=${outputDirName}")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 15:06:39 UTC 2023
    - 21.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::desc("Names to export from SavedModel, separated by ','. Empty "
                       "(the default) means export all."),
        llvm::cl::init(""));
    
    // NOLINTNEXTLINE
    opt<std::string> output_file_name("o", llvm::cl::desc("<output file>"),
                                      llvm::cl::value_desc("filename"),
                                      llvm::cl::init("-"));
    // NOLINTNEXTLINE
    opt<bool> use_splatted_constant(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

      if (!status.ok()) {
        llvm::errs() << status.message() << '\n';
        return kTrFailure;
      }
    
      std::string error_msg;
      auto output = mlir::openOutputFile(output_file_name, &error_msg);
      if (output == nullptr) {
        llvm::errs() << error_msg << '\n';
        return kTrFailure;
      }
      output->os() << result;
      output->keep();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top