Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for ccArgs (0.09 sec)

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

    	out := "_go_.o"
    	ofile = objdir + out
    	gcargs := []string{"-g"}
    	gcargs = append(gcargs, b.gccArchArgs()...)
    	gcargs = append(gcargs, "-fdebug-prefix-map="+b.WorkDir+"=/tmp/go-build")
    	gcargs = append(gcargs, "-gno-record-gcc-switches")
    	if pkgpath := gccgoPkgpath(p); pkgpath != "" {
    		gcargs = append(gcargs, "-fgo-pkgpath="+pkgpath)
    	}
    	if p.Internal.LocalPrefix != "" {
    		gcargs = append(gcargs, "-fgo-relative-import-path="+p.Internal.LocalPrefix)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. tests/integration/pilot/revisions/revision_tag_test.go

    				})
    			}
    		})
    }
    
    func verifyRevision(t framework.TestContext, i istioctl.Instance, podName, podNamespace, revision string) {
    	t.Helper()
    	pcArgs := []string{"pc", "bootstrap", podName, "-n", podNamespace}
    	bootstrapConfig, _ := i.InvokeOrFail(t, pcArgs)
    	expected := fmt.Sprintf("\"discoveryAddress\": \"istiod-%s.istio-system.svc:15012\"", revision)
    	if !strings.Contains(bootstrapConfig, expected) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    {{ end }}
    {{ with .PortMatch }}
        match:
        - port: {{.}}
    {{ end }}
    `, args)
    	default:
    		panic(variant + " unknown")
    	}
    }
    
    type scArgs struct {
    	Namespace string
    	Egress    []string
    }
    
    func (args scArgs) Config(t *testing.T, variant string) string {
    	return tmpl.MustEvaluate(`apiVersion: networking.istio.io/v1alpha3
    kind: Sidecar
    metadata:
      name: "{{.Namespace}}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/cmd/cover/cfg_test.go

    		t.Fatalf("meta-data file not created: %v", err)
    	} else {
    		inf.Close()
    	}
    
    	// Make sure it is digestible.
    	cdargs := []string{"tool", "covdata", "percent", "-i", mdir}
    	cmd := testenv.Command(t, testenv.GoToolPath(t), cdargs...)
    	run(cmd, t)
    }
    
    func testCoverNoTestsNoFuncs(t *testing.T) {
    	t.Parallel()
    	dir := tempDir(t)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			// Write closure (arg to newproc/deferproc).
    			ACArgs = append(ACArgs, types.Types[types.TUINTPTR]) // not argExtra
    			callArgs = append(callArgs, closure)
    			stksize += int64(types.PtrSize)
    			argStart += int64(types.PtrSize)
    			if dextra != nil {
    				// Extra token of type any for deferproc
    				ACArgs = append(ACArgs, types.Types[types.TINTER])
    				callArgs = append(callArgs, dextra)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    	}
    
    	// Emit the live pointer map data structures
    	ls := curfn.LSym
    	fninfo := ls.Func()
    	fninfo.GCArgs, fninfo.GCLocals = lv.emit()
    
    	p := pp.Prog(obj.AFUNCDATA)
    	p.From.SetConst(rtabi.FUNCDATA_ArgsPointerMaps)
    	p.To.Type = obj.TYPE_MEM
    	p.To.Name = obj.NAME_EXTERN
    	p.To.Sym = fninfo.GCArgs
    
    	p = pp.Prog(obj.AFUNCDATA)
    	p.From.SetConst(rtabi.FUNCDATA_LocalsPointerMaps)
    	p.To.Type = obj.TYPE_MEM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/objfile.go

    // TODO: instead of duplicating them, have the compiler decide where symbols go.
    func contentHashSection(s *LSym) byte {
    	name := s.Name
    	if s.IsPcdata() {
    		return 'P'
    	}
    	if strings.HasPrefix(name, "gcargs.") ||
    		strings.HasPrefix(name, "gclocals.") ||
    		strings.HasPrefix(name, "gclocals·") ||
    		strings.HasSuffix(name, ".opendefer") ||
    		strings.HasSuffix(name, ".arginfo0") ||
    		strings.HasSuffix(name, ".arginfo1") ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/link.go

    	Pcln      Pcln
    	InlMarks  []InlMark
    	spills    []RegSpill
    
    	dwarfInfoSym       *LSym
    	dwarfLocSym        *LSym
    	dwarfRangesSym     *LSym
    	dwarfAbsFnSym      *LSym
    	dwarfDebugLinesSym *LSym
    
    	GCArgs             *LSym
    	GCLocals           *LSym
    	StackObjects       *LSym
    	OpenCodedDeferInfo *LSym
    	ArgInfo            *LSym // argument info for traceback
    	ArgLiveInfo        *LSym // argument liveness info for traceback
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	p := a.Package
    	sh := b.Shell(a)
    	if pcargs := p.CgoPkgConfig; len(pcargs) > 0 {
    		// pkg-config permits arguments to appear anywhere in
    		// the command line. Move them all to the front, before --.
    		var pcflags []string
    		var pkgs []string
    		for _, pcarg := range pcargs {
    			if pcarg == "--" {
    				// We're going to add our own "--" argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top