Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for logo (0.25 sec)

  1. src/cmd/dist/build.go

    		if err != nil {
    			log.Fatal(err)
    		}
    		buf := make([]byte, 100)
    		n, _ := f.Read(buf)
    		s := string(buf[:n])
    		if i := strings.Index(s, "\n"); i >= 0 {
    			s = s[:i]
    		}
    		i := strings.Index(s, " start")
    		if i < 0 {
    			log.Fatalf("time log %s does not begin with start line", os.Getenv("GOBUILDTIMELOGFILE"))
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/go_test.go

    		tg.setenv("GOROOT", testGOROOT)
    	}
    
    	tg.t.Logf("running testgo %v", args)
    	cmd := testenv.Command(tg.t, prog, args...)
    	tg.stdout.Reset()
    	tg.stderr.Reset()
    	cmd.Dir = tg.execDir
    	cmd.Stdout = &tg.stdout
    	cmd.Stderr = &tg.stderr
    	cmd.Env = tg.env
    	status := cmd.Run()
    	if tg.stdout.Len() > 0 {
    		tg.t.Log("standard output:")
    		tg.t.Log(tg.stdout.String())
    	}
    	if tg.stderr.Len() > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/debug.go

    }
    
    // RegisterSet is a bitmap of registers, indexed by Register.num.
    type RegisterSet uint64
    
    // logf prints debug-specific logging to stdout (always stdout) if the
    // current function is tagged by GOSSAFUNC (for ssa output directed
    // either to stdout or html).
    func (s *debugState) logf(msg string, args ...interface{}) {
    	if s.f.PrintOrHtmlSSA {
    		fmt.Printf(msg, args...)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  5. src/bufio/bufio_test.go

    				p := make([]byte, 50)
    				n, err := br.Read(p)
    				if err != wantErr || n != len(s) || string(p[:n]) != s {
    					t.Fatalf("read(%d) = %q, %v, want %q, %v", len(p), string(p[:n]), err, s, wantErr)
    				}
    				t.Logf("read(%d) = %q, %v", len(p), string(p[:n]), err)
    			}
    			want("abc", nil)
    			want("", nil)
    			want("def", nil)
    			want("", io.EOF)
    		})
    	}
    }
    
    func TestReaderReset(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    	}
    	for _, err := range sumErrs {
    		if err != nil {
    			base.Error(err)
    		}
    	}
    }
    
    // reportChanges logs version changes to os.Stderr.
    //
    // reportChanges only logs changes to modules named on the command line and to
    // explicitly required modules in go.mod. Most changes to indirect requirements
    // are not relevant to the user and are not logged.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	}
    	return 0
    }
    
    // logRule logs the use of the rule s. This will only be enabled if
    // rewrite rules were generated with the -log option, see _gen/rulegen.go.
    func logRule(s string) {
    	if ruleFile == nil {
    		// Open a log file to write log to. We open in append
    		// mode because all.bash runs the compiler lots of times,
    		// and we want the concatenation of all of those logs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top