Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for nextStep (0.26 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformingAsyncArtifactListener.java

                    BoundTransformStep nextStep = transformSteps.get(i);
                    invocation = invocation
                        .flatMap(intermediateResult -> intermediateResult
                            .map(intermediateSubject -> nextStep.getTransformStep()
                                .createInvocation(intermediateSubject, nextStep.getUpstreamDependencies(), null))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/RemoteRepositorySpec.groovy

            @Override
            protected Boolean initialValue() {
                false
            }
        }
    
        final Map<String, GroupSpec> groups = [:].withDefault { new GroupSpec(it) }
    
        void nextStep() {
            groups.clear()
        }
    
        void group(String group, @DelegatesTo(value=GroupSpec, strategy = Closure.DELEGATE_ONLY) Closure<Void> groupSpec) {
            groupSpec.delegate = groups[group]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractModuleDependencyResolveTest.groovy

        }
    
        String getTestConfiguration() { 'conf' }
    
        String getRootProjectName() { 'test' }
    
        void resetExpectations() {
            server.resetExpectations()
            repoSpec.nextStep()
        }
    
        String versionListingURI(String group, String module) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        }
    
        /**
         * Checks whether nextIndex is valid; if so setting nextItem. Stops iterator when either hits
         * putIndex or sees null item.
         */
        private void checkNext() {
          if (nextIndex == putIndex) {
            nextIndex = -1;
            nextItem = null;
          } else {
            nextItem = items[nextIndex];
            if (nextItem == null) nextIndex = -1;
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

        }
    
        /**
         * Checks whether nextIndex is valid; if so setting nextItem. Stops iterator when either hits
         * putIndex or sees null item.
         */
        private void checkNext() {
          if (nextIndex == putIndex) {
            nextIndex = -1;
            nextItem = null;
          } else {
            nextItem = items[nextIndex];
            if (nextItem == null) nextIndex = -1;
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/grappler_test.cc

      TF_ASSERT_OK(cluster->Provision());
    
      TrivialTestGraphInputYielder fake_input(4, 1, 10, false,
                                              cluster->GetDeviceNames());
      GrapplerItem item;
      CHECK(fake_input.NextItem(&item));
    
      TF_Status* status = TF_NewStatus();
      TF_GraphProperties* graph_properties =
          TF_NewGraphProperties(reinterpret_cast<TF_GrapplerItem*>(&item));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. src/text/template/parse/lex.go

    func (l *lexer) errorf(format string, args ...any) stateFn {
    	l.item = item{itemError, l.start, fmt.Sprintf(format, args...), l.startLine}
    	l.start = 0
    	l.pos = 0
    	l.input = l.input[:0]
    	return nil
    }
    
    // nextItem returns the next item from the input.
    // Called by the parser, not in the lexing goroutine.
    func (l *lexer) nextItem() item {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 04 22:36:12 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DfsImpl.java

                        break;
                    }
    
                    // walk up trying to find a match, do not go up to the root
                    int nextSep = link.lastIndexOf('\\');
                    if ( nextSep > 0 ) {
                        link = link.substring(0, nextSep);
                    }
                    else {
                        if ( log.isTraceEnabled() ) {
                            log.trace("Not found " + link);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    // value between sep and end as an integer.
    // If seekBack fails, the returned error will reference what.
    func seekBack(l string, sep byte, end int, what string) (value int, nextSep int, err error) {
    	// Since we're seeking backwards and we know only ASCII is legal for these values,
    	// we can ignore the possibility of non-ASCII characters.
    	for start := end - 1; start >= 0; start-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Iterators.java

          return !queue.isEmpty();
        }
    
        @Override
        @ParametricNullness
        public T next() {
          PeekingIterator<T> nextIter = queue.remove();
          T next = nextIter.next();
          if (nextIter.hasNext()) {
            queue.add(nextIter);
          }
          return next;
        }
      }
    
      private static class ConcatenatedIterator<T extends @Nullable Object> implements Iterator<T> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top