Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for noppad (0.24 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    // to be popped off, watchCache::startIndex is incremented. In
    // this case, an interval tracking that popped event is valid
    // only if it has already been copied to its internal buffer.
    // However, for efficiency we perform that lazily and we mark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultInstrumentedGroovyCallsTrackerTest.groovy

            then:
            thrown(IllegalStateException)
            instance.leaveCall(entryBar)
            instance.leaveCall(entryFoo)
    
            where:
            entryPointKind                 | index
            "has already been popped"      | 0
            "is still deeper in the stack" | 1
        }
    
        def 'throws an exception on instance.markCurrentCallAsIntercepted if its #part does not match'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:59 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformUserGuideIntegrationTest.groovy

            @Test
            @DisplayName("is empty")
            void isEmpty() {
                assertTrue(stack.isEmpty());
            }
    
            @Test
            @DisplayName("throws EmptyStackException when popped")
            void throwsExceptionWhenPopped() {
                assertThrows(EmptyStackException.class, () -> stack.pop());
            }
    
            @Nested
            @DisplayName("after pushing an element")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/map.go

    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    		{nil, nil},                  // af
    		{aztrUpper(upper), isUpper}, // az
    		{elUpper, noSpan},           // el
    		{ltUpper(upper), noSpan},    // lt
    		{nil, nil},                  // nl
    		{aztrUpper(upper), isUpper}, // tr
    	}
    
    	undUpper            transform.SpanningTransformer = &undUpperCaser{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/heap/heap_test.go

    		// Retrieve head without removing it
    		head := h.Peek()
    		if e, a := i, head.(testHeapObject).val; a != e {
    			t.Errorf("expected %d, got %d", e, a)
    		}
    	}
    
    	// Make sure that the numbers are popped in ascending order.
    	prevNum := 0
    	for i := 0; i < amount; i++ {
    		obj, err := h.Pop()
    		num := obj.(testHeapObject).val.(int)
    		// All the items must be sorted.
    		if err != nil || prevNum > num {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/go/ast/commentmap.go

    	s.pop(n.Pos())
    	*s = append((*s), n)
    }
    
    // pop pops all nodes that appear lexically before pos
    // (i.e., whose lexical extent has ended before or at pos).
    // It returns the last node popped.
    func (s *nodeStack) pop(pos token.Pos) (top Node) {
    	i := len(*s)
    	for i > 0 && (*s)[i-1].End() <= pos {
    		top = (*s)[i-1]
    		i--
    	}
    	*s = (*s)[0:i]
    	return top
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue.go

    	// are popped from this heap before the scheduler looks at activeQ
    	podBackoffQ *heap.Heap
    	// unschedulablePods holds pods that have been tried and determined unschedulable.
    	unschedulablePods *UnschedulablePods
    	// schedulingCycle represents sequence number of scheduling cycle and is incremented
    	// when a pod is popped.
    	schedulingCycle int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  8. src/runtime/mgcstack.go

    // will not keep heap objects live. Unlike the main garbage
    // collection, we can't sweep the dead stack objects; they live on in
    // a moribund state until the stack frame that contains them is
    // popped.
    //
    // A stack can look like this:
    //
    // +----------+
    // | foo()    |
    // | +------+ |
    // | |  A   | | <---\
    // | +------+ |     |
    // |          |     |
    // | +------+ |     |
    // | |  B   | |     |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. pkg/api/pod/util_test.go

    		Spec: api.PodSpec{
    			Containers:          []api.Container{{}},
    			InitContainers:      []api.Container{{}},
    			EphemeralContainers: []api.EphemeralContainer{{}},
    		},
    	}
    
    	var noPod *api.Pod
    
    	testcases := []struct {
    		description string
    		enabled     bool
    		oldPod      *api.Pod
    		newPod      *api.Pod
    		wantPod     *api.Pod
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  10. src/encoding/base32/base32.go

    	case 1:
    		val |= uint32(src[si+0]) << 24
    		dst[di+1] = enc.encode[val>>22&0x1F]
    		dst[di+0] = enc.encode[val>>27&0x1F]
    	}
    
    	// Pad the final quantum
    	if enc.padChar != NoPadding {
    		nPad := (remain * 8 / 5) + 1
    		for i := nPad; i < 8; i++ {
    			dst[di+i] = byte(enc.padChar)
    		}
    	}
    }
    
    // AppendEncode appends the base32 encoded src to dst
    // and returns the extended buffer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top