Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ccArgs (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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