Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 880 for bargs (0.06 sec)

  1. src/syscall/mksyscall_libc.pl

    	my $asm = "${syscalldot}${asmfuncname}";
    	if ($nonblock) {
    		$asm = "${syscalldot}${asmrawfuncname}";
    	}
    	if(@args <= 6) {
    		while(@args < 6) {
    			push @args, "0";
    		}
    	} else {
    		print STDERR "$ARGV:$.: too many arguments to system call\n";
    	}
    
    	# Actual call.
    	my $args = join(', ', @args);
    	my $call = "$asm(uintptr(unsafe.Pointer(&$sysvarname)), $nargs, $args)";
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 11:28:51 UTC 2023
    - 8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    		for _, v := range b.Values {
    			// Check to make sure argument count makes sense (argLen of -1 indicates
    			// variable length args)
    			nArgs := opcodeTable[v.Op].argLen
    			if nArgs != -1 && int32(len(v.Args)) != nArgs {
    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    			// Check to make sure aux values make sense.
    			canHaveAux := false
    			canHaveAuxInt := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/testdata/inject/proxy-override-args-native.yaml.injected

            prometheus.io/path: /stats/prometheus
            prometheus.io/port: "15020"
            prometheus.io/scrape: "true"
            proxy.istio.io/overrides: '{"initContainers":[{"name":"istio-proxy","command":["envoy"],"args":["-c","my-config.yaml"],"resources":{}}]}'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. hack/grab-profiles.sh

    kube::util::trap_add "kill $SSH_PID" SIGTERM
    
    requested_profiles=$(echo "${requested_profiles}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    profile_components=$(echo "${profile_components}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    kubelet_addresses=$(echo "${kubelet_addresses}" | xargs -n1 | LC_ALL=C sort -u | xargs)
    echo "requested profiles: ${requested_profiles}"
    echo "flags for heap profile: ${mem_pprof_flags}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 17 06:47:05 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  5. tools/docker-builder/main.go

    	}
    }
    
    // RunCommand runs a command for the repo, with standard environment variables set
    func RunCommand(args Args, c string, cargs ...string) error {
    	cmd := VerboseCommand(c, cargs...)
    	cmd.Env = StandardEnv(args)
    	cmd.Stderr = os.Stderr
    	cmd.Stdout = os.Stdout
    	cmd.Dir = testenv.IstioSrc
    	return cmd.Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 13:23:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/writebarrier.go

    		off := config.ctxt.Arch.FixedFrameSize
    		for _, arg := range args {
    			stkaddr := b.NewValue1I(pos, OpOffPtr, typ.PtrTo(), off, sp)
    			mem = b.NewValue3A(pos, OpStore, types.TypeMem, typ, stkaddr, arg, mem)
    			off += typ.Size()
    		}
    		args = args[:0]
    	}
    
    	args = append(args, mem)
    
    	// issue call
    	argTypes := make([]*types.Type, nargs, 3) // at most 3 args; allows stack allocation
    	for i := 0; i < nargs; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. hack/verify-flags-underscore.py

    # limitations under the License.
    
    import argparse
    import os
    import re
    import sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument("filenames", help="list of files to check, all files if unspecified", nargs='*')
    args = parser.parse_args()
    
    # Cargo culted from http://stackoverflow.com/questions/898669/how-can-i-detect-if-a-file-is-binary-non-text-in-python
    def is_binary(pathname):
        """Return true if the given filename is binary.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/runtime/syscall_windows_test.go

    	t := reflect.TypeOf(f.goFunc)
    	cTypes := make([]string, t.NumIn())
    	cArgs := make([]string, t.NumIn())
    	for i := range cTypes {
    		// We included stdint.h, so this works for all sized
    		// integer types, and uint8Pair_t.
    		cTypes[i] = t.In(i).Name() + "_t"
    		if t.In(i).Name() == "uint8Pair" {
    			cArgs[i] = fmt.Sprintf("(uint8Pair_t){%d,1}", i)
    		} else {
    			cArgs[i] = fmt.Sprintf("%d", i+1)
    		}
    	}
    	fmt.Fprintf(w, `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  9. src/go/types/typestring.go

    		if w.ctxt != nil {
    			w.string(strconv.Itoa(w.ctxt.getID(t)))
    		}
    		w.typeName(t.obj) // when hashing written for readability of the hash only
    		if t.inst != nil {
    			// instantiated type
    			w.typeList(t.inst.targs.list())
    		} else if w.ctxt == nil && t.TypeParams().Len() != 0 { // For type hashing, don't need to format the TypeParams
    			// parameterized type
    			w.tParamList(t.TypeParams().list())
    		}
    
    	case *TypeParam:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. src/os/env_test.go

    	"reflect"
    	"strings"
    	"testing"
    )
    
    // testGetenv gives us a controlled set of variables for testing Expand.
    func testGetenv(s string) string {
    	switch s {
    	case "*":
    		return "all the args"
    	case "#":
    		return "NARGS"
    	case "$":
    		return "PID"
    	case "1":
    		return "ARGUMENT1"
    	case "HOME":
    		return "/usr/gopher"
    	case "H":
    		return "(Value of H)"
    	case "home_1":
    		return "/usr/foo"
    	case "_":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top