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
| let CheckTickInterval = null; | |
| checkTicks = function() { | |
| let progressBar = document.getElementById('progress-bar-line'); | |
| let curProgress = null; | |
| let ariaValue = parseInt(progressBar.attributes['aria-valuenow'].value); | |
| if (ariaValue > 0) { | |
| curProgress = ariaValue; | |
| } | |
| if (curProgress > 98) { |
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
| import logging | |
| import sqlalchemy | |
| import sys | |
| from sqlalchemy.engine.base import Engine | |
| import sqlalchemy.event | |
| class ExplainPlan(object): | |
| """ | |
| Context manager that outputs the postgres explain plan for every | |
| query executed within to stdout or a file, if provided with "logfile" |
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
| @echo off | |
| SET BOOTSTRAP=.\docs\assets\css\bootstrap.css | |
| SET BOOTSTRAP_LESS=.\less\bootstrap.less | |
| SET "CHECK= " | |
| SET HR=################################################## | |
| SETLOCAL ENABLEDELAYEDEXPANSION | |
| if [%1]==[] goto build |
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
| @echo off | |
| SET BOOTSTRAP=.\docs\assets\css\bootstrap.css | |
| SET BOOTSTRAP_LESS=.\less\bootstrap.less | |
| SET BOOTSTRAP_RESPONSIVE=.\docs\assets\css\bootstrap-responsive.css | |
| SET BOOTSTRAP_RESPONSIVE_LESS=.\less\responsive.less | |
| SET "CHECK= " | |
| SET HR=################################################## | |
| SETLOCAL ENABLEDELAYEDEXPANSION |