Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 429 for funcname (0.26 sec)

  1. src/internal/profile/prune.go

    		for i = len(loc.Line) - 1; i >= 0; i-- {
    			if fn := loc.Line[i].Function; fn != nil && fn.Name != "" {
    				funcName := fn.Name
    				// Account for leading '.' on the PPC ELF v1 ABI.
    				if funcName[0] == '.' {
    					funcName = funcName[1:]
    				}
    				if dropRx.MatchString(funcName) {
    					if keepRx == nil || !keepRx.MatchString(funcName) {
    						break
    					}
    				}
    			}
    		}
    
    		if i >= 0 {
    			// Found matching entry to prune.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K 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. 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)
  5. internal/s3select/sql/funceval.go

    	sqlFnToTimestamp FuncName = "TO_TIMESTAMP"
    	sqlFnUTCNow      FuncName = "UTCNOW"
    
    	// String
    	sqlFnCharLength      FuncName = "CHAR_LENGTH"
    	sqlFnCharacterLength FuncName = "CHARACTER_LENGTH"
    	sqlFnLower           FuncName = "LOWER"
    	sqlFnSubstring       FuncName = "SUBSTRING"
    	sqlFnTrim            FuncName = "TRIM"
    	sqlFnUpper           FuncName = "UPPER"
    )
    
    var (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 13.2K 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. test/inline_caller.go

    			panic(fmt.Sprintf("skip=%d expected line %d, got line %d", i, expected[i].line, frame.line))
    		}
    		if fn.Name() != expected[i].funcName {
    			panic(fmt.Sprintf("skip=%d expected function %s, got %s", i, expected[i].funcName, fn.Name()))
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 08 21:54:04 UTC 2019
    - 1.4K 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. 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)
Back to top