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
2018-06-20 15:50:06,956 [ 310592] ERROR - tor.impl.FileEditorManagerImpl - IntelliJ IDEA 2018.1.5 Build #IU-181.5281.24 | |
2018-06-20 15:50:06,956 [ 310592] ERROR - tor.impl.FileEditorManagerImpl - JDK: 1.8.0_152-release | |
2018-06-20 15:50:06,956 [ 310592] ERROR - tor.impl.FileEditorManagerImpl - VM: OpenJDK 64-Bit Server VM | |
2018-06-20 15:50:06,957 [ 310593] ERROR - tor.impl.FileEditorManagerImpl - Vendor: JetBrains s.r.o | |
2018-06-20 15:50:06,957 [ 310593] ERROR - tor.impl.FileEditorManagerImpl - OS: Mac OS X | |
2018-06-20 15:50:06,957 [ 310593] ERROR - tor.impl.FileEditorManagerImpl - Last Action: GotoFile | |
2018-06-20 15:50:06,957 [ 310593] ERROR - tor.impl.FileEditorManagerImpl - Current Command: | |
2018-06-20 15:50:11,358 [ 314994] INFO - ScriptTemplatesProviders - [kts] loading script definitions [] using cp: | |
2018-06-20 15:50:16,463 [ 320099] WARN - ConfigurableExtensionPointUtil - ignore configurable with duplicated id: preferences.externalDependencies | |
2018-06-20 15:52:52,516 [ 476152] E |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "centos-gold" | |
(1..5).each do |i| |
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
#!/bin/sh -e | |
#git-cache-meta -- simple file meta data caching and applying. | |
#Simpler than etckeeper, metastore, setgitperms, etc. | |
#from http://www.kerneltrap.org/mailarchive/git/2009/1/9/4654694 | |
#modified by n1k | |
# - save all files metadata not only from other users | |
# - save numeric uid and gid | |
# 2012-03-05 - added filetime, andris9 |