Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 347 for vlogf (0.17 sec)

  1. src/syscall/dirent_test.go

    			// On linux, 'man getdents64' says that EINVAL indicates “result buffer is too small”.
    			// Try a bigger buffer.
    			t.Logf("ReadDirent: %v; retrying with larger buffer", err)
    			buf = bytes.Repeat([]byte{0xCD}, len(buf)*2)
    			continue
    		}
    		if err != nil {
    			t.Fatalf("syscall.readdir: %v", err)
    		}
    		t.Logf("ReadDirent: read %d bytes", n)
    		if n == 0 {
    			break
    		}
    
    		var consumed, count int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/cmd/server/testing/testserver.go

    		return result, fmt.Errorf("failed to set default options: %v", err)
    	}
    	if err := s.Validate(); err != nil {
    		return result, fmt.Errorf("failed to validate options: %v", err)
    	}
    
    	t.Logf("runtime-config=%v", s.APIEnablement.RuntimeConfig)
    	t.Logf("Starting apiextensions-apiserver on port %d...", s.RecommendedOptions.SecureServing.BindPort)
    
    	config, err := s.Config()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 9K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/dwarfgen/dwinl.go

    	for i := 0; i < ilevel; i++ {
    		base.Ctxt.Logf("  ")
    	}
    	ic := inlcalls.Calls[idx]
    	callee := base.Ctxt.InlTree.InlinedFunction(ic.InlIndex)
    	base.Ctxt.Logf("  %d: II:%d (%s) V: (", idx, ic.InlIndex, callee.Name)
    	for _, f := range ic.InlVars {
    		base.Ctxt.Logf(" %v", f.Name)
    	}
    	base.Ctxt.Logf(" ) C: (")
    	for _, k := range ic.Children {
    		base.Ctxt.Logf(" %v", k)
    	}
    	base.Ctxt.Logf(" ) R:")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compilation_profiler.cc

        if (num_ongoing_compilations_ >= kMaxNumOngoingCompilations) {
          VLOG(2) << "Not asynchronously compiling cluster " << function.name()
                  << " because of too many ongoing compilations.";
          return false;
        }
      }
    
      bool reached_compile_threshold = current_request_count >= *compile_threshold;
      if (!reached_compile_threshold) {
        VLOG(2) << "Not compiling cluster " << function.name()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/runtime/crash_test.go

    		if err == nil {
    			t.Logf("try %d: program exited successfully, should have failed", i+1)
    			continue
    		}
    
    		if i > 0 {
    			t.Logf("try %d:\n", i+1)
    		}
    		t.Logf("%s\n", got)
    
    		wants := []string{
    			"panic: crash",
    			"PanicRace",
    			"created by ",
    		}
    		for _, want := range wants {
    			if !bytes.Contains(got, []byte(want)) {
    				t.Logf("did not find expected string %q", want)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. src/internal/coverage/cfile/ts_test.go

    // running "go test -cover" for this package).
    func TestTestSupport(t *testing.T) {
    	if !goexperiment.CoverageRedesign {
    		return
    	}
    	if testing.CoverMode() == "" {
    		return
    	}
    	tgcd := testGoCoverDir(t)
    	t.Logf("testing.testGoCoverDir() returns %s mode=%s\n",
    		tgcd, testing.CoverMode())
    
    	textfile := filepath.Join(t.TempDir(), "file.txt")
    	var sb strings.Builder
    	err := ProcessCoverTestDir(tgcd, textfile,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/runtime/pprof/vminfo_darwin_test.go

    		}
    		if !retryable {
    			return 0, 0, err
    		}
    		t.Logf("retrying vmmap after error: %v", err)
    	}
    }
    
    func useVMMap(t *testing.T) (hi, lo uint64, retryable bool, err error) {
    	pid := strconv.Itoa(os.Getpid())
    	testenv.MustHaveExecPath(t, "vmmap")
    	cmd := testenv.Command(t, "vmmap", pid)
    	out, cmdErr := cmd.Output()
    	if cmdErr != nil {
    		t.Logf("vmmap output: %s", out)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 19:59:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // The assumption is that if fuel started out as INT64_MAX, it will forever
        // stay greater than INT64_MAX / 2.
        VLOG(2) << "Starting fuel: infinity";
      } else {
        VLOG(2) << "Starting fuel: " << *debug_options_.fuel;
      }
    
      VLOG(2) << "sorted_nodes.size() = " << sorted_nodes.size();
    
      auto allowlist = GetOrCreateAllowlist();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        core::ScopedUnref pjrt_device_compiler_ref(pjrt_device_compiler);
        core::ScopedUnref profiler_ref(profiler);
    
        VLOG(2) << "Compiled op with PJRT: " << ctx->status();
        VLOG(2) << "result != nullptr: " << (result != nullptr);
        VLOG(2) << "pjrt_executable != nullptr: " << (pjrt_executable != nullptr);
        VLOG(2) << "Executing with PJRT ...";
    
        OP_REQUIRES_OK(ctx, RunPjRtExecutable(inputs, variables, *result,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. 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)
Back to top