Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 69 for getfh (0.05 sec)

  1. src/syscall/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 Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. 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)
  3. src/syscall/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: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K 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. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	t.testDeleteNoGraceful(valid.DeepCopyObject(), createFn, getFn, isNotFoundFn, true)
    	t.testDeleteNoGraceful(valid.DeepCopyObject(), createFn, getFn, isNotFoundFn, false)
    	t.testDeleteWithUID(valid.DeepCopyObject(), createFn, getFn, isNotFoundFn, dryRunOpts)
    	t.testDeleteWithUID(valid.DeepCopyObject(), createFn, getFn, isNotFoundFn, opts)
    	t.testDeleteWithResourceVersion(valid.DeepCopyObject(), createFn, getFn, isNotFoundFn, dryRunOpts)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprog/framepointer.go

    //go:noinline
    func framePointerAdjust1(x int) {
    	argp := uintptr(unsafe.Pointer(&x))
    	fp := *getFP()
    	if !(argp-0x100 <= fp && fp <= argp+0x100) {
    		print("saved FP=", fp, " &x=", argp, "\n")
    		panic("FAIL")
    	}
    
    	// grow the stack
    	grow(10000)
    
    	// check again
    	argp = uintptr(unsafe.Pointer(&x))
    	fp = *getFP()
    	if !(argp-0x100 <= fp && fp <= argp+0x100) {
    		print("saved FP=", fp, " &x=", argp, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:58:13 UTC 2023
    - 839 bytes
    - Viewed (0)
  8. src/runtime/stubs_s390x.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    // 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
    - 414 bytes
    - Viewed (0)
  9. src/runtime/stubs_mipsx.go

    //go:build mips || mipsle
    
    package runtime
    
    // Called from assembly only; declared for go vet.
    func load_g()
    func save_g()
    
    // 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
    - 441 bytes
    - Viewed (0)
  10. 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)
Back to top