Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for vlogf (0.12 sec)

  1. pkg/kubelet/status/status_manager_test.go

    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    	t.Logf("Change mirror pod identity.")
    	m.podManager.(mutablePodManager).RemovePod(mirrorPod)
    	mirrorPod.UID = "new-mirror-pod"
    	mirrorPod.Status = v1.PodStatus{}
    	m.podManager.(mutablePodManager).AddPod(mirrorPod)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/jit/deadness_analysis.cc

      return MakeAndOrImpl(outer_ops, !is_and);
    }
    
    class DeadnessAnalysisImpl : public DeadnessAnalysis {
     public:
      explicit DeadnessAnalysisImpl(const Graph* graph)
          : graph_(*graph), vlog_(VLOG_IS_ON(2)) {}
    
      Status Populate(bool enable_optimistic);
      Status PopulateFrame(absl::Span<Node* const> topo, bool use_optimistic_mode,
                           bool* success);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    }
    
    // RegisterSet is a bitmap of registers, indexed by Register.num.
    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/runtime/pprof/pprof_test.go

    			bad := avoidSamples[i]
    			if bad != 0 {
    				t.Logf("found %d samples in avoid-function %s\n", bad, name)
    				ok = false
    			}
    		}
    
    		if len(need) == 0 {
    			return
    		}
    
    		var total uintptr
    		for i, name := range need {
    			total += have[i]
    			t.Logf("found %d samples in expected function %s\n", have[i], name)
    		}
    		if total == 0 {
    			t.Logf("no samples in expected functions")
    			ok = false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    				<-ticker.C
    				continue
    			}
    			t.Error(err)
    		}
    		if attach != nil {
    			t.Logf("attachment found on try %d, stopping wait...", i)
    			break
    		}
    	}
    	t.Logf("stopped waiting for attachment")
    
    	if attach == nil {
    		t.Logf("attachment not found for id:%v", attachID)
    	} else {
    		attach.Status = status
    		t.Logf("updating attachment %s with attach status %v", attachID, status)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    				if actualCallCount == expectedAttachCallCount {
    					return true, nil
    				}
    				t.Logf(
    					"Warning: Wrong attacher[%v].GetAttachCallCount(). Expected: <%v> Actual: <%v>. Will try next attacher.",
    					i,
    					expectedAttachCallCount,
    					actualCallCount)
    			}
    
    			t.Logf(
    				"Warning: No attachers have expected AttachCallCount. Expected: <%v>. Will retry.",
    				expectedAttachCallCount)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		)
    		func() {
    			defer close(callerRoundTripDoneCh)
    
    			t.Logf("Waiting for the request: %q to time out", rquestTimesOutPath)
    			response, err = requestGetter(rquestTimesOutPath)
    			if isClientTimeout(err) {
    				t.Fatalf("the client has unexpectedly timed out - request: %q error: %s", rquestTimesOutPath, err.Error())
    			}
    		}()
    
    		t.Logf("Waiting for the inner handler of the request: %q to complete", rquestTimesOutPath)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, peimporteddlls()...)
    	}
    
    	argv = ctxt.passLongArgsInResponseFile(argv, altLinker)
    
    	if ctxt.Debugvlog != 0 {
    		ctxt.Logf("host link:")
    		for _, v := range argv {
    			ctxt.Logf(" %q", v)
    		}
    		ctxt.Logf("\n")
    	}
    
    	cmd := exec.Command(argv[0], argv[1:]...)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. cmd/object-api-listobjects_test.go

    				// assertion following this.
    				if !testCase.versioned {
    					if len(testCase.resultL.Objects) != len(resultL.Objects) {
    						t.Logf("want: %v", objInfoNames(testCase.resultL.Objects))
    						t.Logf("got: %v", objInfoNames(resultL.Objects))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 11:07:40 UTC 2024
    - 73.1K bytes
    - Viewed (0)
Back to top