Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,034 for programs (0.19 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    func Main(analyzers ...*analysis.Analyzer) {
    	progname := filepath.Base(os.Args[0])
    	log.SetFlags(0)
    	log.SetPrefix(progname + ": ")
    
    	if err := analysis.Validate(analyzers); err != nil {
    		log.Fatal(err)
    	}
    
    	flag.Usage = func() {
    		fmt.Fprintf(os.Stderr, `%[1]s is a tool for static analysis of Go programs.
    
    Usage of %[1]s:
    	%.16[1]s unit.cfg	# execute analysis specified by config file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // to update builtin.go. This is not done automatically
    // to avoid depending on having a working compiler binary.
    
    //go:build ignore
    
    package runtime
    
    // emitted by compiler, not referred to by go programs
    
    import "unsafe"
    
    func newobject(typ *byte) *any
    func mallocgc(size uintptr, typ *byte, needszero bool) unsafe.Pointer
    func panicdivide()
    func panicshift()
    func panicmakeslicelen()
    func panicmakeslicecap()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/distpack/pack.go

    		dirMode = fs.ModeDir | f.Mode | (f.Mode&0444)>>2 // copy r bits down to x bits
    		mtime = f.Time
    		break
    	}
    
    	// mkdirAll ensures that the tar file contains directory
    	// entries for dir and all its parents. Some programs reading
    	// these tar files expect that. See go.dev/issue/61862.
    	haveDir := map[string]bool{".": true}
    	var mkdirAll func(string)
    	mkdirAll = func(dir string) {
    		if dir == "/" {
    			panic("mkdirAll /")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    	var celValidator *cel.Validator
    	if utilfeature.DefaultFeatureGate.Enabled(features.CustomResourceValidationExpressions) {
    		celValidator = cel.NewValidator(structuralSchema, true, celconfig.PerCallLimit) // CEL programs are compiled and cached here
    	}
    
    	strategy := customResourceStrategy{
    		ObjectTyper:     typer,
    		NameGenerator:   names.SimpleNameGenerator,
    		namespaceScoped: namespaceScoped,
    		status:          status,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt

         ii) additions to the Program;
      where such changes and/or additions to the Program originate from
      and are Distributed by that particular Contributor. A Contribution
      "originates" from a Contributor if it was added to the Program by
      such Contributor itself or anyone acting on such Contributor's behalf.
      Contributions do not include changes or additions to the Program that
      are not Modified Works.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    )
    
    // Validator parallels the structure of schema.Structural and includes the compiled CEL programs
    // for the x-kubernetes-validations of each schema node.
    type Validator struct {
    	Items                *Validator
    	Properties           map[string]Validator
    	AllOfValidators      []*Validator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  7. src/regexp/onepass.go

    // A onePassProg is a compiled one-pass regular expression program.
    // It is the same as syntax.Prog except for the use of onePassInst.
    type onePassProg struct {
    	Inst   []onePassInst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // A onePassInst is a single instruction in a one-pass regular expression program.
    // It is the same as syntax.Inst except for the new 'Next' field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/toolchain/select.go

    	// countEnv is a special environment variable
    	// that is incremented during each toolchain switch, to detect loops.
    	// It is cleared before invoking programs in 'go run', 'go test', 'go generate', and 'go tool'
    	// by invoking them in an environment filtered with FilterEnv,
    	// so user programs should not see this in their environment.
    	countEnv = "GOTOOLCHAIN_INTERNAL_SWITCH_COUNT"
    
    	// maxSwitch is the maximum toolchain switching depth.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:25:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. src/cmd/covdata/metamerge.go

    	var counters []uint32
    	key := pkfunc{pk: pkgIdx, fcn: fnIdx}
    	v, haveCounters := mm.pod.pmm[key]
    	if haveCounters {
    		counters = v.Counters
    	}
    
    	if pcombine {
    		// If the merge is running in "combine programs" mode, then hash
    		// the function and look it up in the package ftab to see if we've
    		// encountered it before. If we haven't, then register it with the
    		// meta-data builder.
    		fnhash := encodemeta.HashFuncDesc(fd)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/race_s390x.s

    #include "funcdata.h"
    #include "textflag.h"
    
    // The following thunks allow calling the gcc-compiled race runtime directly
    // from Go code without going all the way through cgo.
    // First, it's much faster (up to 50% speedup for real Go programs).
    // Second, it eliminates race-related special cases from cgocall and scheduler.
    // Third, in long-term it will allow to remove cyclic runtime/race dependency on cmd/go.
    
    // A brief recap of the s390x C calling convention.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top