- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,279 for Clements (0.18 sec)
-
src/mdo/java/ImmutableCollections.java
Java - Registered: 2023-11-05 03:35 - Last Modified: 2023-06-02 11:58 - 16.6K bytes - Viewed (0) -
docs/sts/client_grants/sts_element.py
class STSElement(object): """STS aware XML parsing class. Wraps a root element name and cElementTree.Element instance. Provides STS namespace aware parsing functions. """ def __init__(self, root_name, element): self.root_name = root_name self.element = element @classmethod def fromstring(cls, root_name, data):
Python - Registered: 2023-11-26 19:28 - Last Modified: 2021-04-23 18:58 - 2.5K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nexport default function findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to...
Plain Text - Registered: 2023-11-27 08:04 - Last Modified: 2020-02-07 10:28 - 121K bytes - Viewed (1) -
guava-tests/test/com/google/common/collect/ImmutableMultisetTest.java
return false; } List<TypeWithDuplicates> elements1 = ImmutableList.copyOf(ms1.elementSet()); List<TypeWithDuplicates> elements2 = ImmutableList.copyOf(ms2.elementSet()); for (int i = 0; i < ms1.elementSet().size(); i++) { if (!elements1.get(i).fullEquals(elements2.get(i))) { return false; } }
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-10-25 20:35 - 24.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/EnumMultiset.java
* Creates a new {@code EnumMultiset} containing the specified elements. * * <p>This implementation is highly efficient when {@code elements} is itself a {@link Multiset}. * * @param elements the elements that the multiset should contain * @throws IllegalArgumentException if {@code elements} is empty */ public static <E extends Enum<E>> EnumMultiset<E> create(Iterable<E> elements) { Iterator<E> iterator = elements.iterator();
Java - Registered: 2023-11-24 12:43 - Last Modified: 2023-08-24 01:40 - 9.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ObjectArrays.java
/** * Returns a new array that prepends {@code element} to {@code array}. * * @param element the element to prepend to the front of {@code array} * @param array the array of elements to append * @return an array whose size is one larger than {@code array}, with {@code element} occupying * the first position, and the elements of {@code array} occupying the remaining elements. */
Java - Registered: 2023-11-03 12:43 - Last Modified: 2023-06-12 15:59 - 9K bytes - Viewed (0) -
guava/src/com/google/common/collect/RegularImmutableSortedSet.java
public E floor(E element) { int index = headIndex(element, true) - 1; return (index == -1) ? null : elements.get(index); } @Override @CheckForNull public E ceiling(E element) { int index = tailIndex(element, true); return (index == size()) ? null : elements.get(index); } @Override @CheckForNull public E higher(E element) { int index = tailIndex(element, false);
Java - Registered: 2023-11-03 12:43 - Last Modified: 2022-02-10 20:36 - 8.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MinMaxPriorityQueueTest.java
for (int i = 0; i < 100; i++) { Element element = Element.values()[random.nextInt(range)]; elements.add(element); queue.add(element); } Iterator<Element> queueIterator = queue.iterator(); int remaining = queue.size(); while (queueIterator.hasNext()) { Element element = queueIterator.next(); remaining--;
Java - Registered: 2023-12-01 12:43 - Last Modified: 2022-10-10 19:45 - 35K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* elements FIFO (first-in-first-out). The head of the queue is that element that has been * on the queue the longest time. The tail of the queue is that element that has been on * the queue the shortest time. New elements are inserted at the tail of the queue, and the queue * retrieval operations obtain elements at the head of the queue. *
Java - Registered: 2023-12-01 12:43 - Last Modified: 2023-04-19 19:24 - 22.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/MinMaxPriorityQueue.java
} /** * Adds the given element to this queue. If this queue has a maximum size, after adding {@code * element} the queue will automatically evict its greatest element (according to its comparator), * which may be {@code element} itself. * * @return {@code true} always */ @CanIgnoreReturnValue @Override public boolean add(E element) { offer(element); return true; }
Java - Registered: 2023-11-03 12:43 - Last Modified: 2023-10-13 14:11 - 33.9K bytes - Viewed (0)