Jiewen Mao

Results 3 issues of Jiewen Mao

The code of function `firstPacket` of class `BasicFlow` is shown as follows: ```java public void firstPacket(BasicPacketInfo packet) { updateFlowBulk(packet); detectUpdateSubflows(packet); checkFlags(packet); this.flowStartTime = packet.getTimeStamp(); this.flowLastSeen = packet.getTimeStamp(); this.startActiveTime = packet.getTimeStamp();...

Test code: ```python from eliot import log_call, to_file to_file(open('log.log', 'w')) @log_call(action_type='CALC', include_args=['x'], include_result=True) def calculate(x, y): return x * y x = 2 y = 10 result = calculate(x, y)...

I used the Table.bar() function but no any figure was showed. My code is edited not only in PyCharm but also in ipython, neither of them work. How can I...