Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Nabors (0.58 sec)

  1. src/cmd/asm/internal/asm/parse.go

    		errorWriter: os.Stderr,
    		allowABI:    ctxt != nil && objabi.LookupPkgSpecial(ctxt.Pkgpath).AllowAsmABI,
    		pkgPrefix:   pkgPrefix,
    	}
    }
    
    // panicOnError is enabled when testing to abort execution on the first error
    // and turn it into a recoverable panic.
    var panicOnError bool
    
    func (p *Parser) errorf(format string, args ...interface{}) {
    	if panicOnError {
    		panic(fmt.Errorf(format, args...))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/issues_test.go

    L4 defs const w untyped int
    L5 defs var x int
    L5 defs var y int
    L6 defs var z int
    L6 uses const w untyped int
    L6 uses var x int
    L7 uses var x int
    L7 uses var y int
    L7 uses var z int`
    
    	// don't abort at the first error
    	conf := Config{Error: func(err error) { t.Log(err) }}
    	defs := make(map[*syntax.Name]Object)
    	uses := make(map[*syntax.Name]Object)
    	_, err := typecheck(src, &conf, &Info{Defs: defs, Uses: uses})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/infer.go

    // parameter, either directly or indirectly. If such a cycle is detected,
    // it is killed by setting the corresponding inferred type to nil.
    //
    // TODO(gri) Determine if we can simply abort inference as soon as we have
    // found a single cycle.
    func killCycles(tparams []*TypeParam, inferred []Type) {
    	w := cycleFinder{tparams, inferred, make(map[Type]bool)}
    	for _, t := range tparams {
    		w.typ(t) // t != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/generate/generate.go

    }
    
    // run runs the generators in the current file.
    func (g *Generator) run() (ok bool) {
    	// Processing below here calls g.errorf on failure, which does panic(stop).
    	// If we encounter an error, we abort the package.
    	defer func() {
    		e := recover()
    		if e != nil {
    			ok = false
    			if e != stop {
    				panic(e)
    			}
    			base.SetExitStatus(1)
    		}
    	}()
    	g.dir, g.file = filepath.Split(g.path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 29 19:39:24 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    // a good solution to check VMA size (see https://go.dev/issue/29948).
    // raceDetectorSupported will always return true for arm64. But race
    // detector tests may abort on non 48-bit VMA configuration, the tests
    // will be marked as "skipped" in this case.
    func raceDetectorSupported(goos, goarch string) bool {
    	switch goos {
    	case "linux":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/test.go

    	case 0:
    		return offsetof(innerPacked, f2);
    	case 1:
    		return offsetof(outerPacked, g2);
    	case 2:
    		return offsetof(innerUnpacked, f2);
    	case 3:
    		return offsetof(outerUnpacked, g2);
    	default:
    		abort();
    	}
    }
    
    // issue 29748
    
    typedef struct { char **p; } S29748;
    static int f29748(S29748 *p) { return 0; }
    
    // issue 29781
    // Error with newline inserted into constant expression.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				goto found
    			}
    		}
    		if len(b.Preds) > 1 {
    			// Don't know which way to go back. Abort.
    			return nil
    		}
    		b = b.Preds[0].b
    		d--
    	}
    	return nil // too far away
    found:
    	// At this point, r is the first value in a that we find by walking backwards.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top