Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for argList (0.17 sec)

  1. src/cmd/internal/obj/x86/avx_optabs.go

    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, YxrEvex}},
    	{zcase: Zevex_rm_k_r, zoffset: 3, args: argList{YxmEvex, Yknot0, YxrEvex}},
    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, YyrEvex}},
    	{zcase: Zevex_rm_k_r, zoffset: 3, args: argList{YxmEvex, Yknot0, YyrEvex}},
    	{zcase: Zevex_rm_v_r, zoffset: 0, args: argList{YxmEvex, Yzr}},
    	{zcase: Zevex_rm_k_r, zoffset: 3, args: argList{YxmEvex, Yknot0, Yzr}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 15:34:19 UTC 2018
    - 260.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/asm6.go

    	{Zm_ibo, 2, argList{Yml, Yi8}},
    	{Z_il, 1, argList{Yax, Yi32}},
    	{Zm_ilo, 2, argList{Yml, Yi32}},
    	{Zm_r, 1, argList{Yml, Yrl}},
    	{Zr_m, 1, argList{Yrl, Yml}},
    }
    
    var yshb = []ytab{
    	{Zo_m, 2, argList{Yi1, Ymb}},
    	{Zibo_m, 2, argList{Yu8, Ymb}},
    	{Zo_m, 2, argList{Ycx, Ymb}},
    }
    
    var yshl = []ytab{
    	{Zo_m, 2, argList{Yi1, Yml}},
    	{Zibo_m, 2, argList{Yu8, Yml}},
    	{Zo_m, 2, argList{Ycl, Yml}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/rules/ClosureBackedRuleAction.java

                copy.call();
            } else {
                Object[] argList = new Object[inputs.size() + 1];
                argList[0] = subject;
                int i = 1;
                for (Object arg : inputs) {
                    argList[i++] = arg;
                }
                copy.call(argList);
            }
        }
    
        private List<Class<?>> parseInputTypes(Closure<?> closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/job/PythonJob.java

        protected String filename;
    
        protected List<String> argList = new ArrayList<>();
    
        public PythonJob filename(final String filename) {
            this.filename = filename;
            return this;
        }
    
        public PythonJob arg(final String value) {
            argList.add(value);
            return this;
        }
    
        public PythonJob args(final String... values) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/errorcalls_test.go

    			// position, code, format string, and arguments to format
    			if n := len(call.ArgList); n < errorfMinArgCount {
    				t.Errorf("%s: got %d arguments, want at least %d", call.Pos(), n, errorfMinArgCount)
    				return false
    			}
    			format := call.ArgList[errorfFormatIndex]
    			syntax.Inspect(format, func(n syntax.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 21:57:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/ytab.go

    // Max len(obj.Prog.RestArgs) can be inferred from this to be 4.
    const argListMax int = 6
    
    type argList [argListMax]uint8
    
    type ytab struct {
    	zcase   uint8
    	zoffset uint8
    
    	// Last arg is usually destination.
    	// For unary instructions unaryDst is used to determine
    	// if single argument is a source or destination.
    	args argList
    }
    
    // Returns true if yt is compatible with args.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 06 15:40:03 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    	argList := call.Args
    
    	// append is the only built-in that permits the use of ... for the last argument
    	bin := predeclaredFuncs[id]
    	if hasDots(call) && id != _Append {
    		check.errorf(dddErrPos(call),
    			InvalidDotDotDot,
    			invalidOp+"invalid use of ... with built-in %s", bin.name)
    		check.use(argList...)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/call.go

    	if sig.variadic {
    		if ddd {
    			// variadic_func(a, b, c...)
    			if len(call.ArgList) == 1 && nargs > 1 {
    				// f()... is not permitted if f() is multi-valued
    				//check.errorf(call.Ellipsis, "cannot use ... with %d-valued %s", nargs, call.ArgList[0])
    				check.errorf(call, InvalidDotDotDot, "cannot use ... with %d-valued %s", nargs, call.ArgList[0])
    				return
    			}
    		} else {
    			// variadic_func(a, b, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubelet/flags.go

    		registerTaintsUsingFlags: registerTaintsUsingFlags,
    	}
    	stringMap := buildKubeletArgs(flagOpts)
    	argList := kubeadmutil.ArgumentsToCommand(stringMap, nodeReg.KubeletExtraArgs)
    	envFileContent := fmt.Sprintf("%s=%q\n", constants.KubeletEnvFileVariableName, strings.Join(argList, " "))
    
    	return writeKubeletFlagBytesToDisk([]byte(envFileContent), kubeletDir)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 10:27:05 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/builtins.go

    	argList := call.ArgList
    
    	// append is the only built-in that permits the use of ... for the last argument
    	bin := predeclaredFuncs[id]
    	if hasDots(call) && id != _Append {
    		check.errorf(dddErrPos(call),
    			InvalidDotDotDot,
    			invalidOp+"invalid use of ... with built-in %s", bin.name)
    		check.use(argList...)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top