Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 260 for 1034 (0.05 sec)

  1. src/net/dnsclient_unix.go

    			// /etc/resolv.conf are recursive resolvers.
    			//
    			// We asked for recursion, so it should have included all the
    			// answers we need in this one packet.
    			//
    			// Further, RFC 1034 section 4.3.1 says that "the recursive
    			// response to a query will be... The answer to the query,
    			// possibly preface by one or more CNAME RRs that specify
    			// aliases encountered on the way to an answer."
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // - uri: an URI as parsed by Golang net/url.ParseRequestURI
      // - email: an email address as parsed by Golang net/mail.ParseAddress
      // - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
      // - ipv4: an IPv4 IP as parsed by Golang net.ParseIP
      // - ipv6: an IPv6 IP as parsed by Golang net.ParseIP
      // - cidr: a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // - uri: an URI as parsed by Golang net/url.ParseRequestURI
      // - email: an email address as parsed by Golang net/mail.ParseAddress
      // - hostname: a valid representation for an Internet host name, as defined by RFC 1034, section 3.1 [RFC1034].
      // - ipv4: an IPv4 IP as parsed by Golang net.ParseIP
      // - ipv6: an IPv6 IP as parsed by Golang net.ParseIP
      // - cidr: a CIDR as parsed by Golang net.ParseCIDR
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS_T_CLOSE                         = 0x40C // 1036
    	SYS_T_CONNECT                       = 0x40D // 1037
    	SYS_T_ERROR                         = 0x40E // 1038
    	SYS_T_FREE                          = 0x40F // 1039
    	SYS_T_GETINFO                       = 0x410 // 1040
    	SYS_T_GETPROTADDR                   = 0x411 // 1041
    	SYS_T_GETSTATE                      = 0x412 // 1042
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    	defer wg.Wait()
    
    	c1.SetReadDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Read(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/inst.go

    	case AAMOMINW:
    		return &inst{0x2f, 0x2, 0x0, -2048, 0x40}
    	case AAMOMINUD:
    		return &inst{0x2f, 0x3, 0x0, -1024, 0x60}
    	case AAMOMINUW:
    		return &inst{0x2f, 0x2, 0x0, -1024, 0x60}
    	case AAMOORD:
    		return &inst{0x2f, 0x3, 0x0, 1024, 0x20}
    	case AAMOORW:
    		return &inst{0x2f, 0x2, 0x0, 1024, 0x20}
    	case AAMOSWAPD:
    		return &inst{0x2f, 0x3, 0x0, 128, 0x4}
    	case AAMOSWAPW:
    		return &inst{0x2f, 0x2, 0x0, 128, 0x4}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    package p
    
    // This type and the following one will share the same GC shape and size.
    type Pointery struct {
    	p *Pointery
    	x [1024]int
    }
    
    type Pointery2 struct {
    	p *Pointery2
    	x [1024]int
    }
    
    // This type and the following one will have the same size.
    type Vanilla struct {
    	np uintptr
    	x  [1024]int
    }
    
    type Vanilla2 struct {
    	np uintptr
    	x  [1023]int
    	y  int
    }
    
    type Single struct {
    	np uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. src/internal/poll/writev.go

    	}
    
    	var iovecs []syscall.Iovec
    	if fd.iovecs != nil {
    		iovecs = *fd.iovecs
    	}
    	// TODO: read from sysconf(_SC_IOV_MAX)? The Linux default is
    	// 1024 and this seems conservative enough for now. Darwin's
    	// UIO_MAXIOV also seems to be 1024.
    	maxVec := 1024
    	if runtime.GOOS == "aix" || runtime.GOOS == "solaris" {
    		// IOV_MAX is set to XOPEN_IOV_MAX on AIX and Solaris.
    		maxVec = 16
    	}
    
    	var n int64
    	var err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. internal/ringbuffer/ring_buffer_benchmark_test.go

    )
    
    func BenchmarkRingBuffer_Sync(b *testing.B) {
    	rb := New(1024)
    	data := []byte(strings.Repeat("a", 512))
    	buf := make([]byte, 512)
    
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		rb.Write(data)
    		rb.Read(buf)
    	}
    }
    
    func BenchmarkRingBuffer_AsyncRead(b *testing.B) {
    	// Pretty useless benchmark, but it's here for completeness.
    	rb := New(1024)
    	data := []byte(strings.Repeat("a", 512))
    	buf := make([]byte, 512)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			name:    "Dual --node-ips",
    			nodeIPs: []net.IP{netutils.ParseIPSloppy("10.1.1.1"), netutils.ParseIPSloppy("fd01::1234")},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top