Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 41 for nextB (0.41 sec)

  1. src/reflect/type.go

    	// The current and next slices are work queues:
    	// current lists the fields to visit on this depth level,
    	// and next lists the fields on the next lower level.
    	current := []fieldScan{}
    	next := []fieldScan{{typ: t}}
    
    	// nextCount records the number of times an embedded type has been
    	// encountered and considered for queueing in the 'next' slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // index of next init container to start, or done if there are no further init containers.
    // Status is only returned if an init container is failed, in which case next will
    // point to the current container.
    func findNextInitContainerToRun(pod *v1.Pod, podStatus *kubecontainer.PodStatus) (status *kubecontainer.Status, next *v1.Container, done bool) {
    	if len(pod.Spec.InitContainers) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

                Consumer<ProviderInternal<?>> consumer
            ) {
                given:
                def property = property()
                Provider<T> item = property.map { list -> list.iterator().next() }
                property.add(item)
    
                when:
                consumer.accept(property)
    
                then:
                thrown(EvaluationContext.CircularEvaluationException)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				status.ContainerStatuses[2].State = kubecontainer.ContainerStateCreated
    			},
    			actions: noAction,
    		},
    		"restartable init container has started; start the next": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				status.ContainerStatuses = status.ContainerStatuses[:1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    		}
    		pi, err := pool.PutObjectPart(ctx, bucket, object, uploadID, partID, data, opts)
    		if err == nil {
    			return pi, nil
    		}
    		if _, ok := err.(InvalidUploadID); ok {
    			// Look for information on the next pool
    			continue
    		}
    		// Any other unhandled errors such as quorum return.
    		return PartInfo{}, err
    	}
    
    	return PartInfo{}, InvalidUploadID{
    		Bucket:   bucket,
    		Object:   object,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. src/runtime/map.go

    	}
    	if h.flags&hashWriting != 0 {
    		fatal("concurrent map iteration and map write")
    	}
    	t := it.t
    	bucket := it.bucket
    	b := it.bptr
    	i := it.i
    	checkBucket := it.checkBucket
    
    next:
    	if b == nil {
    		if bucket == it.startBucket && it.wrapped {
    			// end of iteration
    			it.key = nil
    			it.elem = nil
    			return
    		}
    		if h.growing() && it.B == h.B {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_client_test.go

    	o.all = append(o.all, data...)
    
    	for {
    		line, next, ok := bytes.Cut(o.line, []byte("\n"))
    		if !ok {
    			break
    		}
    
    		if bytes.Equal([]byte(opensslEndOfHandshake), line) {
    			o.handshakeComplete <- struct{}{}
    		}
    		if bytes.Equal([]byte(opensslReadKeyUpdate), line) {
    			o.readKeyUpdate <- struct{}{}
    		}
    		o.line = next
    	}
    
    	return len(data), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
Back to top