Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 57 for vlogf (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	if goodSliceOfRequests(qsd.QueuelessExecutingRequests) {
    		t.Logf("Found user %s among queueless requests", username)
    		return
    	}
    	goodQueueDump := func(qd debug.QueueDump) bool {
    		return goodSliceOfRequests(qd.Requests) || goodSliceOfRequests(qd.RequestsExecuting)
    	}
    	if SliceMapReduce(goodQueueDump, or)(qsd.Queues) {
    		t.Logf("Found user %s among queued requests", username)
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

              guaranteed_const_nodes.insert(n);
            }
          });
    
      for (auto& src_arg : src_arg_pairs) {
        if (guaranteed_const_nodes.count(src_arg.first) != 0) {
          VLOG(1) << "Guaranteed const found: " << src_arg.first->DebugString();
          src_arg.second->AddAttr("_is_guaranteed_constant", true);
        }
      }
    }
    
    struct OutputInputTensorPairHasher {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    						query := buildQuery(localSrc, localDst)
    						stc.Logf("prometheus query: %#v", query)
    						err := retry.Until(func() bool {
    							stc.Logf("sending call from %q to %q", deployName(localSrc), localDst.Config().Service)
    							localSrc.CallOrFail(stc, opt)
    							reqs, err := prom.QuerySum(localSrc.Config().Cluster, query)
    							if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    	mu  sync.Mutex
    	log bytes.Buffer
    }
    
    func (j *RecordingJar) SetCookies(u *url.URL, cookies []*Cookie) {
    	j.logf("SetCookie(%q, %v)\n", u, cookies)
    }
    
    func (j *RecordingJar) Cookies(u *url.URL) []*Cookie {
    	j.logf("Cookies(%q)\n", u)
    	return nil
    }
    
    func (j *RecordingJar) logf(format string, args ...any) {
    	j.mu.Lock()
    	defer j.mu.Unlock()
    	fmt.Fprintf(&j.log, format, args...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    		},
    	}}
    	for _, testCase := range testCases {
    		t.Run(testCase.name, func(t *testing.T) {
    			errs := ValidateFlowSchema(testCase.flowSchema)
    			if !assert.ElementsMatch(t, testCase.expectedErrors, errs) {
    				t.Logf("mismatch: %v", cmp.Diff(testCase.expectedErrors, errs))
    			}
    		})
    	}
    }
    
    func TestPriorityLevelConfigurationValidation(t *testing.T) {
    	badSpec := flowcontrol.PriorityLevelConfigurationSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}
    }
    
    // tLogKey is a context WithValue key for test debugging contexts containing
    // a t.Logf func. See export_test.go's Request.WithT method.
    type tLogKey struct{}
    
    func (tr *transportRequest) logf(format string, args ...any) {
    	if logf, ok := tr.Request.Context().Value(tLogKey{}).(func(string, ...any)); ok {
    		logf(time.Now().Format(time.RFC3339Nano)+": "+format, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // depend on the value of the -test.v flag.
    func (c *common) Logf(format string, args ...any) {
    	c.checkFuzzFn("Logf")
    	c.log(fmt.Sprintf(format, args...))
    }
    
    // Error is equivalent to Log followed by Fail.
    func (c *common) Error(args ...any) {
    	c.checkFuzzFn("Error")
    	c.log(fmt.Sprintln(args...))
    	c.Fail()
    }
    
    // Errorf is equivalent to Logf followed by Fail.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	tg.run("build", "-o", obj, src)
    
    	out, err = testenv.Command(t, "upx", obj).CombinedOutput()
    	if err != nil {
    		t.Logf("executing upx\n%s\n", out)
    		t.Fatalf("upx failed with %v", err)
    	}
    
    	out, err = testenv.Command(t, obj).CombinedOutput()
    	if err != nil {
    		t.Logf("%s", out)
    		t.Fatalf("running compressed go binary failed with error %s", err)
    	}
    	if string(out) != "hello upx" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults_test.go

    		if !reflect.DeepEqual(expectedDefaults, defaults) {
    			t.Errorf("Defaults for PodTemplateSpec changed. This can cause spurious rollouts of workloads on API server upgrade.")
    			t.Logf(cmp.Diff(expectedDefaults, defaults))
    		}
    	})
    	t.Run("hostnet PodTemplateSpec with ports", func(t *testing.T) {
    		rc := &v1.ReplicationController{
    			Spec: v1.ReplicationControllerSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/os/os_test.go

    			// whenever mtime is set.
    		case "netbsd":
    			mounts, _ := ReadFile("/proc/mounts")
    			if strings.Contains(string(mounts), "noatime") {
    				t.Logf("AccessTime didn't go backwards, but see a filesystem mounted noatime; ignoring. Issue 19293.")
    			} else {
    				t.Logf("AccessTime didn't go backwards; was=%v, after=%v (Ignoring on NetBSD, assuming noatime, Issue 19293)", at, pat)
    			}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top