Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for 00011111 (0.1 sec)

  1. src/runtime/utf8.go

    	t4 = 0xF0 // 1111 0000
    	t5 = 0xF8 // 1111 1000
    
    	maskx = 0x3F // 0011 1111
    	mask2 = 0x1F // 0001 1111
    	mask3 = 0x0F // 0000 1111
    	mask4 = 0x07 // 0000 0111
    
    	rune1Max = 1<<7 - 1
    	rune2Max = 1<<11 - 1
    	rune3Max = 1<<16 - 1
    
    	// The default lowest and highest continuation byte.
    	locb = 0x80 // 1000 0000
    	hicb = 0xBF // 1011 1111
    )
    
    // countrunes returns the number of runes in s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"SMLSL, SMLSL2 (by element)","Bits":"0|1|0|0|1|1|1|1|size:2|L|M|Rm:4|0|1|1|0|H|0|Rn:5|Rd:5","Arch":"Vector variant","Syntax":"SMLSL2 <Vd>.<Ta>, <Vn>.<Tb>, <Vm>.<Ts>[<index>]","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// and "1111" for SHAKE, or 00000010b and 00001111b, respectively. Then the
    	// padding rule from section 5.1 is applied to pad the message to a multiple
    	// of the rate, which involves adding a "1" bit, zero or more "0" bits, and
    	// a final "1" bit. We merge the first "1" bit from the padding into dsbyte,
    	// giving 00000110b (0x06) and 00011111b (0x1f).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/gofmt/testdata/composites.golden

    var pieces4 = []Piece{
    	{0, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{1, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    	{2, 0, Point{4, 1}, []Point{{0, 0}, {1, 0}, {1, 0}, {1, 0}}, nil, nil},
    	{3, 0, Point{1, 4}, []Point{{0, 0}, {0, 1}, {0, 1}, {0, 1}}, nil, nil},
    }
    
    var _ = [42]*T{
    	{},
    	{1, 2},
    	{3, 4},
    }
    
    var _ = [...]*T{
    	{},
    	{1, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  5. src/strconv/quote_test.go

    	{`"\377"`, "\377"},
    	{`"\u1234"`, "\u1234"},
    	{`"\U00010111"`, "\U00010111"},
    	{`"\U0001011111"`, "\U0001011111"},
    	{`"\a\b\f\n\r\t\v\\\""`, "\a\b\f\n\r\t\v\\\""},
    	{`"'"`, "'"},
    
    	{`'a'`, "a"},
    	{`'☹'`, "☹"},
    	{`'\a'`, "\a"},
    	{`'\x10'`, "\x10"},
    	{`'\377'`, "\377"},
    	{`'\u1234'`, "\u1234"},
    	{`'\U00010111'`, "\U00010111"},
    	{`'\t'`, "\t"},
    	{`' '`, " "},
    	{`'\''`, "'"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  6. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

                return value == 0;
            }
    
            @Override
            public int compareTo(Item item) {
                if (item == null) {
                    return (value == 0) ? 0 : 1; // 1.0 == 1, 1.1 > 1
                }
    
                switch (item.getType()) {
                    case INT_ITEM:
                        int itemValue = ((IntItem) item).value;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/JavaSystemPropertiesProxySettingsTest.groovy

            expect:
            settings("proxyHost", prop).getProxy().port == value
    
            where:
            prop     | value
            null     | 80
            ""       | 80
            "notInt" | 80
            "0"      | 0
            "111"    | 111
        }
    
        def "uses specified proxy user and password"() {
            expect:
            def proxy = new TestSystemProperties("proxyHost", null, user, password).getProxy()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    				{endpoint: "10.1.1.1:11", isLocal: false},
    			},
    		},
    		expectedResult: map[proxy.ServicePortName][]endpointExpectation{
    			makeServicePortName("ns1", "ep1", "p11-2", v1.ProtocolUDP): {
    				{endpoint: "10.1.1.1:11", isLocal: false},
    			},
    		},
    		expectedDeletedUDPEndpoints: []proxy.ServiceEndpoint{{
    			Endpoint:        "10.1.1.1:11",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. src/math/bits/example_test.go

    }
    
    func ExampleTrailingZeros8() {
    	fmt.Printf("TrailingZeros8(%08b) = %d\n", 14, bits.TrailingZeros8(14))
    	// Output:
    	// TrailingZeros8(00001110) = 1
    }
    
    func ExampleTrailingZeros16() {
    	fmt.Printf("TrailingZeros16(%016b) = %d\n", 14, bits.TrailingZeros16(14))
    	// Output:
    	// TrailingZeros16(0000000000001110) = 1
    }
    
    func ExampleTrailingZeros32() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:16:09 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/port_range_test.go

    		{"200-100", false, "", -1, -1},
    		{"60000-70000", false, "", -1, -1},
    		{"70000-80000", false, "", -1, -1},
    		{"70000+80000", false, "", -1, -1},
    		{"1+0", true, "1-1", 1, 2},
    		{"0+0", true, "0-0", 0, 1},
    		{"1+-1", false, "", -1, -1},
    		{"1-+1", false, "", -1, -1},
    		{"100+200", true, "100-300", 300, 301},
    		{"1+65535", false, "", -1, -1},
    		{"0+65535", true, "0-65535", 65535, 65536},
    	}
    
    	for i := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top