Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for firstNode (0.13 sec)

  1. android/guava/src/com/google/common/collect/LinkedListMultimap.java

        Node<K, V> head;
        Node<K, V> tail;
        int count;
    
        KeyList(Node<K, V> firstNode) {
          this.head = firstNode;
          this.tail = firstNode;
          firstNode.previousSibling = null;
          firstNode.nextSibling = null;
          this.count = 1;
        }
      }
    
      @CheckForNull private transient Node<K, V> head; // the head for all keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.2K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

            if (nodes.isEmpty()) {
                return;
            }
    
            Element firstNode = nodes.get(0);
            if (!firstNode.getNodeName().equals("para") || !(firstNode.getFirstChild() instanceof Text)) {
                return;
            }
    
            Text comment = (Text) firstNode.getFirstChild();
            Matcher matcher = ACCESSOR_COMMENT_PATTERN.matcher(comment.getData());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/LinkedListMultimap.java

        Node<K, V> head;
        Node<K, V> tail;
        int count;
    
        KeyList(Node<K, V> firstNode) {
          this.head = firstNode;
          this.tail = firstNode;
          firstNode.previousSibling = null;
          firstNode.nextSibling = null;
          this.count = 1;
        }
      }
    
      @CheckForNull private transient Node<K, V> head; // the head for all keys
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/TreeMultiset.java

            } else {
              return result;
            }
          }
        };
      }
    
      /** Returns the first node in the tree that is in range. */
      @CheckForNull
      private AvlNode<E> firstNode() {
        AvlNode<E> root = rootReference.get();
        if (root == null) {
          return null;
        }
        AvlNode<E> node;
        if (range.hasLowerBound()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/TreeMultiset.java

            } else {
              return result;
            }
          }
        };
      }
    
      /** Returns the first node in the tree that is in range. */
      @CheckForNull
      private AvlNode<E> firstNode() {
        AvlNode<E> root = rootReference.get();
        if (root == null) {
          return null;
        }
        AvlNode<E> node;
        if (range.hasLowerBound()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

            solution { solution ->
                solutionFile.withContent { content ->
                    def sourceControlSection = """
        GlobalSection(SolutionNotes) = postSolution
            NumNotes = 2
            Name1 = FirstNote
            Issue1 = N
            Text1 = This is a shared note.
            Name2 = SecondNote
            Issue2 = N
            Text2 = The projects in this solution are ${projects*.name}.
        EndGlobalSection
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    			}
    			mgr.sourcesReady = &sourcesReadyStub{}
    			mgr.state.SetMachineState(testCase.machineState)
    			mgr.state.SetMemoryAssignments(testCase.assignments)
    			if testCase.firstPod != nil {
    				mgr.containerMap.Add(testCase.firstPod.Name, testCase.firstPod.Spec.Containers[0].Name, "fakeID0")
    			}
    			pod := testCase.podAllocate
    			container := &pod.Spec.Containers[0]
    			err := mgr.Allocate(pod, container)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    	// explicitly AddPod will as well correct the behavior.
    	firstPod.Spec.NodeName = node.Name
    	if err := scache.AddPod(logger, firstPod); err != nil {
    		t.Fatalf("err: %v", err)
    	}
    	if err := scache.RemovePod(logger, firstPod); err != nil {
    		t.Fatalf("err: %v", err)
    	}
    
    	queuedPodStore.Add(secondPod)
    	scheduler.ScheduleOne(ctx)
    	select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	// move all pods to active queue when we were trying to schedule them
    	q.MoveAllToActiveOrBackoffQueue(logger, WildCardEvent, nil, nil, nil)
    	oldCycle := q.SchedulingCycle()
    
    	firstPod, _ := q.Pop(logger)
    	if diff := cmp.Diff(&expectedPods[0], firstPod.Pod); diff != "" {
    		t.Errorf("Unexpected pod (-want, +got):\n%s", diff)
    	}
    
    	// mark pods[1] ~ pods[totalNum-1] as unschedulable and add them back
    	for i := 1; i < totalNum; i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    		}}),
    		"may not be removed",
    	}, {
    		"Replace an Ephemeral Container",
    		makePod([]core.EphemeralContainer{{
    			EphemeralContainerCommon: core.EphemeralContainerCommon{
    				Name:                     "firstone",
    				Image:                    "busybox",
    				ImagePullPolicy:          "IfNotPresent",
    				TerminationMessagePolicy: "File",
    			},
    		}}),
    		makePod([]core.EphemeralContainer{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top