Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getdents (0.24 sec)

  1. src/syscall/syscall_linux.go

    func Reboot(cmd int) (err error) {
    	return reboot(LINUX_REBOOT_MAGIC1, LINUX_REBOOT_MAGIC2, cmd, "")
    }
    
    func ReadDirent(fd int, buf []byte) (n int, err error) {
    	return Getdents(fd, buf)
    }
    
    func direntIno(buf []byte) (uint64, bool) {
    	return readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))
    }
    
    func direntReclen(buf []byte) (uint64, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  2. src/syscall/zsyscall_openbsd_arm.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  3. src/syscall/zsyscall_openbsd_riscv64.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/syscall/zsyscall_openbsd_amd64.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_openbsd_arm64.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.4K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_openbsd_386.go

    	}
    	return
    }
    
    func libc_accept4_trampoline()
    
    //go:cgo_import_dynamic libc_accept4 accept4 "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func getdents(fd int, buf []byte) (n int, err error) {
    	var _p0 unsafe.Pointer
    	if len(buf) > 0 {
    		_p0 = unsafe.Pointer(&buf[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 07:51:20 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    			Opts:  getDefaultVerifyOptions(t),
    			Certs: getCerts(t, selfSignedCert),
    
    			ExpectErr: true,
    		},
    
    		"server cert disallowed": {
    			Opts:  getDefaultVerifyOptions(t),
    			Certs: getCerts(t, serverCert),
    
    			ExpectErr: true,
    		},
    		"server cert allowing non-client cert usages": {
    			Opts:  x509.VerifyOptions{Roots: getRootCertPool(t)},
    			Certs: getCerts(t, serverCert),
    
    			ExpectOK:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. Makefile

    lint: getdeps ## runs golangci-lint suite of linters
    	@echo "Running $@ check"
    	@$(GOLANGCI) run --build-tags kqueue --timeout=10m --config ./.golangci.yml
    
    lint-fix: getdeps ## runs golangci-lint suite of linters with automatic fixes
    	@echo "Running $@ check"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/net.go

    func (s *NetServer) getOrOpenNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	if netNs == "" {
    		return s.getNetns(pod)
    	}
    	return s.openNetns(pod, netNs)
    }
    
    func (s *NetServer) openNetns(pod *corev1.Pod, netNs string) (Netns, error) {
    	return s.currentPodSnapshot.UpsertPodCache(pod, netNs)
    }
    
    func (s *NetServer) getNetns(pod *corev1.Pod) (Netns, error) {
    	openNetns := s.currentPodSnapshot.Get(string(pod.UID))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
Back to top