Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 205 for Dup (0.02 sec)

  1. pkg/volume/util/util_test.go

    				},
    			}),
    			expectedMountList: []string{"ro", "nfsvers=3", "fsid=100", "hard"},
    			systemOptions:     []string{"fsid=100", "hard"},
    		},
    		"vol-with-sys-opts-with-dup": {
    			volume: createVolumeSpecWithMountOption("good-mount-opts", "ro,nfsvers=3", v1.PersistentVolumeSpec{
    				PersistentVolumeSource: v1.PersistentVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_KILL                     = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID                  = 39  // { pid_t getppid(void); }
    	SYS_DUP                      = 41  // { int dup(u_int fd); }
    	SYS_PIPE                     = 42  // { int pipe(void); }
    	SYS_GETEGID                  = 43  // { gid_t getegid(void); }
    	SYS_PROFIL                   = 44  // { int profil(caddr_t samples, size_t size, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  3. pkg/controller/nodeipam/ipam/range_allocator.go

    	nodesSynced cache.InformerSynced
    	broadcaster record.EventBroadcaster
    	recorder    record.EventRecorder
    
    	// queues are where incoming work is placed to de-dup and to allow "easy"
    	// rate limited requeues on errors
    	queue workqueue.RateLimitingInterface
    }
    
    var _ CIDRAllocator = &rangeAllocator{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/wasm/wasmobj.go

    			for _, f := range wi.Params {
    				// Each load instructions will consume the value of sp on the stack, so
    				// we need to read sp for each param. WASM appears to not have a stack dup instruction
    				// (a strange omission for a stack-based VM), if it did, we'd be using the dup here.
    				p = appendp(p, AGet, regAddr(REG_SP))
    
    				// Offset is the location of the param on the Go stack (ie relative to sp).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_solaris_amd64.go

    //go:cgo_import_dynamic libc_Chmod chmod "libc.so"
    //go:cgo_import_dynamic libc_Chown chown "libc.so"
    //go:cgo_import_dynamic libc_Chroot chroot "libc.so"
    //go:cgo_import_dynamic libc_Close close "libc.so"
    //go:cgo_import_dynamic libc_Dup dup "libc.so"
    //go:cgo_import_dynamic libc_Fchdir fchdir "libc.so"
    //go:cgo_import_dynamic libc_Fchmod fchmod "libc.so"
    //go:cgo_import_dynamic libc_Fchown fchown "libc.so"
    //go:cgo_import_dynamic libc_Fpathconf fpathconf "libc.so"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:09:10 UTC 2023
    - 37.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go

    int ioctl(int, int, uintptr_t);
    int fcntl(uintptr_t, int, uintptr_t);
    int fsync_range(int, int, long long, long long);
    int acct(uintptr_t);
    int chdir(uintptr_t);
    int chroot(uintptr_t);
    int close(int);
    int dup(int);
    void exit(int);
    int faccessat(int, uintptr_t, unsigned int, int);
    int fchdir(int);
    int fchmod(int, unsigned int);
    int fchmodat(int, uintptr_t, unsigned int, int);
    int fchownat(int, uintptr_t, int, int, int);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  7. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_SYNC          = 36  // { int sync(void); }
    	SYS_KILL          = 37  // { int kill(int pid, int signum); }
    	SYS_GETPPID       = 39  // { pid_t getppid(void); }
    	SYS_DUP           = 41  // { int dup(u_int fd); }
    	SYS_PIPE          = 42  // { int pipe(void); }
    	SYS_GETEGID       = 43  // { gid_t getegid(void); }
    	SYS_PROFIL        = 44  // { int profil(caddr_t samples, size_t size, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    }
    
    /*
     * Direct access
     */
    
    //sys	Acct(path string) (err error)
    //sys	Chdir(path string) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(oldfd int) (fd int, err error)
    //sys	Exit(code int)
    //sys	Faccessat(dirfd int, path string, mode uint32, flags int) (err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	ClockGettime(clockid int32, time *Timespec) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Dup2(from int, to int) (err error)
    //sys	Exit(code int)
    //sys	ExtattrGetFd(fd int, attrnamespace int, attrname string, data uintptr, nbytes int) (ret int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. src/syscall/syscall_solaris.go

    //sys	Chdir(path string) (err error)
    //sys	Chmod(path string, mode uint32) (err error)
    //sys	Chown(path string, uid int, gid int) (err error)
    //sys	Chroot(path string) (err error)
    //sys	Close(fd int) (err error)
    //sys	Dup(fd int) (nfd int, err error)
    //sys	Fchdir(fd int) (err error)
    //sys	Fchmod(fd int, mode uint32) (err error)
    //sys	Fchown(fd int, uid int, gid int) (err error)
    //sys	Fpathconf(fd int, name int) (val int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top