Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0x0000 (0.18 sec)

  1. src/crypto/tls/handshake_server_test.go

    	}
    }
    
    func TestSimpleError(t *testing.T) {
    	testClientHelloFailure(t, testConfig, &serverHelloDoneMsg{}, "unexpected handshake message")
    }
    
    var badProtocolVersions = []uint16{0x0000, 0x0005, 0x0100, 0x0105, 0x0200, 0x0205, VersionSSL30}
    
    func TestRejectBadProtocolVersion(t *testing.T) {
    	config := testConfig.Clone()
    	config.MinVersion = VersionSSL30
    	for _, v := range badProtocolVersions {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/time/format.go

    //	"-07:00"    ±hh:mm
    //	"-07"       ±hh
    //	"-070000"   ±hhmmss
    //	"-07:00:00" ±hh:mm:ss
    //
    // Replacing the sign in the format with a Z triggers
    // the ISO 8601 behavior of printing Z instead of an
    // offset for the UTC zone. Thus:
    //
    //	"Z0700"      Z or ±hhmm
    //	"Z07:00"     Z or ±hh:mm
    //	"Z07"        Z or ±hh
    //	"Z070000"    Z or ±hhmmss
    //	"Z07:00:00"  Z or ±hh:mm:ss
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    const (
    	SE_OWNER_DEFAULTED       = 0x0001
    	SE_GROUP_DEFAULTED       = 0x0002
    	SE_DACL_PRESENT          = 0x0004
    	SE_DACL_DEFAULTED        = 0x0008
    	SE_SACL_PRESENT          = 0x0010
    	SE_SACL_DEFAULTED        = 0x0020
    	SE_DACL_AUTO_INHERIT_REQ = 0x0100
    	SE_SACL_AUTO_INHERIT_REQ = 0x0200
    	SE_DACL_AUTO_INHERITED   = 0x0400
    	SE_SACL_AUTO_INHERITED   = 0x0800
    	SE_DACL_PROTECTED        = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/SetsTest.java

            .containsExactly(exp1, exp2, exp3, exp4)
            .inOrder();
      }
    
      public void testCartesianProductTooBig() {
        Set<Integer> set = ContiguousSet.create(Range.closed(0, 10000), DiscreteDomain.integers());
        try {
          Sets.cartesianProduct(set, set, set, set, set);
          fail("Expected IAE");
        } catch (IllegalArgumentException expected) {
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"0.05", decQuantity(5, -2, DecimalSI)},
    		{"0.5", decQuantity(5, -1, DecimalSI)},
    		{"0.00050k", decQuantity(5, -1, DecimalSI)},
    		{"0.00500", decQuantity(5, -3, DecimalSI)},
    		{"0.05000", decQuantity(5, -2, DecimalSI)},
    		{"0.50000", decQuantity(5, -1, DecimalSI)},
    		{"0.5e0", decQuantity(5, -1, DecimalExponent)},
    		{"0.5e-1", decQuantity(5, -2, DecimalExponent)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
Back to top