This file contains 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/llvm/tools/llvm-objcopy/CMakeLists.txt b/llvm/tools/llvm-objcopy/CMakeLists.txt | |
index 8406786e9e4..0a9e33e568a 100644 | |
--- a/llvm/tools/llvm-objcopy/CMakeLists.txt | |
+++ b/llvm/tools/llvm-objcopy/CMakeLists.txt | |
@@ -1,4 +1,5 @@ | |
set(LLVM_LINK_COMPONENTS | |
+ DebugInfoCodeView | |
Object | |
Option | |
Support |
This file contains 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
set(LLVM_LINK_COMPONENTS | |
DebugInfoCodeView | |
Object | |
ObjectYAML | |
Support | |
MC | |
) | |
add_llvm_tool(llvm-objcopy | |
llvm-objcopy.cpp | |
Object.cpp |
This file contains 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
clang-cl main.cpp -c -o main.o | |
In file included from main.cpp:3: | |
./win32.h(29,21): error: conflicting types for 'GetCursorPos' | |
WIN32_IMPORT(BOOL) GetCursorPos(LPPOINT lpPoint); | |
^ | |
C:\Program Files (x86)\Windows Kits\10\include\10.0.16299.0\um\winuser.h(9110,1): note: previous declaration is here | |
GetCursorPos( | |
^ | |
1 error generated. |
This file contains 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
/* ardp schema data */ | |
CREATE SCHEMA ardp | |
AUTHORIZATION automated; | |
ALTER USER looker SET search_path TO '$user', looker_scratch, facts, legacy, hub, metadata, accounts, vs, ardp, public; | |
CREATE TABLE ardp.events | |
( | |
event_id INTEGER NOT NULL, |
This file contains 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
from collections import defaultdict | |
import nsq | |
import msgpack | |
from time import strftime | |
from colorama import init, Fore, Style | |
init() | |
def wraphand(topic): | |
def handler(message): | |
def dec(key): |
This file contains 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 os | |
from collections import namedtuple | |
Section = namedtuple('Section', ['line', 'fg', 'bg']) | |
PARTS = 3 | |
def cwd_sec(): | |
cwd = $PWD | |
if cwd.startswith($HOME): |
This file contains 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 threading | |
import time | |
import sys | |
import os | |
TIMEOUT = 1.0 | |
def GetPhoto(): | |
time.sleep(5) |
This file contains 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
py-setproctitle master $ python setup.py develop | |
running develop | |
running egg_info | |
writing top-level names to setproctitle.egg-info/top_level.txt | |
writing dependency_links to setproctitle.egg-info/dependency_links.txt | |
writing setproctitle.egg-info/PKG-INFO | |
Traceback (most recent call last): | |
File "setup.py", line 105, in <module> | |
**kwargs) | |
File "/usr/local/Cellar/python3/3.5.1/Frameworks/Python.framework/Versions/3.5/lib/python3.5/distutils/core.py", line 148, in setup |
This file contains 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
<?php | |
class FakePost { | |
public function __construct($ID, $post_parent) { | |
$this->ID = $ID; | |
$this->post_parent = $post_parent; | |
} | |
} | |
This file contains 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
mysql> show global status like '%tmp%'; | |
+-------------------------+-----------+ | |
| Variable_name | Value | | |
+-------------------------+-----------+ | |
| Created_tmp_disk_tables | 146954844 | | |
| Created_tmp_files | 812363 | | |
| Created_tmp_tables | 220784074 | | |
+-------------------------+-----------+ | |
mysql> show variables like '%tmp%'; |
NewerOlder