This file has been truncated, but you can view the full file.
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
Build Preparation | |
Dependency cycle for target 'LuaHostMac' detected: LuaHostMac -> LuaHostMac | |
Build target libquickcocos2dx | |
ProcessPCH /Users/MobileGame/Library/Developer/Xcode/DerivedData/LuaHostMac-certifysiadpjhbqxeskvaiuofpk/Build/Intermediates/PrecompiledHeaders/libquickcocos2dx-ambgnlepjrpfnzgpszalouayuxqz/libquickcocos2dx.pch.pth libquickcocos2dx.pch normal i386 c com.apple.compilers.llvm.clang.1_0.compiler | |
cd /Users/MobileGame/Work/quick-cocos2d-x/lib/proj.mac |
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
#!/usr/bin/env python | |
""" | |
A simple echo server | |
""" | |
import socket | |
host = '' | |
port = 50000 |
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
#! /usr/bin/env lua | |
--1. git config diff.xml_diff.textconv xml_diff.lua | |
---- file: .git/config | |
---- [diff "xml_diff"] | |
---- textconv = xml_diff.lua | |
--2. file: .gitattributes] | |
---- *.xml diff=xml_diff |
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 xls2lua_pool.py xls2lua.py !10017 | |
20,21d19 | |
< from multiprocessing import Pool | |
< from functools import partial | |
773,774d770 | |
< def wrap_conv_xls(args, file_names_): | |
< convet_xls_file(args[0], args[1], file_names_=file_names_) | |
809,811d804 | |
< p = Pool(8) | |
< |
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
local list = {} | |
local v_map = {} | |
local count = 20 | |
math.randomseed(os.time()) | |
local function gen_data() | |
for i=1,count do | |
local r = math.random(1, 100) | |
list[i] = {objid=r} | |
v_map[r] = r |
OlderNewer