Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for indices (0.4 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    	)
    
    	// loadOne synchronously loads the explicit requirements for module m.
    	// It does not load the transitive requirements of m even if the go version in
    	// m's go.mod file indicates that it supports graph pruning.
    	loadOne := func(m module.Version) (*modFileSummary, error) {
    		return mg.loadCache.Do(m, func() (*modFileSummary, error) {
    			summary, err := goModSummary(m)
    
    			mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/parser.go

    // optionally followed by a comma. If strict is set to false,
    // the first element may also be a (non-type) expression.
    // If there is more than one argument, the result is a *ListExpr.
    // The comma result indicates whether there was a (separating or
    // trailing) comma.
    //
    // typeList = arg { "," arg } [ "," ] .
    func (p *parser) typeList(strict bool) (x Expr, comma bool) {
    	if trace {
    		defer p.trace("typeList")()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ppc64/ssa.go

    		p.To.Reg = v.Args[0].Reg()
    
    	case ssa.OpPPC64ISEL, ssa.OpPPC64ISELZ:
    		// ISEL  AuxInt ? arg0 : arg1
    		// ISELZ is a special case of ISEL where arg1 is implicitly $0.
    		//
    		// AuxInt value indicates conditions 0=LT 1=GT 2=EQ 3=SO 4=GE 5=LE 6=NE 7=NSO.
    		// ISEL accepts a CR bit argument, not a condition as expressed by AuxInt.
    		// Convert the condition to a CR bit argument by the following conversion:
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

            && isInlinableMemmove(dst, src, sz, config)
            && clobber(call)
            => (Move [sz] dst src mem)
    
    // Prefetch instructions (TH specified using aux field)
    // For DCBT Ra,Rb,TH, A value of TH indicates:
    //     0, hint this cache line will be used soon. (PrefetchCache)
    //     16, hint this cache line will not be used for long. (PrefetchCacheStreamed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/runtime/map.go

    	// during map writes and thus no one else can observe the map during that time).
    	emptyRest      = 0 // this cell is empty, and there are no more non-empty cells at higher indexes or overflows.
    	emptyOne       = 1 // this cell is empty
    	evacuatedX     = 2 // key/elem is valid.  Entry has been evacuated to first half of larger table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    		}
    	}
    
    	result := HealthResult{
    		Healthy:       true,
    		HealthyRead:   true,
    		WriteQuorum:   maximumWriteQuorum,
    		ReadQuorum:    maximumReadQuorum,
    		UsingDefaults: usingDefaults, // indicates if config was not initialized and we are using defaults on this node.
    	}
    
    	for poolIdx := range erasureSetUpCount {
    		for setIdx := range erasureSetUpCount[poolIdx] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    	}
    
    	// Ignore the failure if the tests are running in a QEMU-based emulator,
    	// QEMU is not perfect at emulating everything.
    	// IN_QEMU environmental variable is set by some of the Go builders.
    	// IN_QEMU=1 indicates that the tests are running in QEMU. See issue 9605.
    	if os.Getenv("IN_QEMU") == "1" {
    		t.Skip("ignore the failure in QEMU; see golang.org/issue/9605")
    	}
    	t.FailNow()
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewrite.go

    	"math/bits"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    type deadValueChoice bool
    
    const (
    	leaveDeadValues  deadValueChoice = false
    	removeDeadValues                 = true
    )
    
    // deadcode indicates whether rewrite should try to remove any values that become dead.
    func applyRewrite(f *Func, rb blockRewriter, rv valueRewriter, deadcode deadValueChoice) {
    	// repeat rewrites until we find no more rewrites
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	}
    	return !t.failed
    }
    
    // Deadline reports the time at which the test binary will have
    // exceeded the timeout specified by the -timeout flag.
    //
    // The ok result is false if the -timeout flag indicates “no timeout” (0).
    func (t *T) Deadline() (deadline time.Time, ok bool) {
    	deadline = t.context.deadline
    	return deadline, !deadline.IsZero()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/net/http/transport.go

    	}
    
    	resp.TLS = pc.tlsState
    	return
    }
    
    // waitForContinue returns the function to block until
    // any response, timeout or connection close. After any of them,
    // the function returns a bool which indicates if the body should be sent.
    func (pc *persistConn) waitForContinue(continueCh <-chan struct{}) func() bool {
    	if continueCh == nil {
    		return nil
    	}
    	return func() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top