Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 86 for fd (0.11 sec)

  1. src/syscall/exec_linux_test.go

    	}
    
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	fd, suffix := prepareCgroupFD(t)
    
    	cmd := testenv.Command(t, exe, "-test.run=^TestUseCgroupFD$")
    	cmd.Env = append(cmd.Environ(), "GO_WANT_HELPER_PROCESS=1")
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		UseCgroupFD: true,
    		CgroupFD:    fd,
    	}
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go

    	_         [4]byte
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint64
    	Fname  [6]int8
    	Fpack  [6]int8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    )
    
    type Sigset_t struct {
    	Val [16]uint64
    }
    
    const _C__NSIG = 0x41
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go

    	_         [4]byte
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint64
    	Fname  [6]int8
    	Fpack  [6]int8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	_      int32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x400000
    )
    
    const (
    	POLLRDHUP = 0x800
    )
    
    type Sigset_t struct {
    	Val [16]uint64
    }
    
    const _C__NSIG = 0x41
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go

    	_         [4]byte
    }
    
    type Ustat_t struct {
    	Tfree  int32
    	Tinode uint64
    	Fname  [6]int8
    	Fpack  [6]int8
    	_      [4]byte
    }
    
    type EpollEvent struct {
    	Events uint32
    	Fd     int32
    	Pad    int32
    }
    
    const (
    	OPEN_TREE_CLOEXEC = 0x80000
    )
    
    const (
    	POLLRDHUP = 0x2000
    )
    
    type Sigset_t struct {
    	Val [16]uint64
    }
    
    const _C__NSIG = 0x41
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. tests/integration/security/file_mounted_certs/main_test.go

          #    no identities ([spiffe://cluster.local/ns/mounted-certs/sa/client client.mounted-certs.svc]) matched istio-fd-sds-1-4523/default
          XDS_AUTH: "false"
    `
    
    	cfg.EastWestGatewayValues = `
    components:
      ingressGateways:
      - enabled: true
        name: istio-eastwestgateway
        label:
          istio: eastwestgateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. src/go/printer/printer_test.go

    }`
    	fset := token.NewFileSet()
    	file, err := parser.ParseFile(fset, "", src, 0)
    	if err != nil {
    		panic(err)
    	}
    
    	// Replace the result with call(), which is on the next line.
    	fd := file.Decls[0].(*ast.FuncDecl)
    	ret := fd.Body.List[0].(*ast.ReturnStmt)
    	ret.Results[0] = ret.Results[0].(*ast.CompositeLit).Elts[0]
    
    	var buf bytes.Buffer
    	if err := Fprint(&buf, fset, ret); err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/runtime/debug/garbage.go

    // connected to a pipe or socket whose other end is in the same Go
    // process; instead, use a temporary file or network socket.
    //
    // The heap dump format is defined at https://golang.org/s/go15heapdump.
    func WriteHeapDump(fd uintptr)
    
    // SetTraceback sets the amount of detail printed by the runtime in
    // the traceback it prints before exiting due to an unrecovered panic
    // or an internal runtime error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. cmd/common-main.go

    	currentReleaseTime time.Time
    	orchestrated       = IsKubernetes() || IsDocker()
    )
    
    func init() {
    	if !term.IsTerminal(int(os.Stdout.Fd())) || !term.IsTerminal(int(os.Stderr.Fd())) {
    		color.TurnOff()
    	}
    	if env.Get("NO_COLOR", "") != "" || env.Get("TERM", "") == "dumb" {
    		color.TurnOff()
    	}
    
    	if runtime.GOOS == "windows" {
    		if mousetrap.StartedByExplorer() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. src/net/http/request_test.go

    		t.Errorf("textb value = %q, want %q", g, e)
    	}
    	if g := req.FormValue("missing"); g != "" {
    		t.Errorf("missing value = %q, want empty string", g)
    	}
    
    	assertMem := func(n string, fd multipart.File) {
    		if _, ok := fd.(*os.File); ok {
    			t.Error(n, " is *os.File, should not be")
    		}
    	}
    	fda := testMultipartFile(t, req, "filea", "filea.txt", fileaContents)
    	defer fda.Close()
    	assertMem("filea", fda)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 ~ /^HW_MACHINE$/ ||
    		$2 ~ /^SYSCTL_VERS/ ||
    		$2 !~ "MNT_BITS" &&
    		$2 ~ /^(MS|MNT|MOUNT|UMOUNT)_/ ||
    		$2 ~ /^NS_GET_/ ||
    		$2 ~ /^TUN(SET|GET|ATTACH|DETACH)/ ||
    		$2 ~ /^(O|F|[ES]?FD|NAME|S|PTRACE|PT|PIOD|TFD)_/ ||
    		$2 ~ /^KEXEC_/ ||
    		$2 ~ /^LINUX_REBOOT_CMD_/ ||
    		$2 ~ /^LINUX_REBOOT_MAGIC[12]$/ ||
    		$2 ~ /^MODULE_INIT_/ ||
    		$2 !~ "NLA_TYPE_MASK" &&
    		$2 !~ /^RTC_VL_(ACCURACY|BACKUP|DATA)/ &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
Back to top