Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 931 for fonction (2.89 sec)

  1. src/cmd/cover/func.go

    		v.funcs = append(v.funcs, fe)
    	}
    	return v
    }
    
    // coverage returns the fraction of the statements in the function that were covered, as a numerator and denominator.
    func (f *FuncExtent) coverage(profile *cover.Profile) (num, den int64) {
    	// We could avoid making this n^2 overall by doing a single scan and annotating the functions,
    	// but the sizes of the data structures is never very large and the scan is almost instantaneous.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/textflag.go

    	// Only valid on functions that declare a frame size of 0.
    	// TODO(mwhudson): only implemented for ppc64x at present.
    	NOFRAME = 512
    
    	// Function can call reflect.Type.Method or reflect.Type.MethodByName.
    	REFLECTMETHOD = 1024
    
    	// Function is the outermost frame of the call stack. Call stack unwinders
    	// should stop at this function.
    	TOPFRAME = 2048
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:25:30 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/callee.go

    		return nil // Was not a Func.
    	}
    	return obj
    }
    
    // StaticCallee returns the target (function or method) of a static function
    // call, if any. It returns nil for calls to builtins.
    //
    // Note: for calls of instantiated functions and methods, StaticCallee returns
    // the corresponding generic function or method on the generic type.
    func StaticCallee(info *types.Info, call *ast.CallExpr) *types.Func {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    // results of calls to certain functions.
    package unusedresult
    
    // It is tempting to make this analysis inductive: for each function
    // that tail-calls one of the functions that we check, check those
    // functions too. However, just because you must use the result of
    // fmt.Sprintf doesn't mean you need to use the result of every
    // function that returns a formatted string: it may have other results
    // and effects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // enclosing loop variables from within nested functions.
    //
    // # Analyzer loopclosure
    //
    // loopclosure: check references to loop variables from within nested functions
    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"cum":  helpText("Sort entries based on cumulative weight"),
    
    	// Output granularity
    	"functions": helpText(
    		"Aggregate at the function level.",
    		"Ignores the filename where the function was defined."),
    	"filefunctions": helpText(
    		"Aggregate at the function level.",
    		"Takes into account the filename where the function was defined."),
    	"files": "Aggregate at the file level.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	}
    	f := &Function{
    		ID:         uint64(len(pm.p.Function) + 1),
    		Name:       src.Name,
    		SystemName: src.SystemName,
    		Filename:   src.Filename,
    		StartLine:  src.StartLine,
    	}
    	pm.functions[k] = f
    	pm.functionsByID[src.ID] = f
    	pm.p.Function = append(pm.p.Function, f)
    	return f
    }
    
    // key generates a struct to be used as a key for maps.
    func (f *Function) key() functionKey {
    	return functionKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    			bu.SetFastSymbolization(true)
    		}
    	}
    
    	functions := map[profile.Function]*profile.Function{}
    	addFunction := func(f *profile.Function) *profile.Function {
    		if fp := functions[*f]; fp != nil {
    			return fp
    		}
    		functions[*f] = f
    		f.ID = uint64(len(prof.Function)) + 1
    		prof.Function = append(prof.Function, f)
    		return f
    	}
    
    	missingBinaries := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/cgo/doc.go

    is different from the same C type used in another.
    
    Any C function (even void functions) may be called in a multiple
    assignment context to retrieve both the return value (if any) and the
    C errno variable as an error (use _ to skip the result value if the
    function returns void). For example:
    
    	n, err = C.sqrt(-1)
    	_, err := C.voidFunc()
    	var n, err = C.sqrt(1)
    
    Calling C function pointers is currently not supported, however you can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		}
    		mappings[m.ID] = m
    	}
    	functions := make(map[uint64]*Function, len(p.Function))
    	for _, f := range p.Function {
    		if f == nil {
    			return fmt.Errorf("profile has nil function")
    		}
    		if f.ID == 0 {
    			return fmt.Errorf("found function with reserved ID=0")
    		}
    		if functions[f.ID] != nil {
    			return fmt.Errorf("multiple functions with same id: %d", f.ID)
    		}
    		functions[f.ID] = f
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top