Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,976 for argps (0.2 sec)

  1. cmd/kubeadm/app/apis/kubeadm/argument.go

    func SetArgValues(args []Arg, name, value string, nArgs int) []Arg {
    	var count int
    	var found bool
    	for i := len(args) - 1; i >= 0; i-- {
    		if args[i].Name == name {
    			found = true
    			args[i].Value = value
    			if nArgs < 1 {
    				continue
    			}
    			count++
    			if count >= nArgs {
    				return args
    			}
    		}
    	}
    	if found {
    		return args
    	}
    	args = append(args, Arg{Name: name, Value: value})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/software/security/src/main/java/org/gradle/security/internal/gnupg/GnupgSignatory.java

            final List<String> args = new ArrayList<String>();
            if (homeDir != null) {
                args.add("--homedir");
                args.add(homeDir.getAbsolutePath());
            }
            if (optionsFile != null) {
                args.add("--options");
                args.add(optionsFile.getAbsolutePath());
            }
            if (keyName != null) {
                args.add("--local-user");
                args.add(keyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. cni/pkg/util/executil.go

    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    type ExecList struct {
    	Cmd  string
    	Args []string
    }
    
    func NewExec(cmd string, args []string) *ExecList {
    	return &ExecList{
    		Cmd:  cmd,
    		Args: args,
    	}
    }
    
    func ExecuteOutput(cmd string, args ...string) (string, error) {
    	externalCommand := exec.Command(cmd, args...)
    	stdout := &bytes.Buffer{}
    	stderr := &bytes.Buffer{}
    	externalCommand.Stdout = stdout
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. src/cmd/go/main.go

    	telemetry.Inc("go/invocations")
    	telemetry.CountFlags("go/flag:", *flag.CommandLine)
    
    	args := flag.Args()
    	if len(args) < 1 {
    		base.Usage()
    	}
    
    	cfg.CmdName = args[0] // for error messages
    	if args[0] == "help" {
    		telemetry.Inc("go/subcommand:" + strings.Join(append([]string{"help"}, args[1:]...), "-"))
    		help.Help(os.Stdout, args[1:])
    		return
    	}
    
    	if cfg.GOROOT == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    //go:linkname syscall_syscall syscall.syscall
    //go:nosplit
    func syscall_syscall(fn, a1, a2, a3 uintptr) (r1, r2, err uintptr) {
    	args := struct{ fn, a1, a2, a3, r1, r2, err uintptr }{fn, a1, a2, a3, r1, r2, err}
    	entersyscall()
    	libcCall(unsafe.Pointer(abi.FuncPCABI0(syscall)), unsafe.Pointer(&args))
    	exitsyscall()
    	return args.r1, args.r2, args.err
    }
    func syscall()
    
    //go:linkname syscall_syscallX syscall.syscallX
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftLinker.java

                List<String> args = new ArrayList<String>();
    
                args.addAll(spec.getSystemArgs());
    
                if (spec instanceof SharedLibraryLinkerSpec) {
                    args.add("-emit-library");
                } else if (spec instanceof BundleLinkerSpec) {
                    args.add("-Xlinker");
                    args.add("-bundle");
                } else {
                    args.add("-emit-executable");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. istioctl/pkg/wait/wait_test.go

    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=2 --timeout=20ms virtual-service foo.default", " "),
    			wantException:    true,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    			args:             strings.Split("--generation=1 virtual-service foo.default", " "),
    			wantException:    false,
    		},
    		{
    			execClientConfig: cannedResponseMap,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleInvocationSpec.groovy

            }
    
            InvocationBuilder args(String... args) {
                this.args.addAll(Arrays.asList(args))
                this
            }
    
            InvocationBuilder jvmArgs(String... args) {
                this.jvmArguments.addAll(Arrays.asList(args))
                this
            }
    
            InvocationBuilder jvmArgs(Iterable<String> args) {
                this.jvmArguments.addAll(args)
                this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  9. cmd/config-migrate.go

    	}
    	for k, args := range cfg.Notify.NATS {
    		notify.SetNotifyNATS(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.NSQ {
    		notify.SetNotifyNSQ(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.PostgreSQL {
    		notify.SetNotifyPostgres(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Redis {
    		notify.SetNotifyRedis(newCfg, k, args)
    	}
    	for k, args := range cfg.Notify.Webhook {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewritePPC64.go

    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (AtomicStoreRel32 ptr val mem)
    	// result: (LoweredAtomicStore32 [0] ptr val mem)
    	for {
    		ptr := v_0
    		val := v_1
    		mem := v_2
    		v.reset(OpPPC64LoweredAtomicStore32)
    		v.AuxInt = int64ToAuxInt(0)
    		v.AddArg3(ptr, val, mem)
    		return true
    	}
    }
    func rewriteValuePPC64_OpAtomicStoreRel64(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 360.2K bytes
    - Viewed (0)
Back to top