Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 293 for vlogf (0.06 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.cc

      for (const std::string& node_name : control_ret_node_names) {
        if (absl::StrContains(node_name, contains)) {
          VLOG(1) << "Node found: " << node_name << ", contains: " << contains;
          return node_name;
        }
      }
      VLOG(1) << "Could not find node whose name conatins: " << contains;
      return "";
    }
    
    // Returns the file prefix tensor name. An empty string is returned if no such a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/prober_manager_test.go

    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    		if err := wait.Poll(interval, wait.ForeverTestTimeout, condition); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    // Wait for the given workers to exit & clean up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/cmds.go

    					beforeArgs = " "
    				}
    				s.Logf("[background] %s%s%s\n", bg.name, beforeArgs, quoteArgs(bg.args))
    
    				if stdout != "" {
    					s.Logf("[stdout]\n%s", stdout)
    					stdouts = append(stdouts, stdout)
    				}
    				if stderr != "" {
    					s.Logf("[stderr]\n%s", stderr)
    					stderrs = append(stderrs, stderr)
    				}
    				if err != nil {
    					s.Logf("[%v]\n", err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/net/dial_test.go

    				// has been observed to fail with EADDRINUSE when dialing from an IPv6
    				// local address to an IPv4 remote address.
    				t.Logf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
    				t.Logf("(spurious EADDRINUSE ignored on freebsd: see https://golang.org/issue/34264)")
    			} else {
    				t.Errorf("%s %v->%s: got %v; want %v", tt.network, tt.laddr, tt.raddr, err, tt.error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    			thisMatches := matchesPolicyRule(digest, rule)
    			if toMatch {
    				if testDebugLogs {
    					t.Logf("Added matching digest %#+v", digest)
    				}
    				if !thisMatches {
    					t.Errorf("Fail in check: rule %s does not match digest %#+v", fcfmt.Fmt(rule), digest)
    				}
    			} else {
    				if testDebugLogs {
    					t.Logf("Added skipping digest %#+v", digest)
    				}
    				if thisMatches {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p", pkgpath, "-D", "testdata", "-importcfg", importcfgfile, "-o", outname, filename)
    	cmd.Dir = dirname
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("go tool compile %s failed: %s", filename, err)
    	}
    	return outname
    }
    
    func testPath(t *testing.T, path, srcDir string) *types.Package {
    	t0 := time.Now()
    	fset := token.NewFileSet()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    			checkFTR(t, ftr)
    		})
    	}
    }
    
    func checkFTR(t *testing.T, ftr *fsTestingRecord) {
    	for expectMatch, digests1 := range ftr.digests {
    		if testDebugLogs {
    			t.Logf("%s.digests[%v] = %#+v", ftr.fs.Name, expectMatch, digests1)
    		}
    		for _, digests2 := range digests1 {
    			for _, digest := range digests2 {
    				actualMatch := matchesFlowSchema(digest, ftr.fs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    // Any remaining unflushed data is logged during Cleanup.
    type testWriter struct {
    	t testing.TB
    
    	mu  sync.Mutex
    	buf bytes.Buffer
    }
    
    func newTestWriter(t testing.TB) *testWriter {
    	w := &testWriter{t: t}
    
    	t.Cleanup(func() {
    		w.mu.Lock()
    		defer w.mu.Unlock()
    		if b := w.buf.Bytes(); len(b) > 0 {
    			w.t.Logf("%s", b)
    			w.buf.Reset()
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    		i++
    
    		if result.err != nil {
    			t.Logf("Still waiting for the server to start - err: %v", err)
    			return false, nil
    		}
    		if result.response.StatusCode != http.StatusOK {
    			t.Logf("Still waiting for the server to start - expecting: %d, but got: %v", http.StatusOK, result.response)
    			return false, nil
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    			}
    			disableCallsWgMutex.Lock()
    			waitForCalls := *disableCallsWg
    			disableCallsWgMutex.Unlock()
    			if waitForCalls {
    				callsWg.Done()
    			}
    			t.Logf("About to blockWg.Wait(), requestURI=%v, remoteAddr=%v", r.RequestURI, r.RemoteAddr)
    			blockWg.Wait()
    			t.Logf("Returned from blockWg.Wait(), requestURI=%v, remoteAddr=%v", r.RequestURI, r.RemoteAddr)
    		}),
    		nonMutating,
    		mutating,
    		longRunningRequestCheck,
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top