Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 79 for getfh (0.04 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        public abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        public abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            // ...
    // end::custom-task-class[]
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/runtime/stubs_arm.go

    func save_g()
    func emptyfunc()
    func _initcgo()
    func read_tls_fallback()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 689 bytes
    - Viewed (0)
  4. src/runtime/stubs_mips64x.go

    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    //go:noescape
    func asmcgocall_no_g(fn, arg unsafe.Pointer)
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 10:04:13 UTC 2023
    - 522 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/runtime/stubs_loong64.go

    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:23 UTC 2023
    - 638 bytes
    - Viewed (0)
  7. src/runtime/stubs_ppc64x.go

    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 02:48:11 UTC 2023
    - 688 bytes
    - Viewed (0)
  8. src/runtime/stubs_amd64.go

    //
    // Spills/loads arguments in registers to/from an internal/abi.RegArgs
    // respectively. Does not follow the Go ABI.
    func spillArgs()
    func unspillArgs()
    
    // getfp returns the frame pointer register of its caller or 0 if not implemented.
    // TODO: Make this a compiler intrinsic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

        public void action() {
            FileTree kotlinDslExtensionsJar = getArchives().zipTree(getKotlinDslExtensionsJar());
            getFs().sync(spec -> {
                spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.kt"));
                spec.into(getGeneratedSources());
            });
            getFs().sync(spec -> {
                spec.from(kotlinDslExtensionsJar, zip -> zip.include("**/*.class"));
                spec.into(getGeneratedClasses());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 19 17:15:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/ProcessTemplates.java

        @OutputDirectory
        public abstract DirectoryProperty getOutputDir();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @TaskAction
        public void processTemplates() {
            getFs().copy(spec -> spec.
                into(getOutputDir()).
                from(getSourceFiles()).
                expand(new HashMap<>(getTemplateData().getVariables().get()))
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top