Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for this (0.16 sec)

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

    clearInterval(this._interval)\n    this._interval = null\n  }\n\n  cycle(event) {\n    if (!event) {\n      this._isPaused = false\n    }\n\n    if (this._interval) {\n      clearInterval(this._interval)\n      this._interval = null\n    }\n\n    if (this._config.interval && !this._isPaused) {\n      this._interval = setInterval(\n        (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n        this._config.interval\n      )\n    }\n  }\n\n  to(index) {\n    this._activeElement = ...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 185.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

            return this;
        }
    
        /**
         * Add the created action message for the key 'errors.design_editor_disabled' with parameters.
         * <pre>
         * message: This feature is disabled.
         * </pre>
         * @param property The property name for the message. (NotNull)
         * @return this. (NotNull)
         */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

        void initTable(AtomicReferenceArray<ReferenceEntry<K, V>> newTable) {
          this.threshold = newTable.length() * 3 / 4; // 0.75
          if (!map.customWeigher() && this.threshold == maxSegmentWeight) {
            // prevent spurious expansion before eviction
            this.threshold++;
          }
          this.table = newTable;
        }
    
        @GuardedBy("this")
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    he was speaking, and this Alice thought decidedly uncivil.  `But
    perhaps he can't help it,' she said to herself; `his eyes are so
    VERY nearly at the top of his head.  But at any rate he might
    answer questions.--How am I to get in?' she repeated, aloud.
    
      `I shall sit here,' the Footman remarked, `till tomorrow--'
    
      At this moment the door of the house opened, and a large plate
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    clearInterval(this._interval)\n    this._interval = null\n  }\n\n  cycle(event) {\n    if (!event) {\n      this._isPaused = false\n    }\n\n    if (this._interval) {\n      clearInterval(this._interval)\n      this._interval = null\n    }\n\n    if (this._config.interval && !this._isPaused) {\n      this._interval = setInterval(\n        (document.visibilityState ? this.nextWhenVisible : this.next).bind(this),\n        this._config.interval\n      )\n    }\n  }\n\n  to(index) {\n    this._activeElement = ...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jan 11 06:54:28 GMT 2020
    - 189.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

            ClosingFuture<V5> future5) {
          super(true, ImmutableList.of(future1, future2, future3, future4, future5));
          this.future1 = future1;
          this.future2 = future2;
          this.future3 = future3;
          this.future4 = future4;
          this.future5 = future5;
        }
    
        /**
         * Returns a new {@code ClosingFuture} pipeline step derived from the inputs by applying a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

            readAscii(response.body.byteStream(), Int.MAX_VALUE)
          }
        }
      }
    
      /**
       * This test checks whether connections are gzipped by default. This behavior in not required by
       * the API, so a failure of this test does not imply a bug in the implementation.
       */
      @Test
      fun gzipEncodingEnabledByDefault() {
        server.enqueue(
          MockResponse.Builder()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <description>Default dependency information for projects that inherit from this one. The
                dependencies in this section are not immediately resolved. Instead, when a POM derived
                from this one declares a dependency described by a matching groupId and artifactId, the
                version and other values from this section are used for that dependency if they were not
                already specified.</description>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

        void initTable(AtomicReferenceArray<ReferenceEntry<K, V>> newTable) {
          this.threshold = newTable.length() * 3 / 4; // 0.75
          if (!map.customWeigher() && this.threshold == maxSegmentWeight) {
            // prevent spurious expansion before eviction
            this.threshold++;
          }
          this.table = newTable;
        }
    
        @GuardedBy("this")
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  10. fastapi/routing.py

    ) -> Callable[[WebSocket], Coroutine[Any, Any, Any]]:
        async def app(websocket: WebSocket) -> None:
            async with AsyncExitStack() as async_exit_stack:
                # TODO: remove this scope later, after a few releases
                # This scope fastapi_astack is no longer used by FastAPI, kept for
                # compatibility, just in case
                websocket.scope["fastapi_astack"] = async_exit_stack
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top