Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for progx (0.05 sec)

  1. src/cmd/go/internal/work/exec.go

    		}
    		pgoProfile = a1.built
    	}
    
    	if p.Internal.BuildInfo != nil && cfg.ModulesEnabled {
    		prog := modload.ModInfoProg(p.Internal.BuildInfo.String(), cfg.BuildToolchainName == "gccgo")
    		if len(prog) > 0 {
    			if err := sh.writeFile(objdir+"_gomod_.go", prog); err != nil {
    				return err
    			}
    			gofiles = append(gofiles, objdir+"_gomod_.go")
    		}
    	}
    
    	// Compile Go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  2. src/os/os_windows_test.go

    	}
    	t.Parallel()
    
    	tmpdir := t.TempDir()
    
    	const prog = `
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func main() {
    	fmt.Printf("%q", os.Args)
    }
    `
    	src := filepath.Join(tmpdir, "main.go")
    	if err := os.WriteFile(src, []byte(prog), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	exe := filepath.Join(tmpdir, "main.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/s390x/asmz.go

    	case ABVS:
    		return Unordered
    	}
    	c.ctxt.Diag("unknown conditional branch %v", p.As)
    	return Always
    }
    
    func regtmp(p *obj.Prog) uint32 {
    	p.Mark |= USETMP
    	return REGTMP
    }
    
    func (c *ctxtz) asmout(p *obj.Prog, asm *[]byte) {
    	o := c.oplook(p)
    
    	if o == nil {
    		return
    	}
    
    	// If REGTMP is used in generated code, we need to set USETMP on p.Mark.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/ppc64/asm9.go

    		if a.Sym != nil && c.ctxt.Flag_dynlink && !pfxEnabled {
    			return C_BRAPIC
    		}
    		return C_BRA
    	}
    
    	return C_GOK
    }
    
    func prasm(p *obj.Prog) {
    	fmt.Printf("%v\n", p)
    }
    
    func (c *ctxt9) oplook(p *obj.Prog) *Optab {
    	a1 := int(p.Optab)
    	if a1 != 0 {
    		return &optab[a1-1]
    	}
    	a1 = int(p.From.Class)
    	if a1 == 0 {
    		a1 = c.aclass(&p.From) + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"OpStar", Const, 0},
    		{"OpWordBoundary", Const, 0},
    		{"POSIX", Const, 0},
    		{"Parse", Func, 0},
    		{"Perl", Const, 0},
    		{"PerlX", Const, 0},
    		{"Prog", Type, 0},
    		{"Prog.Inst", Field, 0},
    		{"Prog.NumCap", Field, 0},
    		{"Prog.Start", Field, 0},
    		{"Regexp", Type, 0},
    		{"Regexp.Cap", Field, 0},
    		{"Regexp.Flags", Field, 0},
    		{"Regexp.Max", Field, 0},
    		{"Regexp.Min", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    	b.toolIDCache[key+".exe"] = exe
    	b.id.Unlock()
    
    	return id, exe, nil
    }
    
    // Check if assembler used by gccgo is GNU as.
    func assemblerIsGas() bool {
    	cmd := exec.Command(BuildToolchain.compiler(), "-print-prog-name=as")
    	assembler, err := cmd.Output()
    	if err == nil {
    		cmd := exec.Command(strings.TrimSpace(string(assembler)), "--version")
    		out, err := cmd.Output()
    		return err == nil && strings.Contains(string(out), "GNU")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/runtime/mstats.go

    	inStacks        int64 // byte delta of memory reserved for stacks
    	inWorkBufs      int64 // byte delta of memory reserved for work bufs
    	inPtrScalarBits int64 // byte delta of memory reserved for unrolled GC prog bits
    
    	// Allocator stats.
    	//
    	// These are all uint64 because they're cumulative, and could quickly wrap
    	// around otherwise.
    	tinyAllocCount  uint64                  // number of tiny allocations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	hasGoroot := false
    	for _, v := range tg.env {
    		if strings.HasPrefix(v, "GOROOT=") {
    			hasGoroot = true
    			break
    		}
    	}
    	prog := tg.goTool()
    	if !hasGoroot {
    		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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    }
    
    func (i CompressionType) String() string   { return stringName(uint32(i), compressionStrings, false) }
    func (i CompressionType) GoString() string { return stringName(uint32(i), compressionStrings, true) }
    
    // Prog.Type
    type ProgType int
    
    const (
    	PT_NULL    ProgType = 0 /* Unused entry. */
    	PT_LOAD    ProgType = 1 /* Loadable segment. */
    	PT_DYNAMIC ProgType = 2 /* Dynamic linking information segment. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    		}
    	}
    
    	uuidUpdated := false
    	if combineDwarf {
    		// Find "dsymutils" and "strip" tools using CC --print-prog-name.
    		var cc []string
    		cc = append(cc, ctxt.extld()...)
    		cc = append(cc, hostlinkArchArgs(ctxt.Arch)...)
    		cc = append(cc, "--print-prog-name", "dsymutil")
    		out, err := exec.Command(cc[0], cc[1:]...).CombinedOutput()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top