This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var logger; | |
static { | |
logger = new Logger(); | |
console.log('hi'); | |
} | |
export function a() { | |
logger.log("hey"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import pprint | |
f = open('/tmp/test', 'r') | |
reader = csv.DictReader(f, dialect='excel-tab') | |
def mailTitle(t): | |
if (t == 'Hon.'): return 'The Hon.' | |
return t | |
def mailFormat(t, first, middle, last): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/include/net/tcp.h b/include/net/tcp.h | |
--- a/include/net/tcp.h | |
+++ b/include/net/tcp.h | |
@@ -285,6 +285,7 @@ | |
extern int sysctl_tcp_adv_win_scale; | |
extern int sysctl_tcp_tw_reuse; | |
extern int sysctl_tcp_frto; | |
+extern int sysctl_tcp_syn_acceptq_pct; | |
extern int sysctl_tcp_low_latency; | |
extern int sysctl_tcp_dma_copybreak; |