Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for delay (0.08 sec)

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

    ttr]\n        }\n      })\n\n    config = {\n      ...this.constructor.Default,\n      ...dataAttributes,\n      ...typeof config === 'object' && config ? config : {}\n    }\n\n    if (typeof config.delay === 'number') {\n      config.delay = {\n        show: config.delay,\n        hide: config.delay\n      }\n    }\n\n    if (typeof config.title === 'number') {\n      config.title = config.title.toString()\n    }\n\n    if (typeof config.content === 'number') {\n      config.content = config.content.toString()\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  2. src/main/webapp/js/bootstrap.min.js.map

    ttr]\n        }\n      })\n\n    config = {\n      ...this.constructor.Default,\n      ...dataAttributes,\n      ...typeof config === 'object' && config ? config : {}\n    }\n\n    if (typeof config.delay === 'number') {\n      config.delay = {\n        show: config.delay,\n        hide: config.delay\n      }\n    }\n\n    if (typeof config.title === 'number') {\n      config.title = config.title.toString()\n    }\n\n    if (typeof config.content === 'number') {\n      config.content = config.content.toString()\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    			throw("findrunnable: netpoll with spinning")
    		}
    		delay := int64(-1)
    		if pollUntil != 0 {
    			if now == 0 {
    				now = nanotime()
    			}
    			delay = pollUntil - now
    			if delay < 0 {
    				delay = 0
    			}
    		}
    		if faketime != 0 {
    			// When using fake time, just poll.
    			delay = 0
    		}
    		list, delta := netpoll(delay) // block until new work is available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    			if initialDelay <= 0 {
    				t.Fatal("Initial delay is expected to be set.")
    			}
    
    			resetCounters(manager)
    
    			// Immediate (second) sync gets limited by the backoff
    			expectSyncDaemonSets(t, manager, ds, podControl, 0, 0, 0)
    			delay := manager.failedPodsBackoff.Get(backoffKey)
    			if delay != initialDelay {
    				t.Fatal("Backoff delay shouldn't be raised while waiting.")
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	}
    	return nil
    }
    
    func validateHTTPFaultInjectionDelay(delay *networking.HTTPFaultInjection_Delay) (errs error) {
    	if delay == nil {
    		return
    	}
    
    	errs = appendErrors(errs, validatePercentage(delay.Percentage))
    
    	switch v := delay.HttpDelayType.(type) {
    	case *networking.HTTPFaultInjection_Delay_FixedDelay:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal_test.go

    				{5, now},
    				{3, now},
    			},
    			scaleDownStabilizationWindowSeconds: 3 * 60,
    		},
    		{
    			// we can reuse only the first recommendation element
    			// as the scale up delay = 150 (set in test), scale down delay = 300 (by default)
    			// hence, only the first recommendation is obsolete for both scale up and scale down
    			name: "scale up stabilization, reuse one of obsolete recommendation element",
    			key:  "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    properties: value: format: double type: number type: object type: object delay: description: Delay requests before forwarding, emulating various failures such as network issues, overloaded upstream service, etc. oneOf: - not: anyOf: - required: - fixedDelay - required: - exponentialDelay - required: - fixedDelay - required: - exponentialDelay properties: exponentialDelay: type: string fixedDelay: description: Add a fixed delay before forwarding the request. type: string percent: description: Percentage...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    						return 0, errors.New("error")
    					},
    				}, nil
    			}
    		},
    	).ts
    	// Set a short delay in RoundTrip to give the persistConn time to notice
    	// the connection is broken. We want to exercise the path where writeLoop exits
    	// before it reads the request to send. If this delay is too short, we may instead
    	// exercise the path where writeLoop accepts the request and then fails to write it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

        sink.writeUtf8(data)
        sink.close()
        return result
      }
    
      private fun cancelLater(
        call: Call,
        delay: Long,
      ): Thread {
        val thread =
          object : Thread("canceler") {
            override fun run() {
              try {
                sleep(delay)
              } catch (e: InterruptedException) {
                throw AssertionError()
              }
              call.cancel()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    nent(this.$el.hash)).substr(1)))}}},mr={args:"cls",props:{cls:String,target:String,hidden:Boolean,offsetTop:Number,offsetLeft:Number,repeat:Boolean,delay:Number},data:function(){return{cls:!1,target:!1,hidden:!0,offsetTop:0,offsetLeft:0,repeat:!1,delay:0,inViewClass:"uk-scrollspy-inview"}},computed:{elements:{get:function(t,e){var i=t.target;return i?Ne(i,e):[e]},watch:function(t){this.hidden&&Ve(qt(t,":not(."+this.inViewClass+")"),"visibility","hidden")},immediate:!0}},update:[{read:function(t){var...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
Back to top