15daec957b184533346c80ea126dc7ece585821a,nucleus/pip_package/setup.py,,main,#,60
Before Change
if not egg_srcs:
print("Could not find source .egg-info directory")
sys.exit(1)
egg_src = egg_srcs[0]
egg_dir = "google_nucleus.egg-info"
if len(args) > 1 and args[0] == "--egg-base":
egg_dir = os.path.join(args[1], egg_dir)
After Change
os.system("cp -R -v google nucleus " + destination
+ " | awk "{print substr($3,2,length($3)-2)}" > " + record_file)
// Append the .egg-info directory (must include trailing "/") to the record.
dest_egg_dir = os.path.join(destination, _EGG_DIR_BASENAME) + "/"
os.system("echo " + dest_egg_dir + " >> " + record_file)
// End by copying the .egg-info directory to the destination.
sys.exit(copy_egg_info(dest_egg_dir))
elif cmd == "bdist_wheel":
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 4
Instances
Project Name: google/nucleus
Commit Name: 15daec957b184533346c80ea126dc7ece585821a
Time: 2020-08-13
Author: cym@google.com
File Name: nucleus/pip_package/setup.py
Class Name:
Method Name: main
Project Name: Microsoft/MMdnn
Commit Name: fdeeaff5e452e257bf3a3dd76e25c81304cc4c98
Time: 2020-03-15
Author: linmajia@users.noreply.github.com
File Name: mmdnn/conversion/examples/tensorflow/vis_meta.py
Class Name:
Method Name: _main
Project Name: kubeflow/kubeflow
Commit Name: 99c94d88c96c2b0a45bbbef4c8a126fa018ce513
Time: 2018-10-11
Author: 37601826+kunmingg@users.noreply.github.com
File Name: bootstrap/build.py
Class Name:
Method Name: main