Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 126 for indices (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        if (n->attrs().Find(kXlaAlreadyClustered)) {
          return absl::OkStatus();
        }
        // Skip the pass if we found TPUExecute or TPUExecuteAndUpdateVariables ops
        // in the graph, which indicates the graph is produced by TPU TF-XLA bridge
        // and doesn't require auto clustering.
        if (n->type_string() == "TPUExecute" ||
            n->type_string() == "TPUExecuteAndUpdateVariables") {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K 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/link/internal/ppc64/asm.go

    		// The TOC pointer is valid. The external linker will insert trampolines.
    		return
    	}
    
    	relocs := ldr.Relocs(s)
    	r := relocs.At(ri)
    	var t int64
    	// ldr.SymValue(rs) == 0 indicates a cross-package jump to a function that is not yet
    	// laid out. Conservatively use a trampoline. This should be rare, as we lay out packages
    	// in dependency order.
    	if ldr.SymValue(rs) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      // This means MutexBase has to be a POD and its member variables
      // have to be public.
     public:
      pthread_mutex_t mutex_;  // The underlying pthread mutex.
      // has_owner_ indicates whether the owner_ field below contains a valid thread
      // ID and is therefore safe to inspect (e.g., to use in pthread_equal()). All
      // accesses to the owner_ field should be protected by a check of this field.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. 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)
Back to top