Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 366 for eventual (0.24 sec)

  1. src/cmd/cgo/doc.go

    creating go.o. Indeed, the definition for _cgo_gcc_Cfunc_sin will be
    provided to the host linker by foo2.cgo.o, which in turn will need the
    symbol 'sin'. cmd/link also processes the cgo_ldflag directives, so that it
    knows that the eventual host link command must include the -lm
    argument, so that the host linker will be able to find 'sin' in the
    math library.
    
    cmd/link Command Line Interface
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types/type.go

    func (t *Type) MapType() *Map {
    	t.wantEtype(TMAP)
    	return t.extra.(*Map)
    }
    
    // Forward contains Type fields specific to forward types.
    type Forward struct {
    	Copyto      []*Type  // where to copy the eventual value to
    	Embedlineno src.XPos // first use of this type as an embedded type
    }
    
    // forwardType returns t's extra forward-type-specific fields.
    func (t *Type) forwardType() *Forward {
    	t.wantEtype(TFORW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	// (shouldn't happen but easy to handle).
    	if len(subs) == 0 {
    		return p.push(p.newRegexp(OpNoMatch))
    	}
    
    	return p.push(p.collapse(subs, OpAlternate))
    }
    
    // cleanAlt cleans re for eventual inclusion in an alternation.
    func cleanAlt(re *Regexp) {
    	switch re.Op {
    	case OpCharClass:
    		re.Rune = cleanClass(&re.Rune)
    		if len(re.Rune) == 2 && re.Rune[0] == 0 && re.Rune[1] == unicode.MaxRune {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.run("tool", "buildid", tg.path("bin/m"+exeSuffix))
    
    	// The link action ID did not include the full main build ID,
    	// even though the full main build ID is written into the
    	// eventual binary. That caused the following install to
    	// be a no-op, thinking the gofmt binary was up-to-date,
    	// even though .Stale could see it was not.
    	tg.tempFile("src/m/main.go", "package main /* c2 */; func main() {}\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    		//
    		// To ensure that this process of promoting, adding, and upgrading roots
    		// eventually terminates, during iteration we only ever add modules to the
    		// root set — we only remove irrelevant roots at the very end of
    		// iteration, after we have already added every root that we plan to need
    		// in the (eventual) tidy root set.
    		//
    		// Since we do not remove any roots during iteration, even if they no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/x86/asm6.go

    )
    
    const (
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Encoding for VEX prefix in tables.
    	// The P, L, and W fields are chosen to match
    	// their eventual locations in the VEX prefix bytes.
    
    	// Using spare bit to make leading [E]VEX encoding byte different from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/runtime/proc.go

    	//
    	// doAllThreadsSyscall requires that every M in allm will eventually
    	// start and be signal-able, even with a STW.
    	//
    	// Disable preemption here until we start the thread to ensure that
    	// newm is not preempted between allocm and starting the new thread,
    	// ensuring that anything added to allm is guaranteed to eventually
    	// start.
    	acquirem()
    
    	mp := allocm(pp, fn, id)
    	mp.nextp.set(pp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    		}
    	}()
    	sh := b.Shell(a)
    
    	a1 := a.Deps[0]
    	a.buildID = a1.buildID
    	if a.json != nil {
    		a.json.BuildID = a.buildID
    	}
    
    	// If we are using the eventual install target as an up-to-date
    	// cached copy of the thing we built, then there's no need to
    	// copy it into itself (and that would probably fail anyway).
    	// In this case a1.built == a.Target because a1.built == p.Target,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // the source file, but most processing should be over the vendor-resolved
    // import paths. We do this resolution lazily both to avoid file system work
    // and because the eventual real load of the test imports (during 'go test')
    // can produce better error messages if it starts with the original paths.
    // The initial load of p loads all the non-test imports and rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pilot/pkg/config/monitor/monitor_test.go

    			}
    			time.Sleep(time.Millisecond * 100)
    		}
    	}()
    	g.Eventually(func() error {
    		c := store.List(gvk.Gateway, "")
    
    		if len(c) != 1 {
    			return errors.New("no configs")
    		}
    
    		if c[0].Meta.Name != "magic" {
    			return errors.New("wrong config")
    		}
    
    		return nil
    	}).Should(Succeed())
    
    	g.Eventually(func() error {
    		c := store.List(gvk.Gateway, "")
    		if len(c) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top