Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for indices (0.17 sec)

  1. src/go/types/api_test.go

    	"go/ast"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"internal/goversion"
    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    
    	. "go/types"
    )
    
    // nopos indicates an unknown position
    var nopos token.Pos
    
    func mustParse(fset *token.FileSet, src string) *ast.File {
    	f, err := parser.ParseFile(fset, pkgName(src), src, parser.ParseComments)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    	// configurations of the same test package(s). If set and omitVariant is false,
    	// the Package field in test2json output is rewritten to pkg:variant.
    	variant string
    	// omitVariant indicates that variant is used solely for the dist test name and
    	// that the set of test names run by each variant (including empty) of a package
    	// is non-overlapping.
    	omitVariant bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    	if wp := f.waitingPods.get(uid); wp != nil {
    		return wp
    	}
    	return nil // Returning nil instead of *waitingPod(nil).
    }
    
    // RejectWaitingPod rejects a WaitingPod given its UID.
    // The returned value indicates if the given pod is waiting or not.
    func (f *frameworkImpl) RejectWaitingPod(uid types.UID) bool {
    	if waitingPod := f.waitingPods.get(uid); waitingPod != nil {
    		waitingPod.Reject("", "removed")
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    var goroutineProfile = struct {
    	sema    uint32
    	active  bool
    	offset  atomic.Int64
    	records []profilerecord.StackRecord
    	labels  []unsafe.Pointer
    }{
    	sema: 1,
    }
    
    // goroutineProfileState indicates the status of a goroutine's stack for the
    // current in-progress goroutine profile. Goroutines' stacks are initially
    // "Absent" from the profile, and end up "Satisfied" by the time the profile is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    // [PL] It seems to me that this block of content should really be in a more generic part
    //      of the user manual as it discusses techniques that apply outside of the Kotlin DSL.
    //      In fact, it indicates missing content that this chapter should be able to link to.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pkg/proxy/ipvs/proxier.go

    			return nil, err
    		}
    	}
    
    	// Configure IPVS timeouts if any one of the timeout parameters have been set.
    	// This is the equivalent to running ipvsadm --set, a value of 0 indicates the
    	// current system timeout should be preserved
    	if tcpTimeout > 0 || tcpFinTimeout > 0 || udpTimeout > 0 {
    		if err := ipvs.ConfigureTimeouts(tcpTimeout, tcpFinTimeout, udpTimeout); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. 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)
Back to top