Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for anni (0.2 sec)

  1. doc/go1.17_spec.html

    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
    </p>
    
    <p>
    If the final argument is assignable to a slice type <code>[]T</code> and
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			i+1, i+1, n.C,
    		)
    	}
    	fmt.Fprintf(&b, "#line 1 \"completed\"\n"+
    		"int __cgo__1 = __cgo__2;\n")
    
    	// We need to parse the output from this gcc command, so ensure that it
    	// doesn't have any ANSI escape sequences in it. (TERM=dumb is
    	// insufficient; if the user specifies CGO_CFLAGS=-fdiagnostics-color,
    	// GCC will ignore TERM, and GCC can also be configured at compile-time
    	// to ignore TERM.)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Nov 02 16:43:23 GMT 2023
    - 97K bytes
    - Viewed (0)
  3. doc/go_spec.html

    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
    </p>
    
    <p>
    If the final argument is assignable to a slice type <code>[]T</code> and
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/avx512enc/avx512_vnni.s

    // Code generated by avx512test. DO NOT EDIT.
    
    #include "../../../../../../runtime/textflag.h"
    
    TEXT asmtest_avx512_vnni(SB), NOSPLIT, $0
    	VPDPBUSD X15, X16, K2, X6                          // 62d27d0250f7
    	VPDPBUSD X11, X16, K2, X6                          // 62d27d0250f3
    	VPDPBUSD X1, X16, K2, X6                           // 62f27d0250f1
    	VPDPBUSD -15(R14)(R15*1), X16, K2, X6              // 62927d0250b43ef1ffffff
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue May 22 14:57:15 GMT 2018
    - 27.5K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/riscv64.s

    	ADDI	$4095, X5, X6				// b71f00009b8fffff3383f201
    	ADDI	$-4097, X5, X6				// b7ffffff9b8fffff3383f201
    
    	SLTI	$55, X5, X7				// 93a37203
    	SLTIU	$55, X5, X7				// 93b37203
    
    	ANDI	$1, X5, X6				// 13f31200
    	ANDI	$1, X5					// 93f21200
    	ANDI	$2048, X5				// b71f00009b8f0f80b3f2f201
    	ORI	$1, X5, X6				// 13e31200
    	ORI	$1, X5					// 93e21200
    	ORI	$2048, X5				// b71f00009b8f0f80b3e2f201
    	XORI	$1, X5, X6				// 13c31200
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 22 04:42:21 GMT 2024
    - 16.7K bytes
    - Viewed (1)
  6. src/cmd/asm/internal/asm/endtoend_test.go

    		"avx512enc/avx512pf",
    		"avx512enc/avx512_4fmaps",
    		"avx512enc/avx512_4vnniw",
    		"avx512enc/avx512_bitalg",
    		"avx512enc/avx512_ifma",
    		"avx512enc/avx512_vbmi",
    		"avx512enc/avx512_vbmi2",
    		"avx512enc/avx512_vnni",
    		"avx512enc/avx512_vpopcntdq",
    	}
    	for _, name := range filenames {
    		testEndToEnd(t, "amd64", name)
    	}
    }
    
    func TestAMD64Errors(t *testing.T) {
    	testErrors(t, "amd64", "amd64error")
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Dec 07 18:42:59 GMT 2023
    - 11.6K bytes
    - Viewed (0)
Back to top