Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for 00ab0000 (0.18 sec)

  1. tests/test_tutorial/test_extra_data_types/test_tutorial001_an.py

    client = TestClient(app)
    
    
    def test_extra_types():
        item_id = "ff97dd87-a4a5-4a12-b412-cde99f33e00e"
        data = {
            "start_datetime": "2018-12-22T14:00:00+00:00",
            "end_datetime": "2018-12-24T15:00:00+00:00",
            "repeat_at": "15:30:00",
            "process_after": 300,
        }
        expected_response = data.copy()
        expected_response.update(
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv12-IssueTicket

    00000010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000020  00 00 00 44 4f 57 4e 47  52 44 01 00 00 2f 00 00  |...DOWNGRD.../..|
    00000030  0d 00 23 00 00 ff 01 00  01 00 00 17 00 00 16 03  |..#.............|
    00000040  03 02 59 0b 00 02 55 00  02 52 00 02 4f 30 82 02  |..Y...U..R..O0..|
    00000050  4b 30 82 01 b4 a0 03 02  01 02 02 09 00 e8 f0 9d  |K0..............|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py39.py

        return client
    
    
    @needs_py39
    def test_extra_types(client: TestClient):
        item_id = "ff97dd87-a4a5-4a12-b412-cde99f33e00e"
        data = {
            "start_datetime": "2018-12-22T14:00:00+00:00",
            "end_datetime": "2018-12-24T15:00:00+00:00",
            "repeat_at": "15:30:00",
            "process_after": 300,
        }
        expected_response = data.copy()
        expected_response.update(
            {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  4. src/net/mac_test.go

    			0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01,
    		},
    		"",
    	},
    	{
    		"00-00-00-00-fe-80-00-00-00-00-00-00-02-00-5e-10-00-00-00-01",
    		HardwareAddr{
    			0x00, 0x00, 0x00, 0x00,
    			0xfe, 0x80, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    			0x02, 0x00, 0x5e, 0x10, 0x00, 0x00, 0x00, 0x01,
    		},
    		"",
    	},
    	{
    		"0000.0000.fe80.0000.0000.0000.0200.5e10.0000.0001",
    		HardwareAddr{
    			0x00, 0x00, 0x00, 0x00,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 02:36:14 UTC 2019
    - 3.3K bytes
    - Viewed (0)
  5. src/syscall/exec_solaris_test.go

    	pgid = int(r0)
    	if e1 != 0 {
    		err = e1
    	}
    	return
    }
    
    func Getpgrp() (pgrp int) {
    	r0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&libc_Getpgrp)), 0, 0, 0, 0, 0, 0, 0)
    	pgrp = int(r0)
    	return
    }
    
    func Tcgetpgrp(fd int) (pgid int32, err error) {
    	if errno := ioctlPtr(uintptr(fd), TIOCGPGRP, unsafe.Pointer(&pgid)); errno != 0 {
    		return -1, errno
    	}
    	return pgid, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 04:41:27 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    	"strings"
    	"testing"
    
    	netutils "k8s.io/utils/net"
    )
    
    const gatewayfirst = `Iface	Destination	Gateway 	Flags	RefCnt	Use	Metric	Mask		MTU	Window	IRTT                                                       
    eth3	00000000	0100FE0A	0003	0	0	1024	00000000	0	0	0                                                                   
    eth3	0000FE0A	00000000	0001	0	0	0	0080FFFF	0	0	0                                                                      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    	SSUBTYP_DWSTR   = 0x70000 // DWARF strings section
    	SSUBTYP_DWRNGES = 0x80000 // DWARF ranges section
    	SSUBTYP_DWLOC   = 0x90000 // DWARF location lists section
    	SSUBTYP_DWFRAME = 0xA0000 // DWARF frames section
    	SSUBTYP_DWMAC   = 0xB0000 // DWARF macros section
    )
    
    // Symbol Table Entry.
    type SymEnt32 struct {
    	Nname   [8]byte // Symbol name
    	Nvalue  uint32  // Symbol value
    	Nscnum  uint16  // Section number of symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. src/net/http/range_test.go

    	{"bytes=0-499", 10000, []httpRange{{0, 500}}},
    	{"bytes=500-999", 10000, []httpRange{{500, 500}}},
    	{"bytes=-500", 10000, []httpRange{{9500, 500}}},
    	{"bytes=9500-", 10000, []httpRange{{9500, 500}}},
    	{"bytes=0-0,-1", 10000, []httpRange{{0, 1}, {9999, 1}}},
    	{"bytes=500-600,601-999", 10000, []httpRange{{500, 101}, {601, 399}}},
    	{"bytes=500-700,601-999", 10000, []httpRange{{500, 201}, {601, 399}}},
    
    	// Match Apache laxity:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 25 17:52:35 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  9. cmd/handler-utils_test.go

    		domains          []string
    		expectedResource string
    	}{
    		{"/a/b/c", "test.mydomain.com", []string{"mydomain.com"}, "/test/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "[2001:0db8:85a3:0000:0000:8a2e:0370:7334]", []string{"mydomain.com"}, "/a/b/c"},
    		{"/a/b/c", "192.168.1.1:9000", []string{"mydomain.com"}, "/a/b/c"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/net/url/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Println(u.Hostname())
    	u, err = url.Parse("https://[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000")
    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Println(u.Hostname())
    	// Output:
    	// example.org
    	// 2001:0db8:85a3:0000:0000:8a2e:0370:7334
    }
    
    func ExampleURL_IsAbs() {
    	u := url.URL{Host: "example.com", Path: "foo"}
    	fmt.Println(u.IsAbs())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.2K bytes
    - Viewed (0)
Back to top