Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 180 for syscall1 (0.13 sec)

  1. src/syscall/zsysnum_linux_amd64.go

    // mksysnum_linux.pl /usr/include/asm/unistd_64.h
    // Code generated by the command above; DO NOT EDIT.
    
    //go:build amd64 && linux
    
    package syscall
    
    const (
    	SYS_READ                   = 0
    	SYS_WRITE                  = 1
    	SYS_OPEN                   = 2
    	SYS_CLOSE                  = 3
    	SYS_STAT                   = 4
    	SYS_FSTAT                  = 5
    	SYS_LSTAT                  = 6
    	SYS_POLL                   = 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 10.1K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_linux_mips.go

    // mksysnum_linux.pl /usr/include/mips-linux-gnu/asm/unistd.h
    // Code generated by the command above; DO NOT EDIT.
    
    package syscall
    
    const (
    	SYS_SYSCALL                = 4000
    	SYS_EXIT                   = 4001
    	SYS_FORK                   = 4002
    	SYS_READ                   = 4003
    	SYS_WRITE                  = 4004
    	SYS_OPEN                   = 4005
    	SYS_CLOSE                  = 4006
    	SYS_WAITPID                = 4007
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/trace/regions.go

    		<td> <a href="/regionblock?{{$p}}">graph</a> <a href="/regionblock?{{$p}}&raw=1" download="block.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Syscall profile:</td>
    		<td> <a href="/regionsyscall?{{$p}}">graph</a> <a href="/regionsyscall?{{$p}}&raw=1" download="syscall.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Scheduler wait profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/volume/util/subpath/subpath_linux_test.go

    limitations under the License.
    */
    
    package subpath
    
    import (
    	"fmt"
    	"io/ioutil"
    	"net"
    	"os"
    	"path/filepath"
    	"reflect"
    	"strconv"
    	"syscall"
    	"testing"
    
    	"k8s.io/klog/v2"
    	"k8s.io/mount-utils"
    )
    
    func TestSafeMakeDir(t *testing.T) {
    	defaultPerm := os.FileMode(0750) + os.ModeDir
    	maxPerm := os.FileMode(0777) + os.ModeDir
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 10 16:52:55 UTC 2021
    - 37.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go

    // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build arm && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go

    // go run mksysnum.go https://cvsweb.openbsd.org/cgi-bin/cvsweb/~checkout~/src/sys/kern/syscalls.master
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build mips64 && openbsd
    
    package unix
    
    // Deprecated: Use libc wrappers instead of direct syscalls.
    const (
    	SYS_EXIT           = 1   // { void sys_exit(int rval); }
    	SYS_FORK           = 2   // { int sys_fork(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    	}
    
    	for _, s := range file.Imports {
    		p, err := strconv.Unquote(s.Path.Value)
    		if err != nil {
    			continue
    		}
    		if p == "syscall/js" {
    			// We don't support examples that import syscall/js,
    			// because the package syscall/js is not available in the playground.
    			return nil
    		}
    		n := path.Base(p)
    		if s.Name != nil {
    			n = s.Name.Name
    			switch n {
    			case "_":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. src/syscall/fs_wasip1.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasip1
    
    package syscall
    
    import (
    	"internal/stringslite"
    	"runtime"
    	"unsafe"
    )
    
    func init() {
    	// Try to set stdio to non-blocking mode before the os package
    	// calls NewFile for each fd. NewFile queries the non-blocking flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/net/conf.go

    // license that can be found in the LICENSE file.
    
    package net
    
    import (
    	"errors"
    	"internal/bytealg"
    	"internal/godebug"
    	"internal/stringslite"
    	"io/fs"
    	"os"
    	"runtime"
    	"sync"
    	"syscall"
    )
    
    // The net package's name resolution is rather complicated.
    // There are two main approaches, go and cgo.
    // The cgo resolver uses C functions like getaddrinfo.
    // The go resolver reads system files directly and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. cluster/gce/windows/common.psm1

        }
        Start-Sleep -Seconds 1
      }
    }
    
    # This compiles some C# code that can make syscalls, and pulls the
    # result into our powershell environment so we can make syscalls from this script.
    # We make syscalls directly, because whatever the powershell cmdlets do under the hood,
    # they can't seem to open the log files concurrently with writers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
Back to top