Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 69 for getfh (0.04 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

     */
    public abstract class GradleJavadocsPlugin implements Plugin<Project> {
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @Override
        public void apply(Project project) {
            ProjectLayout layout = project.getLayout();
            TaskContainer tasks = project.getTasks();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:10:18 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/local/internal/AbstractBuildCacheCleanupIntegrationTest.groovy

                    @OutputFile File outputFile = new File(temporaryDir, "output.txt")
                    @Input String run = project.findProperty("run") ?: ""
                    @javax.inject.Inject abstract FileSystemOperations getFs()
                    @TaskAction
                    void generate() {
                        logger.warn("Run " + run)
                        fs.copy {
                            from("output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

                    @OutputFile
                    File output = project.file("build/output.txt")
    
                    @Inject
                    abstract FileSystemOperations getFs()
    
                    @TaskAction void doSomething() {
                        output.text = inputFile.text
                        fs.delete { delete(missing) }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskCustomTypesInputPropertyIntegrationTest.groovy

    import java.io.File;
    
    public class SomeTask extends DefaultTask {
        public CustomType v;
        @Input @Optional
        public CustomType getV() { return v; }
    
        public File f;
        @OutputDirectory
        public File getF() { return f; }
    
        @TaskAction
        public void go() { }
    }
    """
        }
    
        def "task can take an input with custom type and task action defined in the build script"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 22 16:04:50 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/decompose_reduce_dataset.cc

        // complexity = # ReduceDataset ops x # of functions in module.
        func::FuncOp reduce_func =
            function->getParentOfType<ModuleOp>().lookupSymbol<FuncOp>(
                reduce_dataset.getF());
    
        // The reduce function arguments consist of three part in this order:
        // 1. Reduction state inputs.
        // 2. Dataset inputs.
        // 3. Captures inputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/runtime/tracestack.go

    		} else if gp != nil {
    			nstk += gcallers(gp, skip, pcBuf[1:])
    		}
    	} else {
    		// Fast path: Unwind using frame pointers.
    		pcBuf[0] = uintptr(skip)
    		if getg() == gp {
    			nstk += fpTracebackPCs(unsafe.Pointer(getfp()), pcBuf[1:])
    		} else if gp != nil {
    			// Three cases:
    			//
    			// (1) We're called on the g0 stack through mcall(fn) or systemstack(fn). To
    			// behave like gcallers above, we start unwinding from sched.bp, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

                    @OutputDirectory
                    abstract DirectoryProperty getOutputDirectory()
    
                    @Inject
                    abstract FileSystemOperations getFs()
    
                    @TaskAction
                    void copy(InputChanges changes) {
                        if (!changes.incremental) {
                            println("Full rebuild - recreating output directory")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

        }
        for (auto call_op : main_func.getOps<TF::StatefulPartitionedCallOp>()) {
          func_ops.push_back(
              dyn_cast_or_null<func::FuncOp>(symbol_table.lookup(call_op.getF())));
        }
    
        DuplicateSmallConstantOps(module_op, main_func);
        ReplaceStablehloOpsInMainFunctionWithXlaCallModuleOps(module_op, main_func,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

          mlir::SymbolTable::lookupNearestSymbolFrom(caller, sym));
      OpBuilder builder(func.getBody());
    
      StringAttr new_group = builder.getStringAttr(
          absl::StrCat(old_group.getValue().str(), caller.getF().str()));
    
      builder.insert(metadata_op.clone());
      for (Operation& op : func.getOps()) {
        if (!IsTPUOp(&op)) continue;
        op.setAttr(TF::kReplicationInfoAttr, new_group);
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-provider-api/1.0-beta-2/wagon-provider-api-1.0-beta-2.jar

    void LazyFileOutputStream(java.io.File); public void close() throws java.io.IOException; public boolean equals(Object); public void flush() throws java.io.IOException; public java.nio.channels.FileChannel getChannel(); public java.io.FileDescriptor getFD() throws java.io.IOException; public int hashCode(); public String toString(); public void write(byte[]) throws java.io.IOException; public void write(byte[], int, int) throws java.io.IOException; public void write(int) throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 45.2K bytes
    - Viewed (1)
Back to top