Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ExtraArgs (0.18 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta4_ControlPlaneComponent_To_kubeadm_ControlPlaneComponent(in *ControlPlaneComponent, out *kubeadm.ControlPlaneComponent, s conversion.Scope) error {
    	out.ExtraArgs = *(*[]kubeadm.Arg)(unsafe.Pointer(&in.ExtraArgs))
    	out.ExtraVolumes = *(*[]kubeadm.HostPathMount)(unsafe.Pointer(&in.ExtraVolumes))
    	out.ExtraEnvs = *(*[]kubeadm.EnvVar)(unsafe.Pointer(&in.ExtraEnvs))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    	}
    }
    
    type iptablesJumpChain struct {
    	table     utiliptables.Table
    	dstChain  utiliptables.Chain
    	srcChain  utiliptables.Chain
    	comment   string
    	extraArgs []string
    }
    
    var iptablesJumpChains = []iptablesJumpChain{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier.go

    // from one of the base chains. These are set up from setupNFTables(), and some of them
    // are also referenced in syncProxyRules().
    type nftablesJumpChain struct {
    	dstChain  string
    	srcChain  string
    	extraArgs string
    }
    
    var nftablesJumpChains = []nftablesJumpChain{
    	// We can't jump to endpointsCheckChain from filter-prerouting like
    	// firewallCheckChain because reject action is only valid in chains using the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    // the errors that gcc prints. That is, this function expects
    // gcc to fail.
    func (p *Package) gccErrors(stdin []byte, extraArgs ...string) string {
    	// TODO(rsc): require failure
    	args := p.gccCmd()
    
    	// Optimization options can confuse the error messages; remove them.
    	nargs := make([]string, 0, len(args)+len(extraArgs))
    	for _, arg := range args {
    		if !strings.HasPrefix(arg, "-O") {
    			nargs = append(nargs, arg)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top