Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for runtime_test (0.18 sec)

  1. src/runtime/runtime_test.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"flag"
    	"fmt"
    	"io"
    	. "runtime"
    	"runtime/debug"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    // flagQuick is set by the -quick option to skip some relatively slow tests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime_test.go

    Sascha Grunert <******@****.***> 1717050802 +0200
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime_test.go

    Patrick Ohly <******@****.***> 1700508300 +0100
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. src/runtime/traceback_system_test.go

    traceback_system_test.go:85: runtime_test.child7: 	panic("oops")
    traceback_system_test.go:68: runtime_test.child6: 	child7() // appears in stack trace
    traceback_system_test.go:59: runtime_test.child5: 	child6() // appears in stack trace
    traceback_system_test.go:53: runtime_test.child4: 	child5()
    traceback_system_test.go:49: runtime_test.child3: 	child4()
    traceback_system_test.go:45: runtime_test.child2: 	child3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. tensorflow/cc/experimental/libtf/BUILD

            ":libtf",
            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
        ],
    )
    
    cc_library(
        name = "runtime_test",
        testonly = 1,
        srcs = [
            "tests/runtime_test.cc",
        ],
        hdrs = [
            "tests/runtime_test.h",
        ],
        data = [":testdata"],
        deps = [
            ":libtf",
            "//tensorflow/c:tf_datatype",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. src/runtime/sizeof_test.go

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"reflect"
    	"runtime"
    	"testing"
    	"unsafe"
    )
    
    // Assert that the size of important structures do not change unexpectedly.
    
    func TestSizeof(t *testing.T) {
    	const _64bit = unsafe.Sizeof(uintptr(0)) == 8
    	var tests = []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 892 bytes
    - Viewed (0)
  7. src/runtime/coro_test.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"internal/testenv"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestCoroLockOSThread(t *testing.T) {
    	for _, test := range []string{
    		"CoroLockOSThreadIterLock",
    		"CoroLockOSThreadIterLockYield",
    		"CoroLockOSThreadLock",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:36:37 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/runtime/panic_test.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"strings"
    	"testing"
    )
    
    // Test that panics print out the underlying value
    // when the underlying kind is directly printable.
    // Issue: https://golang.org/issues/37531
    func TestPanicWithDirectlyPrintableCustomTypes(t *testing.T) {
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/runtime/chanbarrier_test.go

    // Copyright 2015 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"runtime"
    	"sync"
    	"testing"
    )
    
    type response struct {
    }
    
    type myError struct {
    }
    
    func (myError) Error() string { return "" }
    
    func doRequest(useSelect bool) (*response, error) {
    	type async struct {
    		resp *response
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/runtime/ehooks_test.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime_test
    
    import (
    	"internal/platform"
    	"internal/testenv"
    	"os/exec"
    	"runtime"
    	"strings"
    	"testing"
    )
    
    func TestExitHooks(t *testing.T) {
    	bmodes := []string{""}
    	if testing.Short() {
    		t.Skip("skipping due to -short")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top