Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for 0x0000 (2.22 sec)

  1. src/net/netip/netip_test.go

    		"fe80::1::1",
    		// IPv6 with invalid non hex/colon character.
    		"fe80:1?:1",
    		// IPv6 with truncated bytes after single colon.
    		"fe80:",
    		// IPv6 with 5 zeros in last group
    		"0:0:0:0:0:ffff:0:00000",
    		// IPv6 with 5 zeros in one group and embedded IPv4
    		"0:0:0:0:00000:ffff:127.1.2.3",
    	}
    
    	for _, s := range invalidIPs {
    		t.Run(s, func(t *testing.T) {
    			got, err := ParseAddr(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. src/fmt/fmt_test.go

    	{"%#.4f", 1 + 1.23i, "(1.0000+1.2300i)"},
    	{"%#.4e", 123 + 1i, "(1.2300e+02+1.0000e+00i)"},
    	{"%#.4x", 123 + 1i, "(0x1.ec00p+06+0x1.0000p+00i)"},
    	{"%#.4g", 123 + 1.23i, "(123.0+1.230i)"},
    	{"%#12.5g", 0 + 100000i, "(      0.0000 +1.0000e+05i)"},
    	{"%#12.5g", 1230000 - 0i, "(  1.2300e+06     +0.0000i)"},
    	{"%b", 1 + 2i, "(4503599627370496p-52+4503599627370496p-51i)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  3. src/encoding/json/decode_test.go

    	}, {
    		CaseName:    Name("ArrayOverMaxNestingDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 10000) + strings.Repeat(`]`, 10000) + `}`,
    		errMaxDepth: true,
    	}, {
    		CaseName:    Name("ArrayOverStackDepth"),
    		data:        `{"a":` + strings.Repeat(`[`, 3000000) + strings.Repeat(`]`, 3000000) + `}`,
    		errMaxDepth: true,
    	}, {
    		CaseName:    Name("ObjectUnderMaxNestingDepth"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.31.md

      --nodeport-addresses, to avoid surprising behavior.
      
      (This behavior is enabled by default with the nftables backend; you would
      need to explicitly request `--nodeport-addresses 0.0.0.0/0,::/0` there to get
      the traditional "listen on all interfaces" behavior.) ([#123105](https://github.com/kubernetes/kubernetes/pull/123105), [@danwinship](https://github.com/danwinship)) [SIG API Machinery, Network and Windows]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            when:
            addToGraphAndPopulate(task)
    
            then:
            executionPlan.tasks as List == [dep, finalized, finalizerDep1, finalizerDep2, finalizer, task]
            ordinalGroups == [0, 0, 0, 0, 0, 0]
            reachableFromEntryPoint == [true, true, false, false, false, true]
            assertTaskReady(dep)
            assertTaskReady(finalized)
            assertTasksReady(finalizerDep1, finalizerDep2, task)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // using the RFCOMM protocol.
    //
    // Server example:
    //
    //	fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)
    //	_ = unix.Bind(fd, &unix.SockaddrRFCOMM{
    //		Channel: 1,
    //		Addr:    [6]uint8{0, 0, 0, 0, 0, 0}, // BDADDR_ANY or 00:00:00:00:00:00
    //	})
    //	_ = Listen(fd, 1)
    //	nfd, sa, _ := Accept(fd)
    //	fmt.Printf("conn addr=%v fd=%d", sa.(*unix.SockaddrRFCOMM).Addr, nfd)
    //	Read(nfd, buf)
    //
    // Client example:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top