Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for badTimer (0.09 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)
Back to top