Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 167 for OutputFile (0.24 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    @Classpath
                    FileCollection classPath
    
                    @OutputFile
                    File outputFile
    
                    @Override
                    Iterable<String> asArguments() {
                        ['-cp', classPath.asPath, 'org.gradle.TestMain', expectedWorkingDirPath, outputFile.absolutePath]
                    }
                }
    
                task run(type: Exec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy

                class CustomTask extends DefaultTask {
                    @Input
                    String val
    
                    @OutputFile
                    File outputFile = new File(temporaryDir, "output.txt")
    
                    @TaskAction
                    void generate() {
                        outputFile.text = val
                    }
                }
    
                task customTask(type: CustomTask) { val = "$val" }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/asm/main.go

    		ctxt.Retpoline = true
    	}
    
    	ctxt.Bso = bufio.NewWriter(os.Stdout)
    	defer ctxt.Bso.Flush()
    
    	architecture.Init(ctxt)
    
    	// Create object file, write header.
    	buf, err := bio.Create(*flags.OutputFile)
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer buf.Close()
    
    	if !*flags.SymABIs {
    		buf.WriteString(objabi.HeaderString())
    		fmt.Fprintf(buf, "!\n")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

                            } else {
                                File outputFile = null;
                                try {
                                    outputFile = File.createTempFile("crawler-SmbClient-", ".out");
                                    copy(file, outputFile);
                                    responseData.setResponseBody(outputFile, true);
                                } catch (final Exception e) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/python/mlir.cc

      std::string error;
      std::unique_ptr<llvm::ToolOutputFile> outputFile =
          mlir::openOutputFile(filename, &error);
      if (!error.empty()) {
        TF_SetStatus(status, TF_INVALID_ARGUMENT,
                     ("Unable to create output file " + error).c_str());
        return;
      }
      outputFile->keep();
      if (failed(mlir::writeBytecodeToFile(*module, outputFile->os(),
                                           writer_config))) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/ReactorReader.java

                    }
                }
    
                for (Path outputFile : (Iterable<Path>) outputFiles::iterator) {
                    if (Files.isDirectory(outputFile)) {
                        continue;
                    }
    
                    long outputFileLastModified =
                            Files.getLastModifiedTime(outputFile).toMillis();
                    if (outputFileLastModified > artifactLastModified) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

                    @Input
                    String fileName = name + ".txt"
    
                    @OutputFile
                    File outputFile = new File(project.buildDir, name + "-output.txt")
    
                    @TaskAction
                    void generate() {
                        outputFile.text = message
                        localStateDir.mkdir()
                        def localStateFile = new File(localStateDir, fileName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidateAction.java

            storeResults(taskValidationProblems, params.getOutputFile());
        }
    
    
        private static void storeResults(List<Problem> problemMessages, RegularFileProperty outputFile) {
            if (outputFile.isPresent()) {
                File output = outputFile.get().getAsFile();
                try {
                    //noinspection ResultOfMethodCallIgnored
                    output.createNewFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/GenerateGraphTask.groovy

        GenerateGraphTask() {
            outputs.upToDateWhen { false }
        }
    
        @TaskAction
        void generateOutput() {
            outputFile.parentFile.mkdirs()
            //noinspection GroovyMissingReturnStatement
            outputFile.withPrintWriter { writer ->
                def root = rootComponent.get()
    
                def components = new LinkedHashSet()
                def dependencies = new LinkedHashSet()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cache/cache.go

    	// day.
    	Close() error
    
    	// OutputFile returns the path on disk where OutputID is stored.
    	//
    	// It's only called after a successful get or put call so it doesn't need
    	// to return an error; it's assumed that if the previous get or put succeeded,
    	// it's already on disk.
    	OutputFile(OutputID) string
    
    	// FuzzDir returns where fuzz files are stored.
    	FuzzDir() string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top