Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for inputFileName (0.58 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ArtifactFileTest.groovy

        def "determines name and extension from file name #inputFileName with version #version"() {
            when:
            def artifactFile = new ArtifactFile(new File(inputFileName), version)
    
            then:
            artifactFile.name == name
            artifactFile.extension == extension
            artifactFile.classifier == null
    
            where:
            inputFileName       | name              | extension | version
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. docs/debugging/inspect/main.go

    	}
    }
    
    func processFile(inputFileName string, privateKey []byte) {
    	// Calculate the output file name
    	var outputFileName string
    	switch {
    	case strings.HasSuffix(inputFileName, ".enc"):
    		outputFileName = strings.TrimSuffix(inputFileName, ".enc") + ".zip"
    	case strings.HasSuffix(inputFileName, ".zip"):
    		outputFileName = strings.TrimSuffix(inputFileName, ".zip") + ".decrypted.zip"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        }
    
        def "can use up-to-date predicate to force task to execute"() {
            def inputFileName = 'src.txt'
    
            buildFile << """
    def isUpToDate = providers.gradleProperty('uptodate').map { true }.orElse(false)
    
    task inputsAndOutputs {
        def inputFile = file('${inputFileName}')
        def outputFile = file('src.a.txt')
        inputs.files inputFile
        outputs.file outputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top