6f5a8d428344e90ae5b58847c8401197ee30cbb1,src/python/pants/backend/jvm/tasks/jvm_compile/jvm_compile.py,JvmCompile,execute_chunk,#JvmCompile#Any#,350

Before Change


    // TODO(stuhood): This mutates the compile_classpath... should clone?
    for conf in self._confs:
      for jar in self.extra_compile_time_classpath_elements():
        compile_classpath.insert(0, (conf, jar))

    // Target -> sources (relative to buildroot), for just this chunk"s targets.
    sources_by_target = self._sources_for_targets(relevant_targets)

After Change


      for conf in self._confs:
        for jar in self.extra_compile_time_classpath_elements():
           yield (conf, jar)
    compile_classpath = OrderedSet(list(extra_compile_classpath_iter()) + list(compile_classpath))

    // Target -> sources (relative to buildroot), for just this chunk"s targets.
    sources_by_target = self._sources_for_targets(relevant_targets)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: pantsbuild/pants
Commit Name: 6f5a8d428344e90ae5b58847c8401197ee30cbb1
Time: 2015-01-12
Author: pl@foursquare.com
File Name: src/python/pants/backend/jvm/tasks/jvm_compile/jvm_compile.py
Class Name: JvmCompile
Method Name: execute_chunk


Project Name: pantsbuild/pants
Commit Name: 7699c5dcdb3cfbb8050581aed2f2eb7a5cc99579
Time: 2014-08-08
Author: garrett.malmquist@gmail.com
File Name: src/python/pants/backend/codegen/tasks/protobuf_gen.py
Class Name: ProtobufGen
Method Name: _calculate_sources


Project Name: pantsbuild/pants
Commit Name: dc6d43f805aa3a15f3296727e1ff2de8ffe49c60
Time: 2015-06-29
Author: stuhood@gmail.com
File Name: src/python/pants/base/build_graph.py
Class Name:
Method Name: sort_targets