Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for input_filename (0.27 sec)

  1. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

            succeeds taskName
            outputFile.text.contains inputFileName
    
            cleanup:
            cleanupSubst(drive)
        }
    
        def "up to date check works from filesystem's root - input file to output folder copy"() {
            def drive = 'Y:'
            substRoot(drive)
    
            def inputFileName = "input.txt"
            def inputFile = file(inputFileName)
            inputFile << 'content'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/lite/tfl_quantizer.cc

      llvm::InitLLVM y(argc, argv);
      llvm::cl::ParseCommandLineOptions(argc, argv);
      auto file_or_err = llvm::MemoryBuffer::getFileOrSTDIN(inputFileName.c_str());
      if (std::error_code error = file_or_err.getError()) {
        llvm::errs() << argv[0] << ": could not open input file '" << inputFileName
                     << "': " << error.message() << "\n";
        return 1;
      }
      auto buffer = file_or_err->get();
      std::string output_buffer;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerContinuousIntegrationTest.groovy

                    }
                }
    """
        }
    
        def "reuses compiler daemons across continuous build instances" () {
            def inputFileName = sourceFileName
            def inputFile = file(inputFileName).createFile()
            def compilerDaemonIdentityFileName = "build/compilerId"
            def compilerDaemonIdentityFile = file(compilerDaemonIdentityFileName)
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 04 07:31:58 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

      llvm::InitLLVM y(argc, argv);
      llvm::cl::ParseCommandLineOptions(argc, argv);
      auto file_or_err = llvm::MemoryBuffer::getFileOrSTDIN(inputFileName.c_str());
      if (std::error_code error = file_or_err.getError()) {
        llvm::errs() << argv[0] << ": could not open input file '" << inputFileName
                     << "': " << error.message() << "\n";
        return 1;
      }
      auto buffer = file_or_err->get();
      auto maybe_module =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/UpToDateIntegTest.groovy

            def inputDir2 = file("input2").createDir()
            def inputFileName = "inputFile.txt"
            def inputFile = inputDir1.file(inputFileName)
            inputFile.text = "input"
    
            when:
            run "customTask"
            then:
            executedAndNotSkipped(":customTask")
    
            when:
            Files.move(inputFile.toPath(), inputDir2.file(inputFileName).toPath())
            run "customTask"
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 13 12:00:09 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.cc

    namespace tflite {
    namespace {
    std::unique_ptr<mlir::TFL::tac::TacImporter> CreateTfLiteImporter(
        const std::string input_file_name) {
      mlir::TFL::tac::TfLiteImporter::Options options;
      options.file_name = input_file_name;
      options.input_mlir = false;
      return std::make_unique<mlir::TFL::tac::TfLiteImporter>(options);
    }
    
    std::unique_ptr<mlir::TFL::tac::TacExporter> CreateTfLiteExporter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tac_translate.cc

    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    #include "tensorflow/core/platform/init_main.h"
    
    using llvm::cl::opt;
    
    // NOLINTNEXTLINE
    opt<std::string> input_file_name(llvm::cl::Positional,
                                     llvm::cl::desc("<input file>"),
                                     llvm::cl::init("-"));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 14:25:57 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

        module = tensorflow::ImportSavedModel(
            input_file_name, saved_model_version, tags, extra_opdefs,
            exported_names, specs, /*enable_variable_lifting=*/true, &context,
            &bundle);
      } else if (import_hlo) {
        // HLO import path.
        std::string error;
        std::unique_ptr<llvm::MemoryBuffer> buffer =
            mlir::openInputFile(input_file_name, &error);
        if (buffer == nullptr) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    //
    // Please see the implementation file for documentation of details of these
    // 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;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. operator/pkg/object/objects_test.go

    			failOnError: true,
    			expectErr:   false,
    			expectCount: 0,
    		},
    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			inputFileName := fmt.Sprintf("testdata/%s.yaml", tc.input)
    			inputFile, err := os.Open(inputFileName)
    			if err != nil {
    				t.Errorf("error opening test data file: %v", err)
    			}
    			defer inputFile.Close()
    			manifest, err := io.ReadAll(inputFile)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top