Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Nibbler (0.21 sec)

  1. 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)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    			return x, exact
    		}
    	}
    	for t = t.Parent(); t != root; t = t.Parent() {
    		// No variants specified: just compare core components.
    		// The key has the form lllssrrr, where l, s, and r are nibbles for
    		// respectively the langID, scriptID, and regionID.
    		if x, ok := getCoreIndex(t); ok {
    			return x, exact
    		}
    	}
    	return 0, exact
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.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)
  5. src/crypto/x509/x509_test.go

    			EmailAddresses: []string{"******@****.***"},
    			IPAddresses:    []net.IP{net.IPv4(127, 0, 0, 1).To4(), net.ParseIP("2001:4860:0:2001::68")},
    			URIs:           []*url.URL{parseURI("https://foo.com/wibble#foo")},
    
    			PolicyIdentifiers:       []asn1.ObjectIdentifier{[]int{1, 2, 3}},
    			Policies:                []OID{mustNewOIDFromInts(t, []uint64{1, 2, 3, math.MaxUint32, math.MaxUint64})},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    	apply := func(x uint64, c uint64) uint64 {
    		// The technique used it here is derived from
    		// https://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
    		// and extended for more than just bytes (like nibbles
    		// and uint16s) by using an appropriate constant.
    		//
    		// To summarize the technique, quoting from that page:
    		// "[It] works by first zeroing the high bits of the [8]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

      
          `kube-proxy --feature-gates NFTablesProxyMode=true --proxy-mode nftables`
      
      This is currently an alpha-level feature and while it probably will not
      eat your data, it may nibble at it a bit. (It passes e2e testing but has
      not yet seen real-world use.)
      
      At this point it should be functionally mostly identical to the iptables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top