Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for testAPI (0.36 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    Starting with Gradle version 2.13, the plugin provides a direct integration with TestKit.
    When applied to a project, the plugin automatically adds the `gradleTestKit()` dependency to the `testApi` configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/test.go

    		t.Errorf("got %d, want %d", got, want)
    	}
    
    	C.F18298(nil)
    	var v18298 C.T18298_2
    	C.G18298(C.T18298_1(v18298))
    }
    
    // issue 17723
    
    func testAPI() {
    	var cs *C.char
    	cs = C.CString("hello")
    	defer C.free(unsafe.Pointer(cs))
    	var s string
    	s = C.GoString((*C.char)(C.api_hello))
    	s = C.GoStringN((*C.char)(C.api_hello), C.int(6))
    	var b []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * MountPath should be absolute ([#48815](https://github.com/kubernetes/kubernetes/pull/48815), [@dixudx](https://github.com/dixudx))
    * Updated comments of func in testapi. ([#48407](https://github.com/kubernetes/kubernetes/pull/48407), [@k82cn](https://github.com/k82cn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top