Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 0640 (0.16 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    		}
    
    		ab.rexflag |= regrex[int(a.Index)]&Rxx | regrex[base]&Rxb | rex
    		if base == REG_NONE {
    			ab.Put1(byte(0<<6 | 4<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), int(a.Index), base)
    			goto putrelv
    		}
    
    		if v == 0 && rel.Siz == 0 && base != REG_BP && base != REG_R13 {
    			ab.Put1(byte(0<<6 | 4<<0 | r<<3))
    			ab.asmidx(ctxt, int(a.Scale), int(a.Index), base)
    			return
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/unicode/tables.go

    	{0x037B, 0x037D, d{130, 0, 130}},
    	{0x037F, 0x037F, d{0, 116, 0}},
    	{0x0386, 0x0386, d{0, 38, 0}},
    	{0x0388, 0x038A, d{0, 37, 0}},
    	{0x038C, 0x038C, d{0, 64, 0}},
    	{0x038E, 0x038F, d{0, 63, 0}},
    	{0x0391, 0x03A1, d{0, 32, 0}},
    	{0x03A3, 0x03AB, d{0, 32, 0}},
    	{0x03AC, 0x03AC, d{-38, 0, -38}},
    	{0x03AD, 0x03AF, d{-37, 0, -37}},
    	{0x03B1, 0x03C1, d{-32, 0, -32}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "defaultMode": {
              "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
              "format": "int32",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    	tmpdir, err := os.MkdirTemp("", "kubelet=kubelet_pods_test.go=")
    	if err != nil {
    		return "", err
    	}
    	return tmpdir, os.WriteFile(filepath.Join(tmpdir, filename), []byte(cfg), 0644)
    }
    
    func TestManagedHostsFileContent(t *testing.T) {
    	testCases := []struct {
    		hostIPs         []string
    		hostName        string
    		hostDomainName  string
    		hostAliases     []v1.HostAlias
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    binary_digits  = binary_digit { [ "_" ] binary_digit } .
    octal_digits   = octal_digit { [ "_" ] octal_digit } .
    hex_digits     = hex_digit { [ "_" ] hex_digit } .
    </pre>
    
    <pre>
    42
    4_2
    0600
    0_600
    0o600
    0O600       // second character is capital letter 'O'
    0xBadFace
    0xBad_Face
    0x_67_7a_2f_cc_40_c6
    170141183460469231731687303715884105727
    170_141183_460469_231731_687303_715884_105727
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top