Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,444 for runFix (0.12 sec)

  1. test/fixedbugs/issue19028.go

    // rundir
    
    // Copyright 2017 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.
    
    // This test failed when the compiler didn't use the
    // correct code to identify the type reflect.Method.
    // The failing code relied on Type.String() which had
    // formatting that depended on whether a package (in
    // this case "reflect") was imported more than once.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 21:57:56 UTC 2017
    - 454 bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/util/ipvs_linux_test.go

    		}
    	}
    }
    
    func Test_stringToProtocol(t *testing.T) {
    	tests := []string{
    		"TCP", "UDP", "ICMP", "SCTP",
    	}
    	expected := []uint16{
    		uint16(unix.IPPROTO_TCP), uint16(unix.IPPROTO_UDP), uint16(0), uint16(unix.IPPROTO_SCTP),
    	}
    	for i := range tests {
    		got := stringToProtocol(tests[i])
    		if got != expected[i] {
    			t.Errorf("stringToProtocol() failed - got %#v, want %#v",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 27 16:37:50 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. test/fixedbugs/issue9608.go

    // rundir
    
    // Copyright 2015 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.
    
    // Issue 9608: dead code elimination in switch statements.
    
    // This has to be done as a package rather than as a file,
    // because run.go runs files with 'go run', which passes the
    // -complete flag to compiler, causing it to complain about
    // the intentionally unimplemented function fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 06 19:05:47 UTC 2015
    - 478 bytes
    - Viewed (0)
  4. src/net/cgo_unix_syscall.go

    package net
    
    import (
    	"internal/syscall/unix"
    	"runtime"
    	"syscall"
    	"unsafe"
    )
    
    const (
    	_C_AF_INET      = syscall.AF_INET
    	_C_AF_INET6     = syscall.AF_INET6
    	_C_AF_UNSPEC    = syscall.AF_UNSPEC
    	_C_EAI_AGAIN    = unix.EAI_AGAIN
    	_C_EAI_NONAME   = unix.EAI_NONAME
    	_C_EAI_SERVICE  = unix.EAI_SERVICE
    	_C_EAI_NODATA   = unix.EAI_NODATA
    	_C_EAI_OVERFLOW = unix.EAI_OVERFLOW
    	_C_EAI_SYSTEM   = unix.EAI_SYSTEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:50:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/net/cgo_darwin.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import "internal/syscall/unix"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 07 21:05:53 UTC 2022
    - 298 bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/validation/vld_unix.go

    	return conn.Control(func(descriptor uintptr) {
    		err := unix.SetsockoptInt(int(descriptor), unix.SOL_SOCKET, unix.SO_REUSEADDR, 1)
    		if err != nil {
    			log.Errorf("Fail to set fd %d SO_REUSEADDR with error %v", descriptor, err)
    		}
    		err = unix.SetsockoptInt(int(descriptor), unix.SOL_SOCKET, unix.SO_REUSEPORT, 1)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/net/file_unix_test.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package net
    
    import (
    	"internal/syscall/unix"
    	"testing"
    )
    
    // For backward compatibility, opening a net.Conn, turning it into an os.File,
    // and calling the Fd method should return a blocking descriptor.
    func TestFileFdBlocks(t *testing.T) {
    	if !testableNetwork("unix") {
    		t.Skipf("skipping: unix sockets not supported")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 16:48:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. src/net/unixsock_windows_test.go

    	if !windows.SupportUnixSocket() {
    		t.Skip("unix test")
    	}
    	handler := func(ls *localServer, ln Listener) {}
    	for _, laddr := range []string{"", testUnixAddr(t)} {
    		laddr := laddr
    		taddr := testUnixAddr(t)
    		ta, err := ResolveUnixAddr("unix", taddr)
    		if err != nil {
    			t.Fatal(err)
    		}
    		ln, err := ListenUnix("unix", ta)
    		if err != nil {
    			t.Fatal(err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:24:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. src/internal/testpty/pty_darwin.go

    package testpty
    
    import (
    	"internal/syscall/unix"
    	"os"
    	"syscall"
    )
    
    func open() (pty *os.File, processTTY string, err error) {
    	m, err := unix.PosixOpenpt(syscall.O_RDWR)
    	if err != nil {
    		return nil, "", ptyError("posix_openpt", err)
    	}
    	if err := unix.Grantpt(m); err != nil {
    		syscall.Close(m)
    		return nil, "", ptyError("grantpt", err)
    	}
    	if err := unix.Unlockpt(m); err != nil {
    		syscall.Close(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 19:00:19 UTC 2022
    - 790 bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/app/fds_unix.go

    // limitations under the License.
    
    package app
    
    import "golang.org/x/sys/unix"
    
    func raiseFileLimits() (uint64, error) {
    	rlimit := unix.Rlimit{}
    	if err := unix.Getrlimit(unix.RLIMIT_NOFILE, &rlimit); err != nil {
    		return 0, err
    	}
    	rlimit.Cur = rlimit.Max
    	if err := unix.Setrlimit(unix.RLIMIT_NOFILE, &rlimit); err != nil {
    		return 0, err
    	}
    
    	return rlimit.Cur, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 22:16:26 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top