Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for getfp (0.05 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/state/TaskEnumTypesInputPropertyIntegrationTest.groovy

    import java.io.File;
    
    public class SomeTask extends DefaultTask {
        public SomeEnum e;
        @Input
        public SomeEnum getE() { return e; }
    
        public File f;
        @OutputDirectory
        public File getF() { return f; }
    
        @TaskAction
        public void go() { }
    }
    """
            buildFile << """
    task someTask(type: SomeTask) {
        e = SomeEnum.E1
        f = file("build/e1")
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/link/internal/wasm/asm.go

    	case "js":
    		writeUleb128(ctxt.Out, 4) // number of exports
    		for _, name := range []string{"run", "resume", "getsp"} {
    			s := ldr.Lookup("wasm_export_"+name, 0)
    			idx := uint32(lenHostImports) + uint32(ldr.SymValue(s)>>16) - funcValueOffset
    			writeName(ctxt.Out, name)           // inst.exports.run/resume/getsp in wasm_exec.js
    			ctxt.Out.WriteByte(0x00)            // func export
    			writeUleb128(ctxt.Out, uint64(idx)) // funcidx
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.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. 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)
  7. src/syscall/zsysnum_freebsd_386.go

    	SYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, \
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, \
    	SYS_GETFH                    = 161 // { int getfh(char *fname, \
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    	SYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  8. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_QUOTACTL                 = 148 // { int quotactl(char *path, int cmd, int uid, \
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, \
    	SYS_GETFH                    = 161 // { int getfh(char *fname, \
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    	SYS_RTPRIO                   = 166 // { int rtprio(int function, pid_t pid, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_STATFS        = 157 // { int statfs(char *path, struct statfs *buf); }
    	SYS_FSTATFS       = 158 // { int fstatfs(int fd, struct statfs *buf); }
    	SYS_GETFH         = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_GETDOMAINNAME = 162 // { int getdomainname(char *domainname, int len); }
    	SYS_SETDOMAINNAME = 163 // { int setdomainname(char *domainname, int len); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  10. 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)
Back to top