Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 107 for nextB (0.04 sec)

  1. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            property.get() == someValue()
            upstream1.get() == someOtherValue()
            upstream2.get() == someOtherValue()
        }
    
        def "replaces provider with fixed value on next query of value when value implicitly finalized"() {
            def property = propertyWithNoValue()
            def function = Mock(Callable)
            def provider = new DefaultProvider<T>(function)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

        // CHECK-NEXT:  %[[SCALED_FEATURES:.*]] = "tf.Mul"(%[[FEATURES]], %[[SCALE]]) : (tensor<1x4x4x3xf32>, tensor<f32>) -> tensor<1x4x4x3xf32>
        // CHECK-NEXT:  %[[EXP:.*]] = "tf.Exp"(%[[FEATURES]]) : (tensor<1x4x4x3xf32>) -> tensor<1x4x4x3xf32>
        // CHECK-NEXT:  %[[ELU_VAL:.*]] = "tf.Sub"(%[[EXP]], %[[ONE]]) : (tensor<1x4x4x3xf32>, tensor<f32>) -> tensor<1x4x4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  3. src/go/types/api_test.go

    		{`package main
    
    		var counter int
    		func next() int { counter++; return counter }
    
    		var _ = makeOrder()
    		func makeOrder() []int { return []int{f, b, d, e, c, a} }
    
    		var a       = next()
    		var b, c    = next(), next()
    		var d, e, f = next(), next(), next()
    		`, []string{
    			"a = next()", "b = next()", "c = next()", "d = next()", "e = next()", "f = next()", "_ = makeOrder()",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	// Get current buffer write position.
    	MOVQ	(p_wbBuf+wbBuf_next)(R13), R12	// original next position
    	ADDQ	R11, R12			// new next position
    	// Is the buffer full?
    	CMPQ	R12, (p_wbBuf+wbBuf_end)(R13)
    	JA	flush
    	// Commit to the larger buffer.
    	MOVQ	R12, (p_wbBuf+wbBuf_next)(R13)
    	// Make return value (the original next position)
    	SUBQ	R11, R12
    	MOVQ	R12, R11
    	// Restore registers.
    	MOVQ	96(SP), R12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. pkg/controller/daemon/daemon_controller.go

    	BurstReplicas = 250
    
    	// StatusUpdateRetries limits the number of retries if sending a status update to API server fails.
    	StatusUpdateRetries = 1
    
    	// BackoffGCInterval is the time that has to pass before next iteration of backoff GC is run
    	BackoffGCInterval = 1 * time.Minute
    )
    
    // Reasons for DaemonSet events
    const (
    	// SelectingAllReason is added to an event when a DaemonSet selects all Pods.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// cycles. Note that this is *not* the last value of consMark, but the
    	// measured cons/mark value in endCycle.
    	lastConsMark [4]float64
    
    	// gcPercentHeapGoal is the goal heapLive for when next GC ends derived
    	// from gcPercent.
    	//
    	// Set to ^uint64(0) if gcPercent is disabled.
    	gcPercentHeapGoal atomic.Uint64
    
    	// sweepDistMinTrigger is the minimum trigger to ensure a minimum
    	// sweep distance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    		if !ok || status.IsTerminationRequested() || status.IsTerminated() {
    			continue
    		}
    		// another pod is next in line
    		if waitingUID != uid {
    			p.waitingToStartStaticPodsByFullname[fullname] = waitingPods[i:]
    			return false
    		}
    		// we are up next, remove ourselves
    		waitingPods = waitingPods[i+1:]
    		break
    	}
    	if len(waitingPods) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    					// If error happened during node status transition (Ready -> NotReady)
    					// we need to mark node for retry to force MarkPodsNotReady execution
    					// in the next iteration.
    					nc.nodesToRetry.Store(node.Name, struct{}{})
    				}
    				return
    			}
    			nc.processTaintBaseEviction(ctx, node, &observedReadyCondition)
    
    			_, needsRetry := nc.nodesToRetry.Load(node.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    		// In this case, we should retry scheduling it because this Pod may not be retried until the next flush.
    		return queueAfterBackoff
    	}
    
    	// check if there is an event that makes this Pod schedulable based on pInfo.UnschedulablePlugins.
    	queueingStrategy := queueSkip
    	for event := inFlightPod.Next(); event != nil; event = event.Next() {
    		e, ok := event.Value.(*clusterEvent)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    When you don’t have access to the source for a custom task class, there is no way to add any of the annotations we covered in the previous section. Fortunately, Gradle provides a runtime API for scenarios just like that. It can also be used for ad-hoc tasks, as you'll see next.
    
    [[sec:runtime_api_for_adhoc]]
    === Declaring inputs and outputs of ad-hoc tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top