Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ptrtest (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // -------------------------------
    // pointer validity test
    // good pointer returns 0
    // bad pointer returns 1
    //
    //go:nosplit
    func ptrtest(uintptr) uint64
    
    // Load memory at ptr location with error handling if the location is invalid
    //
    //go:noescape
    func safeload(ptr uintptr) (value uintptr, error uintptr)
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		func TestTest(t *testing.T) {
    		}`
    	tg.tempFile("src/p1/p1_test.go", strings.Replace(testSrc, "package_test", "p1_test", 1))
    	tg.tempFile("src/p2/p2_test.go", strings.Replace(testSrc, "package_test", "p2_test", 1))
    	tg.tempFile("src/p3/p3_test.go", strings.Replace(testSrc, "package_test", "p3_test", 1))
    	tg.tempFile("src/p4/p4_test.go", strings.Replace(testSrc, "package_test", "p4_test", 1))
    	tg.setenv("GOPATH", tg.path("."))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/encoding/xml/marshal_test.go

    	// Test attributes
    	{
    		Value: &AttrTest{
    			Int:   8,
    			Named: 9,
    			Float: 23.5,
    			Uint8: 255,
    			Bool:  true,
    			Str:   "str",
    			Bytes: []byte("byt"),
    		},
    		ExpectXML: `<AttrTest Int="8" int="9" Float="23.5" Uint8="255"` +
    			` Bool="true" Str="str" Bytes="byt"></AttrTest>`,
    	},
    	{
    		Value: &AttrTest{Bytes: []byte{}},
    		ExpectXML: `<AttrTest Int="0" int="0" Float="0" Uint8="0"` +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    }
    
    // pkgTest locates the test of pkg, creating it if needed, and updates its state
    // to reflect the given flags.
    //
    // pkgTest requires that the imports of pkg have already been loaded (flagged
    // with pkgImportsLoaded).
    func (ld *loader) pkgTest(ctx context.Context, pkg *loadPkg, testFlags loadPkgFlags) *loadPkg {
    	if pkg.isTest() {
    		panic("pkgTest called on a test package")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // Values(T v1, T v2, ..., T vN)
    //   - returns a generator producing sequences with elements v1, v2, ..., vN.
    //
    // For example, this instantiates tests from test case BarTest each
    // with values "one", "two", and "three":
    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // Values(T v1, T v2, ..., T vN)
    //   - returns a generator producing sequences with elements v1, v2, ..., vN.
    //
    // For example, this instantiates tests from test case BarTest each
    // with values "one", "two", and "three":
    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
Back to top