Passed
Push — dpa_submit21 ( e4087a...141260 )
by David
08:42
created
html/ops/analyze_coproc_log.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 // - daily total
24 24
 // - breakdown by desc (number, credit)
25 25
 
26
-ini_set ("memory_limit", "1G");
26
+ini_set("memory_limit", "1G");
27 27
 set_time_limit(0);
28 28
 
29 29
 $cli_only = true;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         add_to_array($days, $day, $granted);
77 77
     }
78 78
     $i++;
79
-    if ($i % 10000 == 0) echo "$i\n";
79
+    if ($i%10000 == 0) echo "$i\n";
80 80
 }
81 81
 
82 82
 uasort($hosts, "compare");
Please login to merge, or discard this patch.
html/ops/team_export.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     $f = fopen("temp.xml", "w");
101 101
     $teams = BoincTeam::enum(null);
102 102
     fwrite($f, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<teams>\n");
103
-    foreach($teams as $team) {
103
+    foreach ($teams as $team) {
104 104
         handle_team($team, $f);
105 105
     }
106 106
     fwrite($f, "</teams>\n");
Please login to merge, or discard this patch.
html/ops/badge_admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     $i = 0;
40 40
     foreach ($badges as $badge) {
41 41
         echo "<tr class=row$i valign=top><form action=badge_admin.php method=POST>";
42
-        $i = 1-$i;
42
+        $i = 1 - $i;
43 43
         echo "<td>$badge->id</td>\n";
44 44
         echo "<input type=hidden name=id value=$badge->id>";
45 45
         $nu = BoincBadgeUser::count("badge_id=$badge->id");
Please login to merge, or discard this patch.
html/ops/db_schemaversion.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
 $db_revision = 0;
23 23
 if (file_exists("../../db_revision")) {
24
-    $db_revision = (int) file_get_contents("../../db_revision");
24
+    $db_revision = (int)file_get_contents("../../db_revision");
25 25
 }
26 26
 require_once("db_update.php");
27 27
 
Please login to merge, or discard this patch.
html/ops/test_job_file.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     $post = array();
59 59
     $post["request"] = $xml;
60 60
     if ($req->type == "upload") {
61
-        $i=0;
61
+        $i = 0;
62 62
         foreach ($files as $f) {
63 63
             if ($f['path'] != "") {
64 64
                 $post["file_$i"] = '@'.$f['path'];
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
     curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
71 71
     $reply = curl_exec($ch);
72 72
     if ($reply) {
73
-        print $reply . "\n";
73
+        print $reply."\n";
74 74
     } else {
75
-        print curl_error($ch) . "\n";
75
+        print curl_error($ch)."\n";
76 76
     }
77 77
     curl_close($ch);
78 78
 }
Please login to merge, or discard this patch.
html/ops/update_forum_activities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
     }
41 41
     if ($is_helpdesk) {
42 42
         $diff = ($now - $thread->create_time)/86400;
43
-        $activity = ($thread->sufferers+1)/$diff;
43
+        $activity = ($thread->sufferers + 1)/$diff;
44 44
         echo "thread $thread->id helpdesk $diff $activity\n";
45 45
     } else {
46 46
         $posts = BoincPost::enum("thread=$thread->id");
Please login to merge, or discard this patch.
html/ops/db_cleanse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     $n = 0;
52 52
     while (1) {
53 53
         $n++;
54
-        if ($n % 1000 == 0) echo "$n\n";
54
+        if ($n%1000 == 0) echo "$n\n";
55 55
         $x = fgets($fres);
56 56
         if (!$x) break;
57 57
         list($reswuid, $resid) = sscanf($x, "%d %d");
Please login to merge, or discard this patch.
html/ops/nvidia.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 $cli_only = true;
22 22
 require_once("../inc/util_ops.inc");
23 23
 
24
-ini_set ("memory_limit", "8000M");
24
+ini_set("memory_limit", "8000M");
25 25
 set_time_limit(0);
26 26
 
27 27
 error_reporting(E_ALL);
@@ -68,21 +68,21 @@  discard block
 block discarded – undo
68 68
 }
69 69
 
70 70
 function analyze_nvidia() {
71
-	$hosts_total = 0;     // number of hosts 6.2 or better
72
-	$hosts_gpu = 0;     // number with an nvidia gpu
73
-	$rac_total =0;
71
+	$hosts_total = 0; // number of hosts 6.2 or better
72
+	$hosts_gpu = 0; // number with an nvidia gpu
73
+	$rac_total = 0;
74 74
 	$rac_gpu = 0;
75 75
 	$linux_total = 0;
76 76
 	$linux_gpus = 0;
77 77
 	$windows_total = 0;
78 78
 	$windows_gpus = 0;
79
-	$model = array();   // name -> count
80
-	$ram = array();     // size -> count
81
-	$driver = array();  // vers -> count
82
-	$ngpus = array();   // ngpus -> count
79
+	$model = array(); // name -> count
80
+	$ram = array(); // size -> count
81
+	$driver = array(); // vers -> count
82
+	$ngpus = array(); // ngpus -> count
83 83
 
84 84
 	$hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''");
85
-	foreach($hosts as $host) {
85
+	foreach ($hosts as $host) {
86 86
 		$boinc_vers = parse_vers($host->serialnum);
87 87
 		if (!$boinc_vers) continue;
88 88
 		if ($boinc_vers->major < 6) continue;
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
 	echo "Avg RAC: GPU: $a non-GPU: $b\n";
129 129
 
130 130
 	arsort($model);
131
-	foreach($model as $m=>$c) {
131
+	foreach ($model as $m=>$c) {
132 132
 		echo "$m $c\n";
133 133
 	}
134 134
 	print_r($ram);
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
 	$nati = 0;
143 143
 	$nboth = 0;
144 144
 	$hosts = BoincHost::enum("expavg_credit > 10 and serialnum<>''");
145
-	foreach($hosts as $host) {
145
+	foreach ($hosts as $host) {
146 146
 		$boinc_vers = parse_vers($host->serialnum);
147 147
 		if (!$boinc_vers) continue;
148 148
 		if ($boinc_vers->major < 6) continue;
Please login to merge, or discard this patch.
html/ops/app_details.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
     row2("Plan class", $av->plan_class);
52 52
     row2("Version num", $av->version_num);
53 53
     row2("Jobs validated", $av->pfc_n);
54
-    row2("Average efficiency", $av->pfc_avg?1/$av->pfc_avg:"---");
54
+    row2("Average efficiency", $av->pfc_avg ? 1/$av->pfc_avg : "---");
55 55
     row2("Credit scale factor", $av->pfc_scale);
56 56
     row2("Average credit", $av->expavg_credit);
57 57
     end_table();
Please login to merge, or discard this patch.