Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 108 for runtime_test (0.17 sec)

  1. 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)
  2. src/runtime/example_test.go

    		}
    	}
    
    	b := func() { c() }
    	a := func() { b() }
    
    	a()
    	// Output:
    	// - more:true | runtime.Callers
    	// - more:true | runtime_test.ExampleFrames.func1
    	// - more:true | runtime_test.ExampleFrames.func2
    	// - more:true | runtime_test.ExampleFrames.func3
    	// - more:true | runtime_test.ExampleFrames
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 18 22:05:09 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/internal/startlinetest/func_amd64.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    #include "funcdata.h"
    #include "textflag.h"
    
    // Assembly function for runtime_test.TestStartLineAsm.
    //
    // Note that this file can't be built directly as part of runtime_test, as assembly
    // files can't declare an alternative package. Building it into runtime is
    // possible, but linkshared complicates things:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:33 UTC 2022
    - 1K bytes
    - Viewed (0)
  4. src/runtime/import_test.go

    // package, which is generally more convenient for testing runtime internals.
    // For tests that mostly touch public APIs, it's generally easier to write them
    // in the runtime_test package and export any runtime internals via
    // export_test.go.
    //
    // There are a few limitations on runtime package tests that this bridges:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/runtime/traceback_test.go

    		r := ttiSimple1()
    		check(t, r, "runtime_test.ttiSimple3(...)", "runtime_test.ttiSimple2(...)", "runtime_test.ttiSimple1()")
    	})
    
    	t.Run("sigpanic", func(t *testing.T) {
    		// Check that sigpanic from an inlined function prints correctly
    		r := ttiSigpanic1()
    		check(t, r, "runtime_test.ttiSigpanic1.func1()", "panic", "runtime_test.ttiSigpanic3(...)", "runtime_test.ttiSigpanic2(...)", "runtime_test.ttiSigpanic1()")
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/tests/runtime_test_core.cc

    #include "tensorflow/cc/experimental/libtf/runtime/core/core.h"
    #include "tensorflow/cc/experimental/libtf/tests/runtime_test.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    
    INSTANTIATE_TEST_SUITE_P(TF2CAPI, RuntimeTest,
                             ::testing::Values(core::Runtime));
    GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(RuntimeTest);
    }  // namespace runtime
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Dec 19 23:20:56 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/numcpu_freebsd_test.go

    // Copyright 2017 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 "testing"
    
    func TestFreeBSDNumCPU(t *testing.T) {
    	got := runTestProg(t, "testprog", "FreeBSDNumCPU")
    	want := "OK\n"
    	if got != want {
    		t.Fatalf("expected %q, but got:\n%s", want, got)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 22:06:24 UTC 2017
    - 381 bytes
    - Viewed (0)
  9. src/runtime/heap_test.go

    // Copyright 2023 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 (
    	"testing"
    	_ "unsafe"
    )
    
    //go:linkname heapObjectsCanMove runtime.heapObjectsCanMove
    func heapObjectsCanMove() bool
    
    func TestHeapObjectsCanMove(t *testing.T) {
    	if heapObjectsCanMove() {
    		// If this happens (or this test stops building),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 18:35:49 UTC 2023
    - 529 bytes
    - Viewed (0)
  10. src/runtime/float_test.go

    // Copyright 2021 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 (
    	"testing"
    )
    
    func TestIssue48807(t *testing.T) {
    	for _, i := range []uint64{
    		0x8234508000000001, // from issue48807
    		1<<56 + 1<<32 + 1,
    	} {
    		got := float32(i)
    		dontwant := float32(float64(i))
    		if got == dontwant {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:34:24 UTC 2021
    - 699 bytes
    - Viewed (0)
Back to top