Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for lgetfh (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }
    	SYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }
    	SYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }
    	SYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }
    	SYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_NFSSVC                   = 155 // { int nfssvc(int flag, caddr_t argp); }
    	SYS_LGETFH                   = 160 // { int lgetfh(char *fname, struct fhandle *fhp); }
    	SYS_GETFH                    = 161 // { int getfh(char *fname, struct fhandle *fhp); }
    	SYS_SYSARCH                  = 165 // { int sysarch(int op, char *parms); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/buildSrc/src/main/java/org/example/Instrument.java

        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @TaskAction
        public void doIt() {
            getFs().copy(spec -> spec.
                into(getDestinationDir()).
                from(getClassFiles()).
                rename("(.*)\\.class", "$1_instrumented.class")
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 893 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/Instrument.java

        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        @TaskAction
        public void doIt() {
            getFs().copy(spec -> spec.
                into(getDestinationDir()).
                from(getClassFiles()).
                rename("(.*)\\.class", "$1_instrumented.class")
            );
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 893 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecutionFixed/groovy/build.gradle

        @Inject abstract FileSystemOperations getFs() // <1>
    
        @TaskAction
        void action() {
            fs.copy {
                from 'source'
                into 'destination'
            }
        }
    }
    // end::task-type[]
    
    tasks.register('someTaskType', SomeTask)
    
    // tag::ad-hoc-task[]
    interface Injected {
        @Inject FileSystemOperations getFs() // <1>
    }
    tasks.register('someTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 691 bytes
    - Viewed (0)
  9. src/runtime/stubs_riscv64.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: Wed Oct 04 02:55:17 UTC 2023
    - 695 bytes
    - Viewed (0)
  10. 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)
Back to top