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
[vagrant@localhost git-sh]$ sudo make install | |
install -d "/usr/local/bin" | |
install -m 0755 git-sh "/usr/local/bin/git-sh" | |
install -d "/usr/local/share/man/man1" | |
install -m 0644 git-sh.1.roff "/usr/local/share/man/man1/git-sh.1" |
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
$ make prepare | |
./scripts/ruby bundle install --path=vendor/gems | |
Unable to find image 'source/jenkins.io:latest' locally | |
docker: Error response from daemon: repository source/jenkins.io not found: does not exist or no pull access. | |
See 'docker run --help'. | |
Makefile:45: recipe for target 'depends-ruby' failed | |
make: *** [depends-ruby] Error 125 |
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
/*! | |
* \brief Wheter to print stack trace for fatal error, | |
* enabled on linux when using gcc. | |
*/ | |
#if (!defined(DMLC_LOG_STACK_TRACE) && defined(__GNUC__) && !defined(__MINGW32__)) | |
#define DMLC_LOG_STACK_TRACE 1 | |
#undef DMLC_LOG_STACK_TRACE | |
#endif |
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
<head><base href='file:///home/vadim/Desktop/'/></head><h1>Содержание</h1 |
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
#apks | |
glob:*.apk | |
glob:*.ap_ | |
# files for the dex VM | |
glob:*.dex | |
# Java class files | |
glob:*.class |
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
def clear_data(session): | |
meta = db.metadata | |
for table in reversed(meta.sorted_tables): | |
print 'Clear table %s' % table | |
session.execute(table.delete()) | |
session.commit() |