Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for element (0.24 sec)

  1. src/main/webapp/js/bootstrap.min.js.map

    const closeEvent = $.Event(Event.CLOSE)\n\n    $(element).trigger(closeEvent)\n    return closeEvent\n  }\n\n  _removeElement(element) {\n    $(element).removeClass(ClassName.SHOW)\n\n    if (!$(element).hasClass(ClassName.FADE)) {\n      this._destroyElement(element)\n      return\n    }\n\n    const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n    $(element)\n      .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n      .emulateTransitionEnd(transitionDuration)\n...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  2. 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: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  3. src/main/webapp/js/admin/bootstrap.min.js.map

    const closeEvent = $.Event(Event.CLOSE)\n\n    $(element).trigger(closeEvent)\n    return closeEvent\n  }\n\n  _removeElement(element) {\n    $(element).removeClass(ClassName.SHOW)\n\n    if (!$(element).hasClass(ClassName.FADE)) {\n      this._destroyElement(element)\n      return\n    }\n\n    const transitionDuration = Util.getTransitionDurationFromElement(element)\n\n    $(element)\n      .one(Util.TRANSITION_END, (event) => this._destroyElement(element, event))\n      .emulateTransitionEnd(transitionDuration)\n...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 185.8K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

                <p>By default, every element content is trimmed, but starting with Maven 3.1.0, you can add
                {@code xml:space="preserve"} to elements you want to preserve whitespace.</p>
                <p>You can control how child POMs inherit configuration from parent POMs by adding {@code combine.children}
                or {@code combine.self} attributes to the children of the configuration element:</p>
                <ul>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 26 17:04:44 GMT 2024
    - 115.5K bytes
    - Viewed (0)
  5. doc/go1.17_spec.html

    	</li>
    	<li>An element list that does not contain any keys must
    	    list an element for each struct field in the
    	    order in which the fields are declared.
    	</li>
    	<li>If any element has a key, every element must have a key.
    	</li>
    	<li>An element list that contains keys does not need to
    	    have an element for each struct field. Omitted fields
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  6. okhttp-android/src/main/baseline-prof.txt

    HSPLkotlin/coroutines/CoroutineContext$Element$DefaultImpls;->fold(Lkotlin/coroutines/CoroutineContext$Element;Ljava/lang/Object;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object;
    HSPLkotlin/coroutines/CoroutineContext$Element$DefaultImpls;->get(Lkotlin/coroutines/CoroutineContext$Element;Lkotlin/coroutines/CoroutineContext$Key;)Lkotlin/coroutines/CoroutineContext$Element;
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

          public NavigableSet<E> headSet(@ParametricNullness E toElement, boolean inclusive) {
            return removeOnlyNavigableSet(super.headSet(toElement, inclusive));
          }
    
          @Override
          public SortedSet<E> subSet(
              @ParametricNullness E fromElement, @ParametricNullness E toElement) {
            return removeOnlySortedSet(super.subSet(fromElement, toElement));
          }
    
          @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

        }
        add(FirErrors.ASSIGNING_SINGLE_ELEMENT_TO_VARARG_IN_NAMED_FORM_FUNCTION.errorFactory) { firDiagnostic ->
            AssigningSingleElementToVarargInNamedFormFunctionErrorImpl(
                firSymbolBuilder.typeBuilder.buildKtType(firDiagnostic.a),
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static Predicate<StackTraceElement> hasClassName(final Class<?> clazz) {
        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
      }
    
      private static final class CallerClass1 {
        static ListenableFuture<String> makeImmediateCancelledFuture() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

      private static Predicate<StackTraceElement> hasClassName(final Class<?> clazz) {
        return new Predicate<StackTraceElement>() {
          @Override
          public boolean apply(StackTraceElement element) {
            return element.getClassName().equals(clazz.getName());
          }
        };
      }
    
      private static final class CallerClass1 {
        static ListenableFuture<String> makeImmediateCancelledFuture() {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
Back to top