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
void __cdecl _cxx_global_var_init_1_308() | |
{ | |
std::initializer_list<std::pair<const std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int> > ST1F8_16_1; // ST1F8_16 | |
std::pair<const std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int> *v1; // [rsp+40h] [rbp-A80h] | |
std::allocator<std::pair<const std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int> > v2; // [rsp+208h] [rbp-8B8h] | |
std::unordered_map<std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int,std::hash<std::__cxx11::string>,std::equal_to<std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> > >,std::allocator<std::pair<const std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int> > >::key_equal __eql; // [rsp+210h] [rbp-8B0h] | |
std::unordered_map<std::__cxx11::basic_string<char,std::char_traits<char>,std::allocator<char> >,unsigned int,std::ha |
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
DataMemoryBarrier(0x1b); | |
if ((((byte)_ZGVZN13ExplodePacket4readER20ReadOnlyBinaryStreamE8label_49 & 1) == 0) && | |
(iVar1 = __cxa_guard_acquire(&_ZGVZN13ExplodePacket4readER20ReadOnlyBinaryStreamE8label_49), | |
iVar1 != 0)) { | |
_ZN4Core7Profile14constructLabelEPKc | |
(&_ZZN13ExplodePacket4readER20ReadOnlyBinaryStreamE8label_49,&DAT_0534967d); | |
__cxa_atexit(&DAT_04bd4e29,&_ZZN13ExplodePacket4readER20ReadOnlyBinaryStreamE8label_49, | |
&DAT_05867000); | |
__cxa_guard_release(&_ZGVZN13ExplodePacket4readER20ReadOnlyBinaryStreamE8label_49); | |
DataMemoryBarrier(0x1b); |
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/EditProfileWindow.qml b/EditProfileWindow.qml | |
index 30615ca..4e325a6 100644 | |
--- a/EditProfileWindow.qml | |
+++ b/EditProfileWindow.qml | |
@@ -3,7 +3,7 @@ import QtQuick 2.4 | |
import QtQuick.Controls 1.4 | |
import QtQuick.Layouts 1.2 | |
import QtQuick.Window 2.2 | |
-import QtQuick.Dialogs 1.2 | |
+import QtQuick.Dialogs 1.3 |
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
private void moveBitch( final Location start, final ArrayList<Tile> tiles, final Callback<Void> callback ) { | |
final AtomicInteger curPos = new AtomicInteger( 0 ); | |
final Plugin plugin = this; | |
final Runnable moveRunnable = new Runnable() { | |
@Override | |
public void run() { | |
if (skeleton1 != null) { | |
int current = curPos.getAndAdd( 1 ); |
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
package net.cubespace.LocaleTest; | |
import org.apache.commons.lang.LocaleUtils; | |
import java.util.HashMap; | |
import java.util.Locale; | |
public class Main { | |
private static final String loc = "en_US"; | |
private static final HashMap<String, Locale> lookup = new HashMap<String, Locale>(); |
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
public class Main { | |
public static void main(String [] args) { | |
System.out.println("Starting test with switch"); | |
Test msg = Test.Test2; | |
double start = System.currentTimeMillis(); | |
for(Integer i = 0; i < 1000000000; i++) { | |
switch(msg) { | |
case Test1: |
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
public class Main { | |
public static void main(String [] args) { | |
System.out.println("Starting test with switch"); | |
Test msg = Test.Test1; | |
double start = System.currentTimeMillis(); | |
for(Integer i = 0; i < 1000000000; i++) { | |
switch(msg) { | |
case Test1: |
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
/** | |
* @author Fabian Faßbender | |
* @version 0.1.0 | |
* @file HTTP Module binds expressJS to HTTP NodeJS Servers | |
* @class HTTP | |
*/ | |
/** | |
* @requires module:express - NPM Install to get this | |
* @type {object} |
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 arr = Object.keys(obj); | |
for(var x = 0; x < arr.length; x++) { | |
empty.push(obj[arr[x]]); | |
} |
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 obj = {}; | |
var arr = []; | |
for(var i=0; i < 1280000; i++) { | |
obj[i] = "a"; | |
arr.push("a"); | |
} | |
var start = process.hrtime(); |
NewerOlder