Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 3,593 for net (0.04 sec)

  1. src/cmd/go/testdata/script/mod_std_vendor.txt

    cd $GOROOT/src
    go list -test -f '{{range .Deps}}{{.}}{{"\n"}}{{end}}' net/http
    ! stdout ^golang.org/x/net/http2/hpack
    stdout ^vendor/golang.org/x/net/http2/hpack
    
    -- go.mod --
    module m
    
    -- x.go --
    package x
    
    -- x_test.go --
    package x
    import "testing"
    import _ "net/http"
    func Test(t *testing.T) {}
    
    -- broken/go.mod --
    module broken
    -- broken/http.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/util_test.go

    limitations under the License.
    */
    
    package net
    
    import (
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/httptest"
    	"net/url"
    	"os"
    	"sync/atomic"
    	"syscall"
    	"testing"
    	"time"
    
    	"golang.org/x/net/http2"
    
    	netutils "k8s.io/utils/net"
    )
    
    func getIPNet(cidr string) *net.IPNet {
    	_, ipnet, _ := netutils.ParseCIDRSloppy(cidr)
    	return ipnet
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 19:02:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/controller/nodeipam/ipam/range_allocator_test.go

    					},
    				},
    				Clientset: fake.NewSimpleClientset(),
    			},
    			allocatorParams: CIDRAllocatorParams{
    				ClusterCIDRs: func() []*net.IPNet {
    					_, clusterCIDR, _ := netutils.ParseCIDRSloppy("127.123.234.0/24")
    					return []*net.IPNet{clusterCIDR}
    				}(),
    				ServiceCIDR: func() *net.IPNet {
    					_, serviceCIDR, _ := netutils.ParseCIDRSloppy("127.123.234.0/26")
    					return serviceCIDR
    				}(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    go 1.17
    
    replace (
    	example.net/x v0.1.0 => ./x
    	example.net/x v0.2.0 => ./x
    	golang.org/issue/46078 v0.1.0 => ./old
    )
    
    require golang.org/issue/46078 v0.1.0
    -- go.mod.tidy --
    module golang.org/issue/46078
    
    go 1.17
    
    replace (
    	example.net/x v0.1.0 => ./x
    	example.net/x v0.2.0 => ./x
    	golang.org/issue/46078 v0.1.0 => ./old
    )
    
    require example.net/x v0.2.0
    -- issue46078/issue.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  5. src/syscall/bpf_bsd.go

    import (
    	"unsafe"
    )
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfStmt(code, k int) *BpfInsn {
    	return &BpfInsn{Code: uint16(code), K: uint32(k)}
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfJump(code, k, jt, jf int) *BpfInsn {
    	return &BpfInsn{Code: uint16(code), Jt: uint8(jt), Jf: uint8(jf), K: uint32(k)}
    }
    
    // Deprecated: Use golang.org/x/net/bpf instead.
    func BpfBuflen(fd int) (int, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    nesna.no nesodden.no nesoddtangen.no nesseby.no nesset.no net net-freaks.com net.ac net.ae net.af net.ag net.ai net.al net.am net.ar net.au net.az net.ba net.bb net.bh net.bj net.bm net.bn net.bo net.br net.bs net.bt net.bz net.ci net.cm net.cn net.co net.cu net.cw net.cy net.dm net.do net.dz net.ec net.eg net.et net.eu.org net.fj net.fm net.ge net.gg net.gl net.gn net.gp net.gr net.gt net.gu net.gy net.hk net.hn net.ht net.id net.il net.im net.in net.iq net.ir net.is net.je net.jo net.kg net.ki net.kn...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. src/net/file_wasip1_test.go

    // support this approach for UDP sockets. Instead, we test the internals that
    // make it possible for WASI host runtimes and guest programs to integrate
    // socket extensions with the net package using net.FileConn/net.FileListener.
    //
    // Note that the creation of net.Conn and net.Listener values for TCP sockets
    // has an end-to-end test in src/runtime/internal/wasitest, here we are only
    // verifying the code paths specific to UDP, and error handling for invalid use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:06:56 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. src/net/file.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package net
    
    import "os"
    
    // BUG(mikio): On JS and Windows, the FileConn, FileListener and
    // FilePacketConn functions are not implemented.
    
    type fileAddr string
    
    func (fileAddr) Network() string  { return "file+net" }
    func (f fileAddr) String() string { return string(f) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 06:14:44 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vendor_issue46867.txt

    cd subdir
    go mod vendor
    ! exists vendor/example.net/NOTICE
    exists vendor/example.net/m/NOTICE
    
    -- subdir/go.mod --
    module golang.org/issue46867
    
    go 1.17
    
    replace example.net/m v0.1.0 => ./m
    
    require example.net/m v0.1.0
    -- subdir/issue.go --
    package issue
    
    import _ "example.net/m/n"
    -- subdir/m/go.mod --
    module example.net/m
    
    go 1.17
    -- subdir/m/n/n.go --
    package n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 17:10:57 UTC 2021
    - 675 bytes
    - Viewed (0)
  10. src/net/iprawsock.go

    //
    // The packages golang.org/x/net/ipv4 and golang.org/x/net/ipv6 can be
    // used to manipulate IP-level socket options in oob.
    func (c *IPConn) ReadMsgIP(b, oob []byte) (n, oobn, flags int, addr *IPAddr, err error) {
    	if !c.ok() {
    		return 0, 0, 0, nil, syscall.EINVAL
    	}
    	n, oobn, flags, addr, err = c.readMsg(b, oob)
    	if err != nil {
    		err = &OpError{Op: "read", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top