75a053cd12ec210c70e5140289e2106434e60d62,w3af/core/controllers/core_helpers/status.py,CoreStatus,calculate_eta,#CoreStatus#,338

Before Change


                    queue_size,
                    adjustment_ratio)

            om.out.debug(msg % args)

            return None

        if input_speed >= output_speed:

After Change


        if adjustment is None:
            adjustment = Adjustment(known=1.0, unknown=1.0)

        if output_speed == 0 and input_speed == 0:
            // The consumer has finished
            eta = 0.0

            self.log_calculate_eta(eta, input_speed, output_speed, queue_size,
                                   _type, adjustment, average)

            return eta

        if output_speed == 0 and input_speed != 0:
            // The output speed is zero, this is a very strange case... it will
            // be impossible to calculate the ETA, just remove "I"ll be there
            // in 5 minutes" (just like the pizza delivery when you call them
            // because you"re hungry)
            //
            // The next time the code calls calculate_eta() the output_speed
            // will (most likely) be different from zero and it will be possible
            // to calculate a real ETA
            eta = 5 * 60.0

            self.log_calculate_eta(eta, input_speed, output_speed, queue_size,
                                   _type, adjustment, average)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 4

Instances


Project Name: andresriancho/w3af
Commit Name: 75a053cd12ec210c70e5140289e2106434e60d62
Time: 2018-07-23
Author: andres.riancho@gmail.com
File Name: w3af/core/controllers/core_helpers/status.py
Class Name: CoreStatus
Method Name: calculate_eta


Project Name: KrishnaswamyLab/PHATE
Commit Name: e5a98adc53c682047bd6873c127c9c94588b28ab
Time: 2019-12-01
Author: scottgigante@gmail.com
File Name: Python/phate/mds.py
Class Name:
Method Name: embed_MDS


Project Name: pyinstaller/pyinstaller
Commit Name: 5e357b6dbb7ce3fcb945cd88b45156115e51faf7
Time: 2019-08-15
Author: h.goebel@crazy-compilers.com
File Name: PyInstaller/depend/analysis.py
Class Name: PyiModuleGraph
Method Name: add_hiddenimports


Project Name: automl/ParameterImportance
Commit Name: 5642a433101c10200ce6bb73358ae236f367750a
Time: 2019-04-22
Author: jo.ma@posteo.de
File Name: pimp/evaluator/local_parameter_importance.py
Class Name: LPI
Method Name: run