One GUI using technology for web applications
- gcylc: large memory footprint in graph mode - possible leak?
- Close as superseded by One GUI using technology for web applications.
- (Matt) Close.
One GUI using technology for web applications
asv continuous -f 1.1 upstream/master HEAD -b ^io.csv | |
· Creating environments | |
· Discovering benchmarks | |
· Running 32 total benchmarks (2 commits * 1 environments * 16 benchmarks) | |
[ 0.00%] · For pandas commit 2e38d555 (round 1/2): | |
[ 0.00%] ·· Building for conda-py3.6-Cython-matplotlib-numexpr-numpy-openpyxl-pytables-pytest-scipy-sqlalchemy-xlrd-xlsxwriter-xlwt...................................................................... | |
[ 0.00%] ·· Benchmarking conda-py3.6-Cython-matplotlib-numexpr-numpy-openpyxl-pytables-pytest-scipy-sqlalchemy-xlrd-xlsxwriter-xlwt | |
[ 1.56%] ··· Running (io.csv.ReadCSVCategorical.time_convert_direct--).............. | |
[ 25.00%] ··· Running (io.csv.ToCSVDatetime.time_frame_date_formatting--). | |
[ 25.00%] · For pandas commit fe6fa7b7 <fix-issue-gh25099-csv-narep> (round 1/2): |
Note to self: you do not have to copy Cylc directory under wrfpy module installation in Anaconda.
That was silly. Actually the package in setup.py had some problems - apparently - but installing
from master branch with pip install -e .
works fine.
> virtualenv venv
> . venv/bin/active
> pip install -r requirements.txt
...
> pip install -r requirements-docs.txt
2019-01-17T02:19:02Z DEBUG - [TaskJobLogsRetrieveContext(key='job-logs-retrieve', ctx_type='job-logs-retrieve', user_at_host='pbs', max_size=None) cmd] rsync -v -rltgoD --chmod=Du=rwx,Dgo=rx,Fu=rwx,Fgo=rwx '--rsh=ssh -oBatchMode=yes -oConnectTimeout=10' -v --include=/1 --include=/1/a --include=/1/a/01 '--include=/1/a/01/**' '--exclude=/**' 'pbs:$HOME/cylc-run/pbs1/log/job/' /home/testuser/cylc-run/pbs1/log/job/ | |
[TaskJobLogsRetrieveContext(key='job-logs-retrieve', ctx_type='job-logs-retrieve', user_at_host='pbs', max_size=None) ret_code] 0 | |
[TaskJobLogsRetrieveContext(key='job-logs-retrieve', ctx_type='job-logs-retrieve', user_at_host='pbs', max_size=None) out] | |
opening connection using: ssh -oBatchMode=yes -oConnectTimeout=10 pbs rsync --server --sender -vvlogDtre.iLsfx . "$HOME/cylc-run/pbs1/log/job/" (10 args) | |
receiving incremental file list | |
[sender] showing directory 1 because of pattern /1 | |
delta-transmission enabled | |
[sender] showing directory 1/a because of pattern /1/a | |
[sender] showing directory 1 |
PREFIX : <http://example/> | |
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#> | |
PREFIX spatial: <http://jena.apache.org/spatial#> | |
SELECT ?airport { | |
?place spatial:nearby (52.45 -1.73 10 'km') . | |
?place rdfs:label ?airport . | |
} |
diff --git a/Dockerfile b/Dockerfile | |
index 9abc4e0..75e23f1 100644 | |
--- a/Dockerfile | |
+++ b/Dockerfile | |
@@ -1,4 +1,4 @@ | |
-FROM php:7.0-apache | |
+FROM php:7.2-apache | |
RUN apt-get update | |
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
import re | |
p = re.compile(r"\d", re.UNICODE) | |
number_one = "1" | |
also_number_one = u"߁" | |
not_a_number = "test" |
import re | |
s = re.sub(r"\db", r"\d_", "1bread") | |
print(s) | |
import tornado.web | |
class MainHandler(tornado.web.RequestHandler): | |
def get(self): | |
if not self.get_cookie("mycookie"): | |
self.set_cookie("mycookie", "myvalue") | |
self.write("Your cookie was not set yet!") | |
else: | |
self.write("Your cookie was set!") |