Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for funcNames (0.33 sec)

  1. src/debug/gosym/pclntab.go

    		if b&0x80 == 0 {
    			break
    		}
    	}
    	*pp = p
    	return v
    }
    
    // funcName returns the name of the function found at off.
    func (t *LineTable) funcName(off uint32) string {
    	if s, ok := t.funcNames[off]; ok {
    		return s
    	}
    	i := bytes.IndexByte(t.funcnametab[off:], 0)
    	s := string(t.funcnametab[off : off+uint32(i)])
    	t.funcNames[off] = s
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. internal/s3select/sql/aggregation.go

    package sql
    
    import (
    	"errors"
    	"fmt"
    )
    
    // Aggregation Function name constants
    const (
    	aggFnAvg   FuncName = "AVG"
    	aggFnCount FuncName = "COUNT"
    	aggFnMax   FuncName = "MAX"
    	aggFnMin   FuncName = "MIN"
    	aggFnSum   FuncName = "SUM"
    )
    
    var (
    	errNonNumericArg = func(fnStr FuncName) error {
    		return fmt.Errorf("%s() requires a numeric argument", fnStr)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    	// Account for leading '.' on the PPC ELF v1 ABI.
    	funcName := strings.TrimPrefix(f, ".")
    	// Account for unsimplified names -- try  to remove the argument list by trimming
    	// starting from the first '(', but skipping reserved names that have '('.
    	for _, ind := range bracketRx.FindAllStringSubmatchIndex(funcName, -1) {
    		foundReserved := false
    		for _, res := range reservedNames {
    			if funcName[ind[0]:ind[1]] == res {
    				foundReserved = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(then_idx));
        uint32_t else_idx = opts->else_subgraph_index;
        if (else_idx >= func_names.size()) {
          return errors::InvalidArgument("subgraph with index not found: ",
                                         else_idx);
        }
        auto else_attr =
            mlir::SymbolRefAttr::get(builder.getContext(), func_names.at(else_idx));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.h

    #ifdef GOOS_aix
    #ifdef GOARCH_ppc64
    #define GO_PPC64X_HAS_FUNCDESC
    #define DEFINE_PPC64X_FUNCDESC(funcname, localfuncname)	\
    	DATA	funcname+0(SB)/8, $localfuncname(SB) 	\
    	DATA	funcname+8(SB)/8, $TOC(SB)		\
    	DATA	funcname+16(SB)/8, $0			\
    	GLOBL	funcname(SB), NOPTR, $24
    #endif
    #endif
    
    // linux/ppc64 uses ELFv1 which uses function descriptors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 22:20:51 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. internal/s3select/sql/analysis.go

    		// Initialize accumulator
    		e.aggregate = newAggVal(funcName)
    
    		var exprA qProp
    		if funcName == aggFnCount {
    			if e.Count.StarArg {
    				return qProp{isAggregation: true}
    			}
    
    			exprA = e.Count.ExprArg.analyze(s)
    		} else {
    			if len(e.SFunc.ArgsList) != 1 {
    				return qProp{err: fmt.Errorf("%s takes exactly one argument", funcName)}
    			}
    			exprA = e.SFunc.ArgsList[0].analyze(s)
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. hack/lib/logging.sh

      stack_skip=$((stack_skip + 1))
      if [[ ${#FUNCNAME[@]} -gt ${stack_skip} ]]; then
        echo "Call stack:" >&2
        local i
        for ((i=1 ; i <= ${#FUNCNAME[@]} - stack_skip ; i++))
        do
          local frame_no=$((i - 1 + stack_skip))
          local source_file=${BASH_SOURCE[${frame_no}]}
          local source_lineno=${BASH_LINENO[$((frame_no - 1))]}
          local funcname=${FUNCNAME[${frame_no}]}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    // data.
    func (d *llvmSymbolizer) readFrame() (plugin.Frame, bool) {
    	funcname, err := d.rw.readLine()
    	if err != nil {
    		return plugin.Frame{}, true
    	}
    
    	switch funcname {
    	case "":
    		return plugin.Frame{}, true
    	case "??":
    		funcname = ""
    	}
    
    	fileline, err := d.rw.readLine()
    	if err != nil {
    		return plugin.Frame{Func: funcname}, true
    	}
    
    	linenumber := 0
    	columnnumber := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. 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)
  10. cmd/http-tracer.go

    		reqPath := r.URL.RawPath
    		if reqPath == "" {
    			reqPath = r.URL.Path
    		}
    
    		// Calculate function name
    		funcName := tc.FuncName
    		if funcName == "" {
    			funcName = "<unknown>"
    		}
    
    		t := madmin.TraceInfo{
    			TraceType: tt,
    			FuncName:  funcName,
    			NodeName:  nodeName,
    			Time:      reqStartTime,
    			Duration:  reqEndTime.Sub(respRecorder.StartTime),
    			Path:      reqPath,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top