Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for recordLine (1.12 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	}
    	return result
    }
    
    var pendingPodsSummary = "activeQ:%v; backoffQ:%v; unschedulablePods:%v"
    
    // PendingPods returns all the pending pods in the queue; accompanied by a debugging string
    // recording showing the number of pods in each queue respectively.
    // This function is used for debugging purposes in the scheduler cache dumper and comparer.
    func (p *PriorityQueue) PendingPods() ([]*v1.Pod, string) {
    	p.lock.RLock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    			tg.env = append(tg.env[:i], tg.env[i+1:]...)
    			break
    		}
    	}
    }
    
    func (tg *testgoData) goTool() string {
    	return testGo
    }
    
    // doRun runs the test go command, recording stdout and stderr and
    // returning exit status.
    func (tg *testgoData) doRun(args []string) error {
    	tg.t.Helper()
    	if tg.inParallel {
    		for _, arg := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    		// truncate it back to 0 bytes so we can define its entire
    		// contents in symtab.go:symtab().
    		mdsb.SetSize(0)
    
    		// In addition, on ARM, the runtime depends on the linker
    		// recording the value of GOARM.
    		if ctxt.Arch.Family == sys.ARM {
    			goarm := ctxt.loader.LookupOrCreateSym("runtime.goarm", 0)
    			sb := ctxt.loader.MakeSymbolUpdater(goarm)
    			sb.SetType(sym.SDATA)
    			sb.SetSize(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/pv_controller.go

    	createProvisionedPVRetryCount int
    	createProvisionedPVInterval   time.Duration
    
    	// operationTimestamps caches start timestamp of operations
    	// (currently provision + binding/deletion) for metric recording.
    	// Detailed lifecycle/key for each operation
    	// 1. provision + binding
    	//     key:        claimKey
    	//     start time: user has NOT provide any volume ref in the claim AND
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top