Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Nibbler (0.2 sec)

  1. pkg/registry/core/service/ipallocator/ipallocator_test.go

    		},
    		{
    			name:    "IPv4 offset 0 not nibble boundary",
    			address: netip.MustParseAddr("192.168.0.11"),
    			offset:  0,
    			want:    netip.MustParseAddr("192.168.0.11"),
    		},
    		{
    			name:    "IPv4 offset 1",
    			address: netip.MustParseAddr("192.168.0.0"),
    			offset:  1,
    			want:    netip.MustParseAddr("192.168.0.1"),
    		},
    		{
    			name:    "IPv4 offset 1 not nibble boundary",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 25 13:14:46 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  2. src/net/http/cgi/host_test.go

    		Dir:  cwd,
    		Env: []string{
    			"SCRIPT_FILENAME=" + cgifile,
    			"REQUEST_URI=/foo/bar",
    			"PATH=/wibble"},
    	}
    	expectedMap := map[string]string{
    		"cwd":                 cwd,
    		"env-SCRIPT_FILENAME": cgifile,
    		"env-REQUEST_URI":     "/foo/bar",
    		"env-PATH":            "/wibble",
    	}
    	runCgiTest(t, h, "GET /test.cgi HTTP/1.0\nHost: example.com\n\n", expectedMap)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 18:29:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/unicode/utf8/utf8.go

    	locb = 0b10000000
    	hicb = 0b10111111
    
    	// These names of these constants are chosen to give nice alignment in the
    	// table below. The first nibble is an index into acceptRanges or F for
    	// special one-byte cases. The second nibble is the Rune length or the
    	// Status for the special one-byte case.
    	xx = 0xF1 // invalid: size 1
    	as = 0xF0 // ASCII: size 1
    	s1 = 0x02 // accept 0, size 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/crypto/x509/name_constraints_test.go

    		intermediates: [][]constraintsSpec{
    			{
    				{},
    			},
    		},
    		leaf: leafSpec{
    			sans: []string{
    				"uri:http://example.com/bar",
    				"uri:http://example.com:8080/",
    				"uri:https://example.com/wibble#bar",
    			},
    		},
    	},
    
    	// #51: URIs with IPs are rejected
    	{
    		roots: []constraintsSpec{
    			{
    				ok: []string{"uri:example.com"},
    			},
    		},
    		intermediates: [][]constraintsSpec{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top