Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for test_func_name (0.1 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

                                       StringRef name_loc_id) {
        if (name_loc_id.contains("@")) {
          new_unit.set_node_name(name_loc_id.split('@').first.str());
          new_unit.set_func_name(name_loc_id.split('@').second.str());
        } else {
          new_unit.set_node_name(name_loc_id.str());
        }
      };
    
      ArrayRef<Location> locations = mlir::cast<FusedLoc>(loc).getLocations();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    
    	pc, curFile, _, _ := runtime.Caller(0)
    	curFileBaseName := filepath.Base(curFile)
    	testFuncName := runtime.FuncForPC(pc).Name()
    
    	timeoutMsg := "timed out here!"
    
    	tests := []struct {
    		name        string
    		mustTimeout bool
    		wantResp    string
    	}{
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top