Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 148 for accept4 (0.27 sec)

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

    	}
    	return nil, EAFNOSUPPORT
    }
    
    func Accept(fd int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept4(fd, &rsa, &len, 0)
    	if err != nil {
    		return
    	}
    	sa, err = anyToSockaddr(fd, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    func Accept4(fd int, flags int) (nfd int, sa Sockaddr, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	return nil, EAFNOSUPPORT
    }
    
    func Accept(fd int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept(fd, &rsa, &len)
    	if err != nil {
    		return
    	}
    	// TODO(neeilan): Remove 0 in call
    	sa, err = anyToSockaddr(0, &rsa)
    	if err != nil {
    		Close(nfd)
    		nfd = 0
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_accept4Addr() *(func(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error))
    
    var accept4 = enter_accept4
    
    func enter_accept4(s int, rsa *RawSockaddrAny, addrlen *_Socklen, flags int) (fd int, err error) {
    	funcref := get_accept4Addr()
    	if funcptrtest(GetZosLibVec()+SYS___ACCEPT4_A<<4, "") == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    		t.Skip("skipping in short mode")
    	}
    
    	timeout := 100 * time.Microsecond
    	for !t.Failed() {
    		acceptc := make(chan net.Conn)
    		listener := newLocalListener(t)
    		go func() {
    			for {
    				conn, err := listener.Accept()
    				if err != nil {
    					close(acceptc)
    					return
    				}
    				acceptc <- conn
    			}
    		}()
    
    		addr := listener.Addr().String()
    		dialer := &net.Dialer{
    			Timeout: timeout,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. pkg/proxy/iptables/proxier.go

    	// FORWARD policy is not accept.
    	proxier.filterRules.Write(
    		"-A", string(kubeForwardChain),
    		"-m", "comment", "--comment", `"kubernetes forwarding rules"`,
    		"-m", "mark", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "ACCEPT",
    	)
    
    	// The following rule ensures the traffic after the initial packet accepted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	if len == nil && !p.got(_DotDotDot) {
    		p.xnest++
    		len = p.expr()
    		p.xnest--
    	}
    	if p.tok == _Comma {
    		// Trailing commas are accepted in type parameter
    		// lists but not in array type declarations.
    		// Accept for better error handling but complain.
    		p.syntaxError("unexpected comma; expected ]")
    		p.next()
    	}
    	p.want(_Rbrack)
    	t := new(ArrayType)
    	t.pos = pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	// FORWARD policy is not accept.
    	proxier.filterRules.Write(
    		"-A", string(kubeForwardChain),
    		"-m", "comment", "--comment", `"kubernetes forwarding rules"`,
    		"-m", "mark", "--mark", fmt.Sprintf("%s/%s", proxier.masqueradeMark, proxier.masqueradeMark),
    		"-j", "ACCEPT",
    	)
    
    	// The following rule ensures the traffic after the initial packet accepted
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Futures.java

       * new stack trace matches that of the current thread.
       *
       * <p>Instances of {@code exceptionClass} are created by choosing an arbitrary public constructor
       * that accepts zero or more arguments, all of type {@code String} or {@code Throwable}
       * (preferring constructors with at least one {@code String}, then preferring constructors with at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    			p.next()
    		} else if p.tok != token.RBRACK {
    			len = p.parseRhs()
    		}
    		p.exprLev--
    	}
    	if p.tok == token.COMMA {
    		// Trailing commas are accepted in type parameter
    		// lists but not in array type declarations.
    		// Accept for better error handling but complain.
    		p.error(p.pos, "unexpected comma; expecting ]")
    		p.next()
    	}
    	p.expect(token.RBRACK)
    	elt := p.parseType()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

       * new stack trace matches that of the current thread.
       *
       * <p>Instances of {@code exceptionClass} are created by choosing an arbitrary public constructor
       * that accepts zero or more arguments, all of type {@code String} or {@code Throwable}
       * (preferring constructors with at least one {@code String}, then preferring constructors with at
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top