Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 95 for SYSCALL (0.12 sec)

  1. pkg/proxy/util/nfacct/nfacct_linux_test.go

    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EBUSY},
    			},
    			err: ErrObjectAlreadyExists,
    			// expected calls: NFNL_MSG_ACCT_NEW
    			netlinkCalls: 1,
    		},
    		{
    			name:        "insufficient privilege",
    			counterName: "metric-2",
    			handler: &fakeHandler{
    				errs: []error{syscall.EPERM},
    			},
    			err: ErrUnexpected,
    			// expected calls: NFNL_MSG_ACCT_NEW
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. src/runtime/cgocall.go

    	checkm := gp.m
    
    	// Save current syscall parameters, so m.winsyscall can be
    	// used again if callback decide to make syscall.
    	winsyscall := gp.m.winsyscall
    
    	// entersyscall saves the caller's SP to allow the GC to trace the Go
    	// stack. However, since we're returning to an earlier stack frame and
    	// need to pair with the entersyscall() call made by cgocall, we must
    	// save syscall* and let reentersyscall restore them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/net/net.go

    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.fd.Read(b)
    	if err != nil && err != io.EOF {
    		err = &OpError{Op: "read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return n, err
    }
    
    // Write implements the Conn Write method.
    func (c *conn) Write(b []byte) (int, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.fd.Write(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. src/syscall/syscall_linux.go

    // Note that sometimes we use a lowercase //sys name and
    // wrap it in our own nicer implementation.
    
    package syscall
    
    import (
    	"internal/itoa"
    	runtimesyscall "internal/runtime/syscall"
    	"runtime"
    	"unsafe"
    )
    
    // Pull in entersyscall/exitsyscall for Syscall/Syscall6.
    //
    // Note that this can't be a push linkname because the runtime already has a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. src/time/zoneinfo_read.go

    				return z, nil
    			}
    		}
    		if firstErr == nil && err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    	if loadFromEmbeddedTZData != nil {
    		zoneData, err := loadFromEmbeddedTZData(name)
    		if err == nil {
    			if z, err = LoadLocationFromTZData(name, []byte(zoneData)); err == nil {
    				return z, nil
    			}
    		}
    		if firstErr == nil && err != syscall.ENOENT {
    			firstErr = err
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/net/net_windows_test.go

    	"io"
    	"os"
    	"os/exec"
    	"regexp"
    	"slices"
    	"strings"
    	"syscall"
    	"testing"
    	"time"
    )
    
    func toErrno(err error) (syscall.Errno, bool) {
    	operr, ok := err.(*OpError)
    	if !ok {
    		return 0, false
    	}
    	syserr, ok := operr.Err.(*os.SyscallError)
    	if !ok {
    		return 0, false
    	}
    	errno, ok := syserr.Err.(syscall.Errno)
    	if !ok {
    		return 0, false
    	}
    	return errno, true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    echo
    echo '// Errors'
    echo 'const ('
    cat _error.out | grep -f _error.grep | sed 's/=\(.*\)/= syscall.Errno(\1)/'
    echo ')'
    
    echo
    echo '// Signals'
    echo 'const ('
    cat _error.out | grep -f _signal.grep | sed 's/=\(.*\)/= syscall.Signal(\1)/'
    echo ')'
    
    # Run C program to print error and syscall strings.
    (
    	echo -E "
    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/os/signal/doc.go

    CTRL_LOGOFF_EVENT or CTRL_SHUTDOWN_EVENT to the process, Notify will
    return syscall.SIGTERM. Unlike Control-C and Control-Break, Notify does
    not change process behavior when either CTRL_CLOSE_EVENT,
    CTRL_LOGOFF_EVENT or CTRL_SHUTDOWN_EVENT is received - the process will
    still get terminated unless it exits. But receiving syscall.SIGTERM will
    give the process an opportunity to clean up before termination.
    
    # Plan 9
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:11:00 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. src/runtime/tracestack.go

    			// in a syscall, in which case it's currently not executing. gp.sched contains the most
    			// up-to-date information about where it stopped, and like case (1), we match gcallers
    			// here.
    			//
    			// (3) We're called against a gp that we're not currently executing on, but that is in
    			// a syscall, in which case gp.syscallsp != 0. gp.syscall* contains the most up-to-date
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/syscall/exec_linux.go

    	UidMappings  []SysProcIDMap // User ID mappings for user namespaces.
    	GidMappings  []SysProcIDMap // Group ID mappings for user namespaces.
    	// GidMappingsEnableSetgroups enabling setgroups syscall.
    	// If false, then setgroups syscall will be disabled for the child process.
    	// This parameter is no-op if GidMappings == nil. Otherwise for unprivileged
    	// users this should be set to false for mappings work.
    	GidMappingsEnableSetgroups bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top