Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for td (0.23 sec)

  1. src/cmd/trace/regions.go

    <table class="summary">
    	<tr>
    		<td>Network wait profile:</td>
    		<td> <a href="/regionio?{{$p}}">graph</a> <a href="/regionio?{{$p}}&raw=1" download="io.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Sync block profile:</td>
    		<td> <a href="/regionblock?{{$p}}">graph</a> <a href="/regionblock?{{$p}}&raw=1" download="block.profile">(download)</a></td>
    	</tr>
    	<tr>
    		<td>Syscall profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/trace/tasks.go

    			({{if .Complete}}complete{{else}}incomplete{{end}})
    		</td>
    	</tr>
    	{{range $el.Events}}
    	<tr>
    		<td class="when">{{.WhenString}}</td>
    		<td class="elapsed">{{elapsed .Elapsed}}</td>
    		<td class="goid">{{.Goroutine}}</td>
    		<td>{{.What}}</td>
    	</tr>
    	{{end}}
        {{end}}
    </body>
    </html>
    `))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/obj6_test.go

    		mark_matches := marker.FindStringSubmatch(n)
    		if mark_matches != nil {
    			mark, _ = strconv.Atoi(mark_matches[1])
    			if _, ok := td.marker_to_input[mark]; !ok {
    				t.Fatalf("unexpected marker %d", mark)
    			}
    		} else if mark != -1 {
    			td.marker_to_output[mark] = append(td.marker_to_output[mark], n)
    		}
    	}
    }
    
    func TestDynlink(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:21:30 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    )
    
    var remasterflag = flag.Bool("update-expected", false, "if true, generate updated golden results in testcases for all props tests")
    
    func TestFuncProperties(t *testing.T) {
    	td := t.TempDir()
    	// td = "/tmp/qqq"
    	// os.RemoveAll(td)
    	// os.Mkdir(td, 0777)
    	testenv.MustHaveGoBuild(t)
    
    	// NOTE: this testpoint has the unfortunate characteristic that it
    	// relies on the installed compiler, meaning that if you make
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. src/cmd/trace/goroutines.go

    <h3 id="summary">Summary</h3>
    
    <table class="summary">
    	<tr>
    		<td>Goroutine start location:</td>
    		<td><code>{{.Name}}</code></td>
    	</tr>
    	<tr>
    		<td>Count:</td>
    		<td>{{.N}}</td>
    	</tr>
    	<tr>
    		<td>Execution Time:</td>
    		<td>{{.ExecTimePercent}} of total program execution time </td>
    	</tr>
    	<tr>
    		<td>Network wait profile:</td>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. src/cmd/cover/html.go

    // and easy, avoids parsing the Go file, and gets a better answer
    // for package main. It returns the empty string if there is
    // a problem.
    func (td templateData) PackageName() string {
    	if len(td.Files) == 0 {
    		return ""
    	}
    	fileName := td.Files[0].Name
    	elems := strings.Split(fileName, "/") // Package path is always slash-separated.
    	// Return the penultimate non-empty element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 14:33:36 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  7. src/cmd/cover/pkgname_test.go

    		{"encoding/binary/foo.go", "binary"},
    		{"encoding/binary/////foo.go", "binary"},
    	}
    	var tf templateFile
    	for _, test := range tests {
    		tf.Name = test.fileName
    		td := templateData{
    			Files: []*templateFile{&tf},
    		}
    		got := td.PackageName()
    		if got != test.pkgName {
    			t.Errorf("%s: got %s want %s", test.fileName, got, test.pkgName)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 30 03:58:01 UTC 2020
    - 733 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/html.go

    	// collapsed column
    	w.Printf("<td id=\"%v-col\" class=\"collapsed\"><div>%v</div></td>", id, phase)
    
    	if class == "" {
    		w.Printf("<td id=\"%v-exp\">", id)
    	} else {
    		w.Printf("<td id=\"%v-exp\" class=\"%v\">", id, class)
    	}
    	for _, title := range titles {
    		w.WriteString("<h2>" + title + "</h2>")
    	}
    	w.WriteString(html)
    	w.WriteString("</td>\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  9. src/cmd/link/elf_test.go

    			}
    		})
    	}
    }
    
    func TestIssue51939(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    	td := t.TempDir()
    	goFile := filepath.Join(td, "issue51939.go")
    	if err := os.WriteFile(goFile, []byte(goSource), 0444); err != nil {
    		t.Fatal(err)
    	}
    	outFile := filepath.Join(td, "issue51939.exe")
    	goTool := testenv.GoToolPath(t)
    	cmd := testenv.Command(t, goTool, "build", "-o", outFile, goFile)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/anames.go

    	"ROTLW",
    	"SLBIA",
    	"SLBIE",
    	"SLBMFEE",
    	"SLBMFEV",
    	"SLBMTE",
    	"SLD",
    	"SLDCC",
    	"SRD",
    	"SRAD",
    	"SRADCC",
    	"SRDCC",
    	"EXTSWSLI",
    	"EXTSWSLICC",
    	"STDCCC",
    	"TD",
    	"SETB",
    	"DWORD",
    	"REMD",
    	"REMDU",
    	"HRFID",
    	"POPCNTD",
    	"POPCNTW",
    	"POPCNTB",
    	"CNTTZW",
    	"CNTTZWCC",
    	"CNTTZD",
    	"CNTTZDCC",
    	"COPY",
    	"PASTECC",
    	"DARN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top