Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for gotResp (0.22 sec)

  1. internal/grid/connection_test.go

    	const testPayload = "Hello Grid World!"
    
    	gotResp := make(chan struct{})
    	go func() {
    		start := time.Now()
    		t.Log("Roundtrip: sending request")
    		resp, err := remoteConn.Request(context.Background(), handlerTest, []byte(testPayload))
    		t.Log("Roundtrip:", time.Since(start), resp, err)
    		gotResp <- struct{}{}
    	}()
    	<-gotCall
    	remote.debugMsg(debugKillInbound)
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Nov 21 01:09:35 GMT 2023
    - 6K bytes
    - Viewed (0)
  2. misc/ios/go_ios_exec.go

    	bundleID = "golang.gotest"
    
    	exitCode, err := runMain()
    	if err != nil {
    		log.Fatalf("%v\n", err)
    	}
    	os.Exit(exitCode)
    }
    
    func runMain() (int, error) {
    	var err error
    	tmpdir, err = os.MkdirTemp("", "go_ios_exec_")
    	if err != nil {
    		return 1, err
    	}
    	if !debug {
    		defer os.RemoveAll(tmpdir)
    	}
    
    	appdir := filepath.Join(tmpdir, "gotest.app")
    	os.RemoveAll(appdir)
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/cgo_test.go

    //go:build cgo
    
    package cgotest
    
    import "testing"
    
    // The actual test functions are in non-_test.go files
    // so that they can use cgo (import "C").
    // These wrappers are here for gotest to find.
    
    func Test1328(t *testing.T)                  { test1328(t) }
    func Test1560(t *testing.T)                  { test1560(t) }
    func Test1635(t *testing.T)                  { test1635(t) }
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed May 17 21:53:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  4. api/go1.10.txt

    pkg debug/elf, const R_386_TLS_DESC = 41
    pkg debug/elf, const R_386_TLS_DESC R_386
    pkg debug/elf, const R_386_TLS_DESC_CALL = 40
    pkg debug/elf, const R_386_TLS_DESC_CALL R_386
    pkg debug/elf, const R_386_TLS_GOTDESC = 39
    pkg debug/elf, const R_386_TLS_GOTDESC R_386
    pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 = 310
    pkg debug/elf, const R_AARCH64_LD64_GOTOFF_LO15 R_AARCH64
    pkg debug/elf, const R_AARCH64_LD64_GOTPAGE_LO15 = 313
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Feb 06 05:00:01 GMT 2018
    - 30.1K bytes
    - Viewed (0)
  5. cmd/endpoint-ellipses_test.go

    		t.Run("", func(t *testing.T) {
    			gotEs, err := parseEndpointSet(0, testCase.arg)
    			if err != nil && testCase.success {
    				t.Errorf("Expected success but failed instead %s", err)
    			}
    			if err == nil && !testCase.success {
    				t.Errorf("Expected failure but passed instead")
    			}
    			if !reflect.DeepEqual(testCase.es, gotEs) {
    				t.Errorf("Expected %v, got %v", testCase.es, gotEs)
    			}
    		})
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
  6. misc/wasm/wasm_exec.js

    				const len = getInt64(addr + 8);
    				return decoder.decode(new DataView(this._inst.exports.mem.buffer, saddr, len));
    			}
    
    			const timeOrigin = Date.now() - performance.now();
    			this.importObject = {
    				_gotest: {
    					add: (a, b) => a + b,
    				},
    				gojs: {
    					// Go's SP does not change as long as no Go code is running. Some operations (e.g. calls, getters and setters)
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  7. go.sum

    gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
    gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=
    gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw=
    gotest.tools/v3 v3.0.3 h1:4AuOwCGf4lLR9u3YOe2awrHygurzhO/HeQ6laiA6Sx0=
    gotest.tools/v3 v3.0.3/go.mod h1:Z7Lb0S5l+klDB31fvDQX8ss/FlKDxtlFlw3Oa8Ymbl8=
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 15:22:54 GMT 2024
    - 109.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.19.md

    - github.com/ugorji/go: [v1.1.4](https://github.com/ugorji/go/tree/v1.1.4)
    - github.com/yuin/goldmark: [v1.1.27](https://github.com/yuin/goldmark/tree/v1.1.27)
    - google.golang.org/protobuf: v1.24.0
    - gotest.tools/v3: v3.0.2
    - k8s.io/klog/v2: v2.2.0
    
    ### Changed
    - cloud.google.com/go: v0.38.0 → v0.51.0
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Wed Jan 05 05:42:32 GMT 2022
    - 489.7K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.21.md

    - golang.org/x/sys: 5cba982 → a50acf3
    - golang.org/x/time: 3af7569 → f8bda1e
    - golang.org/x/tools: c1934b7 → v0.1.0
    - gopkg.in/check.v1: 41f04d3 → 8fa4692
    - gopkg.in/yaml.v2: v2.2.8 → v2.4.0
    - gotest.tools/v3: v3.0.2 → v3.0.3
    - k8s.io/gengo: 83324d8 → b6c5ce2
    - k8s.io/klog/v2: v2.4.0 → v2.8.0
    - k8s.io/kube-openapi: d219536 → 591a79e
    - k8s.io/system-validators: v1.2.0 → v1.4.0
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  10. CHANGELOG/CHANGELOG-1.23.md

    - github.com/google/martian: [v2.1.0+incompatible](https://github.com/google/martian/tree/v2.1.0)
    - github.com/jpillora/backoff: [v1.0.0](https://github.com/jpillora/backoff/tree/v1.0.0)
    - gotest.tools: v2.2.0+incompatible
    
    
    
    # v1.23.0-rc.1
    
    
    ## Downloads for v1.23.0-rc.1
    
    ### Source Code
    
    filename | sha512 hash
    -------- | -----------
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 28 21:06:52 GMT 2023
    - 424.5K bytes
    - Viewed (0)
Back to top