Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for vlogf (0.04 sec)

  1. src/net/dnsclient_unix_test.go

    			} else if len(opt.Options) != 0 {
    				t.Errorf("found %d Options, expected none", len(opt.Options))
    			} else {
    				got := int(q.Additionals[0].Header.Class)
    				t.Logf("EDNS packet size == %d", got)
    				if got != maxDNSPacketSize {
    					t.Errorf("EDNS packet size == %d, want %d", got, maxDNSPacketSize)
    				}
    			}
    
    			// Hand back a dummy answer to verify that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    	    If d is 0, the timeout is disabled.
    	    The default is 10 minutes (10m).
    
    	-v
    	    Verbose output: log all tests as they are run. Also print all
    	    text from Log and Logf calls even if the test succeeds.
    
    	-vet list
    	    Configure the invocation of "go vet" during "go test"
    	    to use the comma-separated list of vet checks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/riscv/obj.go

    		if p.To.Type == obj.TYPE_REG && p.To.Reg == REGSP && p.Spadj == 0 {
    			f := cursym.Func()
    			if f.FuncFlag&abi.FuncFlagSPWrite == 0 {
    				f.FuncFlag |= abi.FuncFlagSPWrite
    				if ctxt.Debugvlog || !ctxt.IsAsm {
    					ctxt.Logf("auto-SPWRITE: %s %v\n", cursym.Name, p)
    					if !ctxt.IsAsm {
    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api_test.go

    		if gotObj != wantObj {
    			// Print the scope tree of mainScope in case of error.
    			var printScopeTree func(indent string, s *Scope)
    			printScopeTree = func(indent string, s *Scope) {
    				t.Logf("%sscope %s %v-%v = %v",
    					indent,
    					ScopeComment(s),
    					s.Pos(),
    					s.End(),
    					s.Names())
    				for i := range s.NumChildren() {
    					printScopeTree(indent+"  ", s.Child(i))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  5. src/go/types/api_test.go

    		if gotObj != wantObj {
    			// Print the scope tree of mainScope in case of error.
    			var printScopeTree func(indent string, s *Scope)
    			printScopeTree = func(indent string, s *Scope) {
    				t.Logf("%sscope %s %v-%v = %v",
    					indent,
    					ScopeComment(s),
    					s.Pos(),
    					s.End(),
    					s.Names())
    				for i := range s.NumChildren() {
    					printScopeTree(indent+"  ", s.Child(i))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top