Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for nextB (0.06 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            addToContainer(a)
            addToContainer(c)
    
            expect:
            def seen = []
            def iterator = container.iterator()
            seen << iterator.next()
            seen << iterator.next()
            seen << iterator.next()
            !iterator.hasNext()
            seen == iterationOrder(b, a, c)
        }
    
        def "provider for element is queried when elements iterated and insertion order is retained"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    						st.fail("destructor before name is seen")
    					}
    					st.advance(2)
    					next = &Destructor{Name: getLast(last)}
    					if len(st.str) > 0 && st.str[0] == 'B' {
    						next = st.taggedName(next)
    					}
    				}
    			case 'S':
    				next = st.substitution(true)
    				if mn, ok := next.(*ModuleName); ok {
    					module = mn
    					next = nil
    				}
    			case 'I':
    				if a == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            def it = file('dest/two.a').readLines().iterator()
            it.next().startsWith('6')
            it.next().startsWith('11')
            it.next().startsWith('16')
        }
    
        def "can rename files in eachFile() action defined using Groovy closure"() {
            given:
            file('files/a.txt').createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Sets.java

              @Override
              @CheckForNull
              protected E computeNext() {
                if (itr1.hasNext()) {
                  return itr1.next();
                }
                while (itr2.hasNext()) {
                  E e = itr2.next();
                  if (!set1.contains(e)) {
                    return e;
                  }
                }
                return endOfData();
              }
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  5. src/runtime/traceback.go

    	// Implementation note: This starts the iterator on the first frame and we
    	// provide a "valid" method. Alternatively, this could start in a "before
    	// the first frame" state and "next" could return whether it was able to
    	// move to the next frame, but that's both more awkward to use in a "for"
    	// loop and is harder to implement because we have to do things differently
    	// for the first frame.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("c", "c1", "c2")
        val iterator = cache.snapshots()
        assertThat(iterator.hasNext()).isTrue()
        iterator.next().use {
          assertThat(it.key()).isEqualTo("a")
          it.assertValue(0, "a1")
          it.assertValue(1, "a2")
        }
        assertThat(iterator.hasNext()).isTrue()
        iterator.next().use {
          assertThat(it.key()).isEqualTo("b")
          it.assertValue(0, "b1")
          it.assertValue(1, "b2")
        }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    		// Load next entry to put down (if any).
    		if x > 0 {
    			x--
    			saX = sa[x] // TODO bounds check
    			c = text[saX]
    			b = bucket[c] - 1
    			bucket[c] = b
    		}
    	}
    }
    
    func expand_64(text []int64, freq, bucket, sa []int64, numLMS int) {
    	bucketMax_64(text, freq, bucket)
    
    	// Loop backward through sa, always tracking
    	// the next index to populate from sa[:numLMS].
    	// When we get to one, populate it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/types2/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: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
Back to top