Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 293 for vlogf (0.07 sec)

  1. src/cmd/asm/internal/asm/endtoend_test.go

    	testEndToEnd(t, "386", "386")
    }
    
    func TestARMEndToEnd(t *testing.T) {
    	defer func(old int) { buildcfg.GOARM.Version = old }(buildcfg.GOARM.Version)
    	for _, goarm := range []int{5, 6, 7} {
    		t.Logf("GOARM=%d", goarm)
    		buildcfg.GOARM.Version = goarm
    		testEndToEnd(t, "arm", "arm")
    		if goarm == 6 {
    			testEndToEnd(t, "arm", "armv6")
    		}
    	}
    }
    
    func TestGoBuildErrors(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz.txt

    package skipped_fuzz_fn_fuzz
    
    import "testing"
    
    func Fuzz(f *testing.F) {
        f.Add([]byte("aa"))
        f.Fuzz(func(t *testing.T, b []byte) {
            t.Logf("t.Skipped is %t\n", t.Skipped())
            t.Logf("f.Skipped is %t\n", f.Skipped())
        })
    }
    
    -- goexit_fuzz_fn_fuzz_test.go --
    package goexit_fuzz_fn_fuzz
    
    import "testing"
    
    func Fuzz(f *testing.F) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. src/cmd/go/script_test.go

    			}
    			telemetryDir := initScriptDirs(t, s)
    			if err := s.ExtractFiles(a); err != nil {
    				t.Fatal(err)
    			}
    
    			t.Log(time.Now().UTC().Format(time.RFC3339))
    			work, _ := s.LookupEnv("WORK")
    			t.Logf("$WORK=%s", work)
    
    			// With -testsum, if a go.mod file is present in the test's initial
    			// working directory, run 'go mod tidy'.
    			if *testSum != "" {
    				if updateSum(t, engine, s, a) {
    					defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. src/path/filepath/path_test.go

    					return err
    				}
    				t.Logf("%#q: %v", path, info.Mode())
    				walked = append(walked, filepath.Clean(path))
    				return nil
    			})
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			if !reflect.DeepEqual(walked, tt.want) {
    				t.Logf("Walk(%#q) visited %#q; want %#q", tt.root, walked, tt.want)
    				if slices.Contains(tt.buggyGOOS, runtime.GOOS) {
    					t.Logf("(ignoring known bug on %v)", runtime.GOOS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    //   - f has a non-nil regAlloc field
    func Compile(f *Func) {
    	// TODO: debugging - set flags to control verbosity of compiler,
    	// which phases to dump IR before/after, etc.
    	if f.Log() {
    		f.Logf("compiling %s\n", f.Name)
    	}
    
    	var rnd *rand.Rand
    	if checkEnabled {
    		seed := int64(crc32.ChecksumIEEE(([]byte)(f.Name))) ^ int64(checkRandSeed)
    		rnd = rand.New(rand.NewSource(seed))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/net/http/httputil/reverseproxy.go

    	"Transfer-Encoding",
    	"Upgrade",
    }
    
    func (p *ReverseProxy) defaultErrorHandler(rw http.ResponseWriter, req *http.Request, err error) {
    	p.logf("http: proxy error: %v", err)
    	rw.WriteHeader(http.StatusBadGateway)
    }
    
    func (p *ReverseProxy) getErrorHandler() func(http.ResponseWriter, *http.Request, error) {
    	if p.ErrorHandler != nil {
    		return p.ErrorHandler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/config.go

    	t.Float64Ptr = types.NewPtr(types.Types[types.TFLOAT64])
    	t.BytePtrPtr = types.NewPtr(types.NewPtr(types.Types[types.TUINT8]))
    }
    
    type Logger interface {
    	// Logf logs a message from the compiler.
    	Logf(string, ...interface{})
    
    	// Log reports whether logging is not a no-op
    	// some logging calls account for more than a few heap allocations.
    	Log() bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. pkg/kubelet/logs/container_log_manager_test.go

    			max:    3,
    			expect: []string{"test-log-4"},
    		},
    		"MaxFiles more than log file number": {
    			max:    6,
    			expect: []string{"test-log-1", "test-log-2", "test-log-3", "test-log-4"},
    		},
    	} {
    		t.Logf("TestCase %q", desc)
    		dir, err := os.MkdirTemp("", "test-remove-excess-log")
    		require.NoError(t, err)
    		defer os.RemoveAll(dir)
    
    		testLogs := []string{"test-log-3", "test-log-1", "test-log-2", "test-log-4"}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. src/runtime/runtime_test.go

    	// addresses that have had C or kernel pages mapped there
    	// readable by user code. So just log the content.
    	// If no addresses fault, we'll fail the test.
    	v := *(*byte)(unsafe.Pointer(addr))
    	t.Logf("addr %#x: %#x\n", addr, v)
    }
    
    func eqstring_generic(s1, s2 string) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	// optimization in assembly versions:
    	// if s1.str == s2.str { return true }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_test.go

    		}
    		for {
    			select {
    			case <-tooSlow.C:
    				t.Logf("localPipe: timeout waiting for %v", c1.LocalAddr())
    				c1.Close()
    				continue Dialing
    
    			case c2 := <-localListener.ch:
    				if c2.RemoteAddr().String() == c1.LocalAddr().String() {
    					t.Cleanup(func() { c1.Close() })
    					t.Cleanup(func() { c2.Close() })
    					return c1, c2
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top