Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 676 for aloop (0.09 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    	// scratch locations
    	priq   blockHeap    // priority queue of blocks, higher level (toward leaves) = higher priority
    	q      []*ssa.Block // inner loop queue
    	queued *sparseSet   // has been put in q
    	hasPhi *sparseSet   // has a phi
    	hasDef *sparseSet   // has a write of the variable we're processing
    
    	// miscellaneous
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/volume_manager.go

    )
    
    const (
    	// reconcilerLoopSleepPeriod is the amount of time the reconciler loop waits
    	// between successive executions
    	reconcilerLoopSleepPeriod = 100 * time.Millisecond
    
    	// desiredStateOfWorldPopulatorLoopSleepPeriod is the amount of time the
    	// DesiredStateOfWorldPopulator loop waits between successive executions
    	desiredStateOfWorldPopulatorLoopSleepPeriod = 100 * time.Millisecond
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		},
    
    		// R31 is temp register
    		// Loop code:
    		//	MOVD len/32,R31		set up loop ctr
    		//	MOVD R31,CTR
    		//	MOVD $16,R31		index register
    		// loop:
    		//	LXVD2X (R0)(R4),VS32
    		//	LXVD2X (R31)(R4),VS33
    		//	ADD  R4,$32          increment src
    		//	STXVD2X VS32,(R0)(R3)
    		//	STXVD2X VS33,(R31)(R3)
    		//	ADD  R3,$32          increment dst
    		//	BC 16,0,loop         branch ctr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/topology_hints.go

    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded device resources before providing TopologyHints
    	m.UpdateAllocatedDevices()
    
    	// Loop through all device resources and generate TopologyHints for them.
    	deviceHints := make(map[string][]topologymanager.TopologyHint)
    	accumulatedResourceRequests := m.getContainerDeviceRequest(container)
    
    	m.mutex.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

            lra_list_.erase(block->lra_iterator);
            lra_list_.push_front(key);
            block->lra_iterator = lra_list_.begin();
            block->timestamp = timer_seconds_();
          }
        }
      });
      // Loop until either block content is successfully fetched, or our request
      // encounters an error.
      absl::MutexLock l(&block->mu);
      TF_SetStatus(status, TF_OK, "");
      while (true) {
        switch (block->state) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  6. test/live.go

    // The old algorithm treated x as live on all code that
    // could flow to a return statement, so it included the
    // function entry and code above the declaration of x
    // but would not include an indirect use of x in an infinite loop.
    // Check that these cases are handled correctly.
    
    func f4(b1, b2 bool) { // x not live here
    	if b2 {
    		printint(0) // x not live here
    		return
    	}
    	var z **int
    	x := new(int) // ERROR "stack object x \*int$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                firFunctionDeclarations.add(function)
                super.visitFunction(function)
            }
    
            override fun visitLoop(loop: FirLoop) {
                firLoopStatements.add(loop)
                super.visitLoop(loop)
            }
    
            override fun visitReturnExpression(returnExpression: FirReturnExpression) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  8. pkg/util/async/bounded_frequency_runner_test.go

    	obj := &receiver{}
    	timer := newFakeTimer()
    	runner := construct("test-runner", obj.F, minInterval, maxInterval, 1, timer)
    	stop := make(chan struct{})
    
    	var upd timerUpdate
    
    	// Start.
    	go runner.Loop(stop)
    	upd = <-timer.updated // wait for initial time to be set to max
    	checkTimer("init", t, upd, true, maxInterval)
    	checkReceiver("init", t, obj, false)
    
    	// Run once, immediately.
    	// rel=0ms
    	runner.Run()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/reduce_while_operands.cc

    // return S[0]
    //
    // the 2nd operand (i = 1) as well as its related op (a1 = a0 + S[1])
    // can be removed since only S[0] is returned.
    // It cannot be removed by loop-invariant-code-motion pass since every value
    // is used and changed in the while loop.
    
    // Moreover, we require
    // 1. no implicit argument: For every operation in whileOp, all dependent values
    //    (except for constant) are explicitly passed in.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/UnsignedBytes.java

           * non-final fields need to be reloaded inside the loop.
           *
           * And, no, defining (final or not) local variables out of the loop still isn't as good
           * because the null check on the theUnsafe object remains inside the loop and
           * BYTE_ARRAY_BASE_OFFSET doesn't get constant-folded.
           *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top