Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for runtime_test (0.16 sec)

  1. tensorflow/cc/experimental/libtf/tests/runtime_test.cc

      EXPECT_EQ(out_val[0], 5.0f);
    }
    
    TEST_P(RuntimeTest, CreateHostTensorIncompatibleShape) {
      Runtime runtime = RuntimeTest::GetParam()();
      EXPECT_THAT(runtime.CreateHostTensor<float>({2}, TF_FLOAT, {2.0f}),
                  StatusIs(absl::StatusCode::kInvalidArgument,
                           HasSubstr("Mismatched shape and data size")));
    }
    
    TEST_P(RuntimeTest, CreateHostTensorNonFullyDefinedShapeRaises) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 09 12:27:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/cc/experimental/libtf/tests/runtime_test.h

    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    
    typedef Runtime (*RuntimeFn)();
    
    class RuntimeTest : public ::testing::TestWithParam<RuntimeFn> {};
    
    }  // namespace runtime
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 15:05:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/pprof/runtime_test.go

    Michael Matloob <******@****.***> 1481317202 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:29:37 UTC 2017
    - 3K bytes
    - Viewed (0)
  5. pilot/pkg/util/runtime/runtime_test.go

    John Howard <******@****.***> 1658777447 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/runtime-seh_windows_test.go

    	testSehCallersEqual(t, pcs, []string{"runtime_test.sehCallers", "runtime_test.sehf4",
    		"runtime_test.sehf3", "runtime_test.TestSehUnwind"})
    }
    
    func TestSehUnwindPanic(t *testing.T) {
    	if runtime.GOARCH != "amd64" {
    		t.Skip("skipping amd64-only test")
    	}
    	want := []string{"runtime_test.sehCallers", "runtime_test.TestSehUnwindPanic.func1", "runtime.gopanic",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 16:52:06 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/runtime/internal/startlinetest/func_amd64.go

    // license that can be found in the LICENSE file.
    
    // Package startlinetest contains helpers for runtime_test.TestStartLineAsm.
    package startlinetest
    
    // Defined in func_amd64.s, this is a trivial assembly function that calls
    // runtime_test.callerStartLine.
    func AsmFunc() int
    
    // Provided by runtime_test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 22 04:34:33 UTC 2022
    - 452 bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top