- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 681 for delete (0.04 sec)
-
bootstrap.min.js
.hide())},e._isWithActiveTrigger=function(){for(var t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1},e._getConfig=function(t){var e=o.default(this.element).data();return Object.keys(e).forEach((function(t){-1!==Pt.indexOf(t)&&delete e[t]})),"number"==typeof(t=r({},this.constructor.Default,e,"object"==typeof t&&t?t:{})).delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString(...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 61.1K bytes -
CompactHashSet.java
} L588: L589: @Override L590: public int size() { L591: Set<E> delegate = delegateOrNull(); L592: return (delegate != null) ? delegate.size() : size; L593: } L594: L595: @Override L596: public boolean isEmpty() { L597: return size() == 0; L598: } L599: L600: @Override L601: public @Nullable Object[] toArray() { L602: if (needsAllocArrays()) { L603: return new Object[0]; L604: } L605: Set<E> delegate = delegateOrNull(); L606: return (delegate != null) ? delegate.toArray()...github.com/google/guava/android/guava/src/com/g...Fri Oct 18 20:24:49 UTC 2024 24K bytes -
CompactHashSet.java
Spliterator.DISTINCT | Spliterator.ORDERED); L597: } L598: Set<E> delegate = delegateOrNull(); L599: return (delegate != null) L600: ? delegate.spliterator() L601: : Spliterators.spliterator( L602: requireElements(), 0, size, Spliterator.DISTINCT | Spliterator.ORDERED); L603: } L604: L605: @Override L606: public void forEach(Consumer<? super E> action) { L607: checkNotNull(action); L608: Set<E> delegate = delegateOrNull(); L609: if (delegate != null) { L610: ...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 20:24:49 UTC 2024 24.9K bytes -
TreeMultiset.java
L868: result[0] = elemCount; L869: if (expectedCount == elemCount) { L870: if (newCount == 0) { L871: return deleteMe(); L872: } L873: this.totalCount += newCount - elemCount; L874: this.elemCount = newCount; L875: } L876: return this; L877: } L878: L879: @CheckForNull L880: private AvlNode<E> deleteMe() { L881: int oldElemCount = this.elemCount; L882: this.elemCount = 0; L883: successor(pred(), succ()); L884: if...github.com/google/guava/android/guava/src/com/g...Fri Oct 18 20:24:49 UTC 2024 34.1K bytes -
TreeMultiset.java
L880: result[0] = elemCount; L881: if (expectedCount == elemCount) { L882: if (newCount == 0) { L883: return deleteMe(); L884: } L885: this.totalCount += newCount - elemCount; L886: this.elemCount = newCount; L887: } L888: return this; L889: } L890: L891: @CheckForNull L892: private AvlNode<E> deleteMe() { L893: int oldElemCount = this.elemCount; L894: this.elemCount = 0; L895: successor(pred(), succ()); L896: if...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 20:24:49 UTC 2024 34.5K bytes -
bootstrap.min.js.map
isPrevDirection && activeIndex === 0 ||\n isNextDirection && activeIndex === lastItemIndex\n\n if (isGoingToWrap && !this._config.wrap) {\n return activeElement\n }\n\n const delta = direction === DIRECTION_PREV ? -1 : 1\n const itemIndex = (activeIndex + delta) % this._items.length\n\n return itemIndex === -1 ?\n this._items[this._items.length - 1] : this._items[itemIndex]\n }\n\n _triggerSlideEvent(relatedTarget, eventDirectionName) {\n const targetIndex...github.com/codelibs/fess/src/main/webapp/js/adm...Sat Oct 26 01:49:09 UTC 2024 180.9K bytes -
Synchronized.java
Synchronized() {} L82: L83: static class SynchronizedObject implements Serializable { L84: final Object delegate; L85: final Object mutex; L86: L87: SynchronizedObject(Object delegate, @CheckForNull Object mutex) { L88: this.delegate = checkNotNull(delegate); L89: this.mutex = (mutex == null) ? this : mutex; L90: } L91: L92: Object delegate() { L93: return delegate; L94: } L95: L96: // No equals and hashCode; see ForwardingObject for details. L97: L98: @Override...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 16:15:19 UTC 2024 57.2K bytes -
Synchronized.java
Synchronized() {} L73: L74: static class SynchronizedObject implements Serializable { L75: final Object delegate; L76: final Object mutex; L77: L78: SynchronizedObject(Object delegate, @CheckForNull Object mutex) { L79: this.delegate = checkNotNull(delegate); L80: this.mutex = (mutex == null) ? this : mutex; L81: } L82: L83: Object delegate() { L84: return delegate; L85: } L86: L87: // No equals and hashCode; see ForwardingObject for details. L88: L89: @Override...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 16:15:19 UTC 2024 53.4K bytes -
SafeTreeMap.java
L66: this(new TreeMap<K, V>(map)); L67: } L68: L69: private SafeTreeMap(NavigableMap<K, V> delegate) { L70: this.delegate = delegate; L71: if (delegate == null) { L72: throw new NullPointerException(); L73: } L74: for (K k : keySet()) { L75: checkValid(k); L76: } L77: } L78: L79: @Override L80: public @Nullable Entry<K, V> ceilingEntry(K key) { L81: return delegate.ceilingEntry(checkValid(key)); L82: } L83: L84: @Override L85: public @Nullable K ceilingKey(K...github.com/google/guava/android/guava-testlib/s...Tue Feb 20 17:00:05 UTC 2024 7.5K bytes -
ForwardingNetwork.java
{ L62: return delegate().nodeOrder(); L63: } L64: L65: @Override L66: public ElementOrder<E> edgeOrder() { L67: return delegate().edgeOrder(); L68: } L69: L70: @Override L71: public Set<N> adjacentNodes(N node) { L72: return delegate().adjacentNodes(node); L73: } L74: L75: @Override L76: public Set<N> predecessors(N node) { L77: return delegate().predecessors(node); L78: } L79: L80: @Override L81: public Set<N> successors(N node) { L82: return delegate().successors(node);...github.com/google/guava/guava/src/com/google/co...Mon Apr 26 17:43:39 UTC 2021 3.7K bytes