Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 90 for chars (0.06 sec)

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

    	SYS_REVOKE                 = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK               = 58  // { int readlink(char *path, char *buf, int count); }
    	SYS_EXECVE                 = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                  = 60  // { int umask(int newmask); } umask umask_args int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                    = 60  // { int umask(int newmask); }
    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_riscv64.go

    	SYS_REVOKE                   = 56  // { int revoke(char *path); }
    	SYS_SYMLINK                  = 57  // { int symlink(char *path, char *link); }
    	SYS_READLINK                 = 58  // { ssize_t readlink(char *path, char *buf, size_t count); }
    	SYS_EXECVE                   = 59  // { int execve(char *fname, char **argv, char **envv); }
    	SYS_UMASK                    = 60  // { int umask(int newmask); }
    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/syscall/zsysnum_openbsd_riscv64.go

    	SYS_LINKAT         = 317 // { int sys_linkat(int fd1, const char *path1, int fd2, \
    	SYS_MKDIRAT        = 318 // { int sys_mkdirat(int fd, const char *path, \
    	SYS_MKFIFOAT       = 319 // { int sys_mkfifoat(int fd, const char *path, \
    	SYS_MKNODAT        = 320 // { int sys_mknodat(int fd, const char *path, \
    	SYS_OPENAT         = 321 // { int sys_openat(int fd, const char *path, int flags, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:38 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go

    	SYS_REVOKE         = 56  // { int sys_revoke(const char *path); }
    	SYS_SYMLINK        = 57  // { int sys_symlink(const char *path, const char *link); }
    	SYS_READLINK       = 58  // { ssize_t sys_readlink(const char *path, char *buf, size_t count); }
    	SYS_EXECVE         = 59  // { int sys_execve(const char *path, char * const *argp, char * const *envp); }
    	SYS_UMASK          = 60  // { mode_t sys_umask(mode_t newmask); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/arm64/include -fsigned-char /tmp/arm64/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && linux
    
    package unix
    
    const (
    	SYS_IO_SETUP                = 0
    	SYS_IO_DESTROY              = 1
    	SYS_IO_SUBMIT               = 2
    	SYS_IO_CANCEL               = 3
    	SYS_IO_GETEVENTS            = 4
    	SYS_SETXATTR                = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/path/match.go

    	return star, pattern[0:i], pattern[i:]
    }
    
    // matchChunk checks whether chunk matches the beginning of s.
    // If so, it returns the remainder of s (after the match).
    // Chunk is all single-character operators: literals, char classes, and ?.
    func matchChunk(chunk, s string) (rest string, ok bool, err error) {
    	// failed records whether the match has failed.
    	// After the match fails, the loop continues on processing chunk,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 23 17:33:57 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/s390x/include -fsigned-char /tmp/s390x/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build s390x && linux
    
    package unix
    
    const (
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    	SYS_CLOSE                   = 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcshared/testdata/main4.c

    #include <sys/types.h>
    #include <unistd.h>
    #include <sched.h>
    #include <time.h>
    #include <dlfcn.h>
    
    static void die(const char* msg) {
    	perror(msg);
    	exit(EXIT_FAILURE);
    }
    
    static volatile sig_atomic_t sigioSeen;
    
    // Use up some stack space.
    static void recur(int i, char *p) {
    	char a[1024];
    
    	*p = '\0';
    	if (i > 0) {
    		recur(i - 1, a);
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    // mkerrors.sh -Wall -Werror -static -I/tmp/arm64/include -fsigned-char
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm64 && linux
    
    // Code generated by cmd/cgo -godefs; DO NOT EDIT.
    // cgo -godefs -- -Wall -Werror -static -I/tmp/arm64/include -fsigned-char _const.go
    
    package unix
    
    import "syscall"
    
    const (
    	B1000000                         = 0x1008
    	B115200                          = 0x1002
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top