Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 15s (0.15 sec)

  1. guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java

      public void testParse_whitespaceAllowed() {
        CacheBuilderSpec spec =
            parse(
                " initialCapacity=10,\nmaximumSize=20,\t\r"
                    + "weakKeys \t ,softValues \n , \r  expireAfterWrite \t =  15s\n\n");
        assertEquals(10, spec.initialCapacity.intValue());
        assertEquals(20, spec.maximumSize.intValue());
        assertNull(spec.maximumWeight);
        assertNull(spec.concurrencyLevel);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.2K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/adminlte.min.js

    _parent.find(this._settings.maximizeTrigger+" ."+this._settings.maximizeIcon).addClass(this._settings.minimizeIcon).removeClass(this._settings.maximizeIcon),this._parent.css({height:this._parent.height(),width:this._parent.width(),transition:"all .15s"}).delay(150).queue((function(){t(this).addClass(o.MAXIMIZED),t("html").addClass(o.MAXIMIZED),t(this).hasClass(o.COLLAPSED)&&t(this).addClass(o.WAS_COLLAPSED),t(this).dequeue()}));var e=t.Event(s.MAXIMIZED);this._element.trigger(e,this._parent)},i....
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 23.7K bytes
    - Viewed (3)
  3. android/guava-tests/test/com/google/common/cache/CacheBuilderSpecTest.java

      public void testParse_whitespaceAllowed() {
        CacheBuilderSpec spec =
            parse(
                " initialCapacity=10,\nmaximumSize=20,\t\r"
                    + "weakKeys \t ,softValues \n , \r  expireAfterWrite \t =  15s\n\n");
        assertEquals(10, spec.initialCapacity.intValue());
        assertEquals(20, spec.maximumSize.intValue());
        assertNull(spec.maximumWeight);
        assertNull(spec.concurrencyLevel);
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 19.2K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

          # Enables or disables a startup probe.
          # For optimal startup times, changing this should be tied to the readiness probe values.
          #
          # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
          # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
          # and doesn't spam the readiness endpoint too much
          #
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

          # Enables or disables a startup probe.
          # For optimal startup times, changing this should be tied to the readiness probe values.
          #
          # If the probe is enabled, it is recommended to have delay=0s,period=15s,failureThreshold=4.
          # This ensures the pod is marked ready immediately after the startup probe passes (which has a 1s poll interval),
          # and doesn't spam the readiness endpoint too much
          #
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 22:00:40 GMT 2024
    - 20.3K bytes
    - Viewed (0)
  6. docs/config/README.md

    scanner  manage namespace scanning for usage calculation, lifecycle, healing and more
    
    ARGS:
    delay     (float)     scanner delay multiplier, defaults to '10.0'
    max_wait  (duration)  maximum wait time between operations, defaults to '15s'
    cycle     (duration)  time duration between scanner cycles
    ```
    
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Sep 11 21:48:54 GMT 2023
    - 17.7K bytes
    - Viewed (0)
Back to top