Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 219 for bargs (0.04 sec)

  1. src/cmd/compile/internal/ssa/op.go

    	for i := int64(0); i < a.NResults(); i++ {
    		tys = append(tys, a.TypeOfResult(i))
    	}
    	tys = append(tys, types.TypeMem)
    	return types.NewResults(tys)
    }
    
    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    	return int64(len(a.abiInfo.InParams()))
    }
    
    // String returns "AuxCall{<fn>}"
    func (a *AuxCall) String() string {
    	var fn string
    	if a.Fn == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. internal/config/policy/plugin/config.go

    	}
    	if err = args.Validate(); err != nil {
    		return args, err
    	}
    	return args, nil
    }
    
    // New - initializes Authorization Management Plugin.
    func New(args Args) *AuthZPlugin {
    	if args.URL == nil || args.URL.Scheme == "" && args.AuthToken == "" {
    		return nil
    	}
    	return &AuthZPlugin{
    		args:   args,
    		client: &http.Client{Transport: args.Transport},
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/process/JavaExecSpec.java

        List<String> getArgs();
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
        JavaExecSpec args(Object... args);
    
        /**
         * Adds args for the main class to be executed.
         *
         * @param args Args for the main class.
         *
         * @return this
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure.sh

      if [[ "${kube_addon_registry}" != "registry.k8s.io" ]]; then
        find "${dst_dir}" \( -name '*.yaml' -or -name '*.yaml.in' \) -print0 | \
          xargs -0 sed -ri "s@(image:\s.*)registry.k8s.io@\1${kube_addon_registry}@"
        find "${dst_dir}" \( -name '*.manifest' -or -name '*.json' \) -print0 | \
          xargs -0 sed -ri "s@(image\":\s+\")registry.k8s.io@\1${kube_addon_registry}@"
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  7. src/syscall/mksyscall.pl

    				push @args, "uintptr($name)";
    			}
    		} elsif($type eq "int64" && $_32bit ne "") {
    			if(@args % 2 && $arm) {
    				# arm abi specifies 64-bit argument uses
    				# (even, odd) pair
    				push @args, "0"
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} else {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    			}
    		} else {
    			push @args, "uintptr($name)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/gc.go

    			return "", nil, err
    		}
    		args = append(args, "-importcfg", objdir+"importcfg")
    	}
    	if embedcfg != nil {
    		if err := sh.writeFile(objdir+"embedcfg", embedcfg); err != nil {
    			return "", nil, err
    		}
    		args = append(args, "-embedcfg", objdir+"embedcfg")
    	}
    	if ofile == archive {
    		args = append(args, "-pack")
    	}
    	if asmhdr {
    		args = append(args, "-asmhdr", objdir+"go_asm.h")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. internal/event/target/amqp.go

    	if err = ch.ExchangeDeclare(target.args.Exchange, target.args.ExchangeType, target.args.Durable,
    		target.args.AutoDeleted, target.args.Internal, target.args.NoWait, nil); err != nil {
    		return err
    	}
    
    	if err = ch.Publish(target.args.Exchange, target.args.RoutingKey, target.args.Mandatory,
    		target.args.Immediate, amqp091.Publishing{
    			Headers:      headers,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. internal/event/target/redis.go

    			conn, err := redis.Dial("tcp", args.Addr.String())
    			if err != nil {
    				return nil, err
    			}
    
    			if args.Password != "" {
    				if args.User != "" {
    					if _, err = conn.Do("AUTH", args.User, args.Password); err != nil {
    						conn.Close()
    						return nil, err
    					}
    				} else {
    					if _, err = conn.Do("AUTH", args.Password); err != nil {
    						conn.Close()
    						return nil, err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
Back to top