Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 56 for 00101011 (0.12 sec)

  1. src/runtime/utf8.go

    const (
    	t1 = 0x00 // 0000 0000
    	tx = 0x80 // 1000 0000
    	t2 = 0xC0 // 1100 0000
    	t3 = 0xE0 // 1110 0000
    	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
    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/gofmt/testdata/composites.golden

    }
    
    // from exp/4s/data.go
    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},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"UMLSL, UMLSL2 (by element)","Bits":"0|1|1|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":"UMLSL2 <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)
  4. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-in.yaml

            notPaths: ["/not-exact"]
        when:
          - key: "request.headers[X-header]"
            values: ["header"]
            notValues: ["not-header"]
          - key: "source.ip"
            values: ["10.10.10.10"]
            notValues: ["90.10.10.10"]
          - key: "remote.ip"
            values: ["192.168.3.3"]
            notValues: ["172.19.31.3"]
          - key: "source.namespace"
            values: ["ns", "*ns-suffix", "ns-prefix*", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 12 19:47:37 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

                - orRules:
                    rules:
                    - destinationIp:
                        addressPrefix: 10.10.10.10
                        prefixLen: 32
                - notRule:
                    orRules:
                      rules:
                      - destinationIp:
                          addressPrefix: 90.10.10.10
                          prefixLen: 32
                - orRules:
                    rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                        addressPrefix: 10.10.10.10
                        prefixLen: 32
                    - destinationIp:
                        addressPrefix: 192.168.10.0
                        prefixLen: 24
                - notRule:
                    orRules:
                      rules:
                      - destinationIp:
                          addressPrefix: 90.10.10.10
                          prefixLen: 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  7. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                        addressPrefix: 10.10.10.10
                        prefixLen: 32
                    - destinationIp:
                        addressPrefix: 192.168.10.0
                        prefixLen: 24
                - notRule:
                    orRules:
                      rules:
                      - destinationIp:
                          addressPrefix: 90.10.10.10
                          prefixLen: 32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. src/runtime/internal/sys/intrinsics.go

    		n += 16
    	}
    	if x >= 1<<8 {
    		x >>= 8
    		n += 8
    	}
    	return n + int(len8tab[x])
    }
    
    // --- OnesCount ---
    
    const m0 = 0x5555555555555555 // 01010101 ...
    const m1 = 0x3333333333333333 // 00110011 ...
    const m2 = 0x0f0f0f0f0f0f0f0f // 00001111 ...
    
    // OnesCount64 returns the number of one bits ("population count") in x.
    func OnesCount64(x uint64) int {
    	// Implementation: Parallel summing of adjacent bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:45 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/testdata/vmconfig/ipv4/hosts.golden

    10.10.10.11 istiod-rev-1.istio-system.svc...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 41 bytes
    - Viewed (0)
  10. pilot/pkg/security/authz/builder/testdata/tcp/audit-both-http-tcp-in.yaml

            notPaths: ["/not-exact"]
        when:
          - key: "request.headers[X-header]"
            values: ["header"]
            notValues: ["not-header"]
          - key: "source.ip"
            values: ["10.10.10.10"]
            notValues: ["90.10.10.10"]
          - key: "remote.ip"
            values: ["192.168.7.7"]
            notValues: ["192.168.10.9"]
          - key: "source.namespace"
            values: ["ns"]
            notValues: ["not-ns"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 01 19:25:01 UTC 2021
    - 2.1K bytes
    - Viewed (0)
Back to top