Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for childEvents (1.44 sec)

  1. src/internal/trace/traceviewer/static/trace_viewer_full.html

    this.guid_;},get stableId(){throw new Error('Not implemented');},get bounds(){return this.bounds_;},updateBounds(){throw new Error('Not implemented');},shiftTimestampsForward(amount){throw new Error('Not implemented');},*childEvents(){},*getDescendantEvents(){yield*this.childEvents();for(const container of this.childEventContainers()){yield*container.getDescendantEvents();}},*childEventContainers(){},*getDescendantEventContainers(){yield this;for(const container of this.childEventContainers()){yie...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            _ * childBuildDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalOperationStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childBuildDescriptor
    
            adapter.onEvent(childEvent)
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            _ * childTestDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalTestStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childTestDescriptor
    
            adapter.onEvent(childEvent)
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            _ * childTaskDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalOperationStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childTaskDescriptor
    
            adapter.onEvent(childEvent)
    
            then:
            thrown(IllegalStateException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
Back to top