Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for funcname (0.16 sec)

  1. cluster/gce/windows/smoke-test.sh

      ${kubectl} delete deployment "$windows_command_deployment"
    }
    
    function test_linux_node_to_linux_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    function test_linux_node_to_windows_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    function test_linux_pod_to_linux_pod {
      echo "TEST: ${FUNCNAME[0]}"
      local linux_command_pod
      linux_command_pod="$(get_linux_command_pod_name)"
      local linux_webserver_pod_ip
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. src/syscall/mksyscall.pl

    	$text .= "}\n\n";
    	if($libc) {
    		if (not exists $trampolines{$funcname}) {
    			$trampolines{$funcname} = 1;
    			# The assembly trampoline that jumps to the libc routine.
    			$text .= "func ${funcname}_trampoline()\n\n";
    			# Tell the linker that funcname can be found in libSystem using varname without the libc_ prefix.
    			my $basename = substr $funcname, 5;
    			my $libc = "libc.so";
    			if ($darwin) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    			print("runtime: frame ", funcname(f), " untyped locals ", hex(frame.varp-size), "+", hex(size), "\n")
    			throw("missing stackmap")
    		}
    		// If nbit == 0, there's no work to do.
    		if stkmap.nbit > 0 {
    			if stackid < 0 || stackid >= stkmap.n {
    				// don't know where we are
    				print("runtime: pcdata is ", stackid, " and ", stkmap.n, " locals stack map entries for ", funcname(f), " (targetpc=", hex(targetpc), ")\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/runtime/symtab.go

    			f2name := "end"
    			if i+1 < nftab {
    				f2name = funcname(f2)
    			}
    			println("function symbol table not sorted by PC offset:", hex(datap.ftab[i].entryoff), funcname(f1), ">", hex(datap.ftab[i+1].entryoff), f2name, ", plugin:", datap.pluginpath)
    			for j := 0; j <= i; j++ {
    				println("\t", hex(datap.ftab[j].entryoff), funcname(funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[datap.ftab[j].funcoff])), datap}))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  5. internal/logger/logger.go

    func getSource(level int) string {
    	pc, file, lineNumber, ok := runtime.Caller(level)
    	if ok {
    		// Clean up the common prefixes
    		file = trimTrace(file)
    		_, funcName := filepath.Split(runtime.FuncForPC(pc).Name())
    		return fmt.Sprintf("%v:%v:%v()", file, lineNumber, funcName)
    	}
    	return ""
    }
    
    // getTrace method - creates and returns stack trace
    func getTrace(traceLevel int) []string {
    	var trace []string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/generic-handlers.go

    			if ok {
    				tc.FuncName = "handler.ValidRequest"
    				tc.ResponseRecorder.LogErrBody = true
    			}
    
    			defer logger.AuditLog(r.Context(), w, r, mustGetClaimsFromToken(r))
    			writeErrorResponse(r.Context(), w, errorCodes.ToAPIErr(ErrUnsupportedMetadata), r.URL)
    			return
    		}
    
    		if isHTTPHeaderSizeTooLarge(r.Header) {
    			if ok {
    				tc.FuncName = "handler.ValidRequest"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  7. src/cmd/covdata/metamerge.go

    			fmt.Printf("counter merge for %s fidx=%d\n", fd.Funcname, fnIdx)
    		}
    		// Merge.
    		err, overflow := mm.MergeCounters(gfp.Counters, counters)
    		if err != nil {
    			fatal("%v", err)
    		}
    		if overflow {
    			warn("uint32 overflow during counter merge")
    		}
    		mm.p.ctab[fnIdx] = gfp
    	} else {
    		if *verbflag >= 3 {
    			fmt.Printf("null merge for %s fidx %d\n", fd.Funcname, fnIdx)
    		}
    		gfp := v
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/dwarfgen/dwinl.go

    // malformed range is found.
    func checkInlCall(funcName string, inlCalls dwarf.InlCalls, funcSize int64, idx, parentIdx int) {
    
    	// Callee
    	ic := inlCalls.Calls[idx]
    	callee := base.Ctxt.InlTree.InlinedFunction(ic.InlIndex).Name
    	calleeRanges := ic.Ranges
    
    	// Caller
    	caller := funcName
    	parentRanges := []dwarf.Range{dwarf.Range{Start: int64(0), End: funcSize}}
    	if parentIdx != -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/kubelet/container/testing/fake_runtime.go

    func (f *FakeRuntime) AssertCallCounts(funcName string, expectedCount int) bool {
    	f.Lock()
    	defer f.Unlock()
    	actualCount := 0
    	for _, c := range f.CalledFunctions {
    		if funcName == c {
    			actualCount += 1
    		}
    	}
    	if expectedCount != actualCount {
    		f.T.Errorf("AssertCallCounts: expected %s to be called %d times, but was actually called %d times.", funcName, expectedCount, actualCount)
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 00:23:50 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. cmd/metrics.go

    		registry,
    	}
    
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		tc, ok := r.Context().Value(mcontext.ContextTraceKey).(*mcontext.TraceCtxt)
    		if ok {
    			tc.FuncName = "handler.MetricsLegacy"
    			tc.ResponseRecorder.LogErrBody = true
    		}
    
    		mfs, err := gatherers.Gather()
    		if err != nil {
    			if len(mfs) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top