Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for nextNode (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/graph/Graphs.java

          }
    
          if (!top.remainingSuccessors.isEmpty()) {
            N nextNode = top.remainingSuccessors.remove();
            if (canTraverseWithoutReusingEdge(graph, nextNode, previousNode)) {
              stack.addLast(new NodeAndRemainingSuccessors<>(nextNode));
              continue;
            }
          }
    
          stack.removeLast();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 24.4K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/RestCompatTestTransformTask.java

    import com.fasterxml.jackson.databind.SequenceWriter;
    import com.fasterxml.jackson.databind.node.NumericNode;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    import com.fasterxml.jackson.databind.node.TextNode;
    import com.fasterxml.jackson.dataformat.yaml.YAMLFactory;
    import com.fasterxml.jackson.dataformat.yaml.YAMLParser;
    
    import org.apache.commons.lang3.tuple.Pair;
    import org.elasticsearch.gradle.Version;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 22.3K bytes
    - Click Count (0)
Back to Top