Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestVendor (0.16 sec)

  1. src/cmd/go/testdata/script/vendor_test_issue14613.txt

    stderr 'imported and not used'
    
    -- $GOPATH/src/github.com/clsung/go-vendor-issue-14613/./vendor_test.go --
    package main
    
    import (
    	"testing"
    
    	"github.com/clsung/fake"
    )
    
    func TestVendor(t *testing.T) {
    	ret := fake.DoNothing()
    	expected := "Ok"
    	if expected != ret {
    		t.Errorf("fake returned %q, expected %q", ret, expected)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/stream_executor/stream_executor_test.cc

      ASSERT_EQ(description.device_vendor(), "TestVendor");
      ASSERT_EQ(description.pci_bus_id(), "TestPCIBusId");
      ASSERT_EQ(description.numa_node(), 123);
      ASSERT_EQ(description.memory_bandwidth(), 54);
    }
    
    TEST_F(StreamExecutorTest, DeviceDescriptionNumaNodeNotSet) {
      static const char* hardware_name = "TestName";
      static const char* vendor = "TestVendor";
      static const char* pci_bus_id = "TestPCIBusId";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 19:54:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top