Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for badTimer (0.1 sec)

  1. src/runtime/time.go

    // in the heap by moving it up toward the top of the heap.
    func (ts *timers) siftUp(i int) {
    	heap := ts.heap
    	if i >= len(heap) {
    		badTimer()
    	}
    	tw := heap[i]
    	when := tw.when
    	if when <= 0 {
    		badTimer()
    	}
    	for i > 0 {
    		p := int(uint(i-1) / timerHeapN) // parent
    		if when >= heap[p].when {
    			break
    		}
    		heap[i] = heap[p]
    		i = p
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    @TaskAction void execute() {}
                }
            """
    
            expect:
            assertValidationFailsWith([
                error(missingAnnotationConfig { type('MyTask').property('badTime').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
                error(missingAnnotationConfig { type('MyTask').property('oldThing').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

    onCSS),b.preventDefault(),!1}}}).unbind("blur.suggest").bind("blur.suggest",function(){h(a(this))}),b},LANG:{errorTitle:"Form submission failed!",requiredField:"This is a required field",requiredFields:"You have not answered all required fields",badTime:"You have not given a correct time",badEmail:"You have not given a correct e-mail address",badTelephone:"You have not given a correct phone number",badSecurityAnswer:"You have not given a correct answer to the security question",badDate:"You have...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
Back to top