Loading cmd/multiproduct_kati/main.go +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ func main() { jobs = runtime.NumCPU() / 4 ramGb := int(detectTotalRAM() / (1024 * 1024 * 1024)) if ramJobs := ramGb / 25; ramGb > 0 && jobs > ramJobs { if ramJobs := ramGb / 30; ramGb > 0 && jobs > ramJobs { jobs = ramJobs } Loading java/proto.go +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ import ( func genProto(ctx android.ModuleContext, protoFiles android.Paths, flags android.ProtoFlags) android.Paths { // Shard proto files into groups of 100 to avoid having to recompile all of them if one changes and to avoid // hitting command line length limits. shards := android.ShardPaths(protoFiles, 100) shards := android.ShardPaths(protoFiles, 50) srcJarFiles := make(android.Paths, 0, len(shards)) Loading Loading
cmd/multiproduct_kati/main.go +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ func main() { jobs = runtime.NumCPU() / 4 ramGb := int(detectTotalRAM() / (1024 * 1024 * 1024)) if ramJobs := ramGb / 25; ramGb > 0 && jobs > ramJobs { if ramJobs := ramGb / 30; ramGb > 0 && jobs > ramJobs { jobs = ramJobs } Loading
java/proto.go +1 −1 Original line number Diff line number Diff line Loading @@ -24,7 +24,7 @@ import ( func genProto(ctx android.ModuleContext, protoFiles android.Paths, flags android.ProtoFlags) android.Paths { // Shard proto files into groups of 100 to avoid having to recompile all of them if one changes and to avoid // hitting command line length limits. shards := android.ShardPaths(protoFiles, 100) shards := android.ShardPaths(protoFiles, 50) srcJarFiles := make(android.Paths, 0, len(shards)) Loading