Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 694 for vlogf (0.04 sec)

  1. src/internal/platform/zosarch_test.go

    		t.Fatal(err)
    	}
    
    	cmd = testenv.Command(t, "gofmt")
    	cmd.Stdin = bytes.NewReader(tmplOut.Bytes())
    	want, err := cmd.Output()
    	if err != nil {
    		t.Logf("stdin:\n%s", tmplOut.Bytes())
    		if ee, ok := err.(*exec.ExitError); ok && len(ee.Stderr) > 0 {
    			t.Logf("stderr:\n%s", ee.Stderr)
    		}
    		t.Fatalf("%v: %v", cmd, err)
    	}
    
    	got, err := os.ReadFile("zosarch.go")
    	if err == nil && bytes.Equal(got, want) {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. src/internal/coverage/cformat/fmt_test.go

    	if wantFuncs != gotFuncs {
    		t.Errorf("emit funcs: got:\n%s\nwant:\n%s\n", gotFuncs, wantFuncs)
    	}
    	if false {
    		t.Logf("text is %s\n", b1.String())
    		t.Logf("perc is %s\n", b2.String())
    		t.Logf("perc2 is %s\n", b3.String())
    		t.Logf("funcs is %s\n", b4.String())
    	}
    }
    
    func TestEmptyPackages(t *testing.T) {
    
    	fm := cformat.NewFormatter(coverage.CtrModeAtomic)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:57 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    			_, _, newFTRs, newCatchAlls := genFSs(t, rng, trialStep, desiredPLNames, newBadPLNames, 0)
    			for j := 0; ; {
    				if testDebugLogs {
    					t.Logf("For %s, desiredPLNames=%#+v", trialStep, desiredPLNames)
    					t.Logf("For %s, newFTRs=%#+v", trialStep, newFTRs)
    				}
    				// Check that the latest digestion did the right thing
    				nextPLNames := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. pkg/test/util/yml/cache_test.go

    }
    
    func TestCache_GetFileFor_Empty(t *testing.T) {
    	g := NewWithT(t)
    	d := t.TempDir()
    	t.Logf("Test Dir: %q", d)
    
    	c := NewCache(d)
    
    	f := c.GetFileFor(CacheKey{})
    	g.Expect(f).To(BeEmpty())
    }
    
    func TestCache_Delete(t *testing.T) {
    	g := NewWithT(t)
    	d := t.TempDir()
    	t.Logf("Test Dir: %q", d)
    
    	c := NewCache(d)
    
    	_, err := c.Apply(gateway)
    	g.Expect(err).To(BeNil())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/go/internal/vcweb/vcweb_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer resp.Body.Close()
    
    	if resp.StatusCode != 200 {
    		t.Fatal(resp.Status)
    	}
    	body, err := io.ReadAll(resp.Body)
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("%s", body)
    }
    
    func TestOverview(t *testing.T) {
    	s, err := vcweb.NewServer(os.DevNull, t.TempDir(), log.Default())
    	if err != nil {
    		t.Fatal(err)
    	}
    	srv := httptest.NewServer(s)
    	defer srv.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top