Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 293 for vlogf (0.22 sec)

  1. tensorflow/compiler/jit/device_compiler.h

        ExecutableType** out_executable) {
      DCHECK_NE(out_executable, nullptr);
      VLOG(2) << "DeviceCompiler::Compile " << DebugString();
    
      if (VLOG_IS_ON(2)) {
        VLOG(2) << "num_inputs=" << args.size();
        for (int i = 0, end = args.size(); i < end; i++) {
          VLOG(3) << i << ": " << args[i].HumanString();
        }
      }
      TF_ASSIGN_OR_RETURN(auto signature,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

      for (Value operand : TF::filter_resources(op->getOperands())) {
        if (resource_analysis_info.IsUnknownResource(operand)) {
          VLOG(2) << "  unknown access";
          return true;
        }
        const auto& ids = resource_analysis_info.GetResourceUniqueIds(operand);
        VLOG(2) << "  accesses following resources: " << absl::StrJoin(ids, ", ");
        resource_ids.insert(ids.begin(), ids.end());
      }
      return false;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/pcln.go

    		// add terminating varint-encoded 0, which is just 0
    		dst = append(dst, 0)
    	}
    
    	if dbg {
    		ctxt.Logf("wrote %d bytes to %p\n", len(dst), dst)
    		for _, p := range dst {
    			ctxt.Logf(" %02x", p)
    		}
    		ctxt.Logf("\n")
    	}
    
    	sym.Size = int64(len(dst))
    	sym.P = dst
    	return sym
    }
    
    // pctofileline computes either the file number (arg == 0)
    // or the line number (arg == 1) to use at p.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/covdata/tool_test.go

    	t.Helper()
    
    	if debugtrace {
    		if indir != "" {
    			t.Logf("in dir %s: ", indir)
    		}
    		t.Logf("cmd: %s %+v\n", testenv.GoToolPath(t), bargs)
    	}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), bargs...)
    	cmd.Dir = indir
    	b, err := cmd.CombinedOutput()
    	if len(b) != 0 {
    		t.Logf("## build output:\n%s", b)
    	}
    	if err != nil {
    		t.Fatalf("build error: %v", err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// (broken = runN, b.Negate = true).
    
    	b.Logf("checking target with all changes disabled")
    	runN := b.Run("n")
    
    	b.Logf("checking target with all changes enabled")
    	runY := b.Run("y")
    
    	var broken *Result
    	switch {
    	case runN.Success && !runY.Success:
    		b.Logf("target succeeds with no changes, fails with all changes")
    		b.Logf("searching for minimal set of enabled changes causing failure")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  6. pkg/api/v1/persistentvolume/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPVSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. src/net/timeout_test.go

    				// another error immediately.
    				t.Logf("closing spurious connection from Dial")
    				c.Close()
    
    				if delta <= 1 && d.Timeout <= 1 {
    					t.Fatalf("can't reduce Timeout or Deadline")
    				}
    				if delta > 1 {
    					delta /= 2
    					t.Logf("reducing Deadline delta to %v", delta)
    				}
    				if d.Timeout > 1 {
    					d.Timeout /= 2
    					t.Logf("reducing Timeout to %v", d.Timeout)
    				}
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  8. src/internal/trace/trace_test.go

    		}
    		for stack, pprofSamples := range pprofStacks {
    			t.Logf("CPU profile included %d samples at stack %q not present in execution trace", pprofSamples, stack)
    			if !overflowed {
    				t.Fail()
    			}
    		}
    
    		if t.Failed() {
    			t.Logf("execution trace CPU samples:")
    			for stack, samples := range traceStacks {
    				t.Logf("%d: %q", samples, stack)
    			}
    			t.Logf("CPU profile:\n%s", stderr)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. tests/integration/operator/switch_cr_test.go

    		metav1.ListOptions{})
    	if err == nil {
    		for _, obj := range crList.Items {
    			t.Logf("deleting CR %v", obj.GetName())
    			if err := cs.Dynamic().Resource(gvr).Namespace(IstioNamespace).Delete(context.TODO(), obj.GetName(),
    				metav1.DeleteOptions{}); err != nil {
    				t.Logf("failed to delete existing CR: %v", err)
    			}
    		}
    	} else {
    		t.Logf("failed to list existing CR: %v", err.Error())
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/testing/testing_test.go

    		}
    
    		got, ok := parseRunningTests(out)
    		if slices.Equal(got, want) {
    			break
    		}
    		if ok {
    			t.Logf("found running tests:\n%s\nwant:\n%s", strings.Join(got, "\n"), strings.Join(want, "\n"))
    		} else {
    			t.Logf("no running tests found")
    		}
    		t.Logf("retrying with longer timeout")
    		timeout *= 2
    	}
    }
    
    func TestRunningTestsInCleanup(t *testing.T) {
    	t.Parallel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top