diff --git a/Codepedia2/settings.py b/Codepedia2/settings.py index 201ae0a..6985e71 100644 --- a/Codepedia2/settings.py +++ b/Codepedia2/settings.py @@ -120,7 +120,7 @@ WSGI_APPLICATION = 'Codepedia2.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', - 'NAME': 'codepedia_1', + 'NAME': 'codepedia', 'USER': 'root', 'PASSWORD': 'codepedia123', 'HOST': '127.0.0.1' diff --git a/apps/operations/migrations/0016_annotation_modify_user_id.py b/apps/operations/migrations/0016_annotation_modify_user_id.py new file mode 100644 index 0000000..65e8bab --- /dev/null +++ b/apps/operations/migrations/0016_annotation_modify_user_id.py @@ -0,0 +1,18 @@ +# Generated by Django 2.0.6 on 2018-08-25 18:49 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('operations', '0015_auto_20180821_1142'), + ] + + operations = [ + migrations.AddField( + model_name='annotation', + name='modify_user_id', + field=models.CharField(max_length=255, null=True, verbose_name='本次标注的修改者的ID'), + ), + ] diff --git a/apps/operations/models.py b/apps/operations/models.py index 4ae62a9..bf57fa7 100644 --- a/apps/operations/models.py +++ b/apps/operations/models.py @@ -66,6 +66,7 @@ class Annotation(models.Model): create_time = models.DateTimeField(auto_now_add=True) update_time = models.DateTimeField(auto_now=True) commit_id = models.CharField(max_length=255) + modify_user_id = models.CharField(max_length=255,verbose_name='本次标注的修改者的ID',null=True) class Meta: db_table = 'Annotation' diff --git a/apps/operations/views.py b/apps/operations/views.py index 3a4bd3d..b3c73a8 100644 --- a/apps/operations/views.py +++ b/apps/operations/views.py @@ -46,8 +46,10 @@ def get_educoder_group_userlist_by_educoder_userid(userid,file_id): def get_group_users(user_id,file_id): educoder_userid = User.objects.get(id=user_id).educoder_userid + # print(educoder_userid) # 调用educoder的接口,返回对应的username list educoder_userids = get_educoder_group_userlist_by_educoder_userid(educoder_userid,file_id) + print(educoder_userids) users = User.objects.filter(educoder_userid__in=educoder_userids) return users @@ -89,11 +91,14 @@ class ShowAnnotationView(View): users = get_group_users(user_id,file_id) # user_ids = [] # 然后调用 + print(users) commit_id = self.get_current_commitid_by_fileid(file_id) - if users is None: + # print(Annotation.objects.filter(file_id=file_id, linenum=line_num,is_latest=1,commit_id=commit_id)) + if len(users)==0: annotations = Annotation.objects.filter(file_id=file_id, linenum=line_num,user_id=user_id,is_latest=1,commit_id=commit_id) else: annotations = Annotation.objects.filter(file_id=file_id, linenum=line_num,user__in=users,is_latest=1,commit_id=commit_id) + print(annotations) return annotations @@ -403,8 +408,9 @@ class ModifyAnnotationView(View): content = request.POST.get('content', '') file_id = int(request.POST.get('file_id', '')) linenum = int(request.POST.get('line_num', '')) + anno_id = int(request.POST.get('anno_id', '')) # 查询到之前的注释,根据file_id,line_num,user_id; - annotation = Annotation.objects.get(file_id=file_id, linenum=linenum, user_id=request.user.id,is_latest=1) + annotation = Annotation.objects.get(file_id=file_id, linenum=linenum, id=anno_id,is_latest=1) # 然后插入一条新的记录,anno_id其他的都一样,除了content以及is_latest new_annotation = Annotation() new_annotation.file_id = file_id @@ -413,6 +419,7 @@ class ModifyAnnotationView(View): new_annotation.project_id = annotation.project_id new_annotation.user = annotation.user new_annotation.anno_id = annotation.anno_id + new_annotation.modify_user_id = request.user.id new_annotation.is_latest = 1 project_name = File.objects.get(id=file_id).project.name diff --git a/apps/users/views.py b/apps/users/views.py index 8abe618..1402801 100644 --- a/apps/users/views.py +++ b/apps/users/views.py @@ -222,6 +222,7 @@ class LoginView(View): return render(request, 'users/login.html', {'msg': '用户名或密码错误!'}) def login_educoder(self,email,pass_word,request): + private_token = "hriEn3UwXfJs3PmyXnSG" user_params = {'username': email, 'password': pass_word,"private_token":private_token} login_url = 'https://www.educoder.net/api/v1/sources/login' @@ -230,18 +231,21 @@ class LoginView(View): print(response) status = response['status'] if status == 1: + # 因为用户可能是邮箱也可能是用户名登录,所以先获取到educoder用户的用户名 + # 调用接口获取用户的email + educoder_userid = response['user_id'] + print(educoder_userid) + userinfo_url = "http://www.educoder.net/api/v1/sources/"+str(educoder_userid)+"/get_user_info?private_token="+private_token + response = requests.get(userinfo_url) + response = json.loads(response.text) + + email = response['email'] + exist_records = User.objects.filter(email=email).first() if not exist_records: - educoder_userid = response['user_id'] - # educoder_userid = "15583" - userinfo_url = "http://www.educoder.net/api/v1/sources/"+str(educoder_userid)+"/get_user_info?private_token="+private_token - response = requests.get(userinfo_url) - response = json.loads(response.text) - user = User() user.username = response['username'] - while User.objects.filter(username=user.username).first(): user.username += str(random.randint(0,10)) @@ -270,7 +274,12 @@ class LoginView(View): return render(request, 'users/login.html', {'msg': '用户名或密码错误!'}) def login_default(self,email,pass_word,request): - exist_records = User.objects.filter(email=email).first() + import re + if re.match(r'[0-9a-zA-Z_]{0,19}@163.com',email): + exist_records = User.objects.filter(email=email).first() + else: + exist_records = User.objects.filter(username=email).first() + if exist_records: user = exist_records diff --git a/static/css/code_show.css b/static/css/code_show.css index 8139abb..5288692 100644 --- a/static/css/code_show.css +++ b/static/css/code_show.css @@ -1581,4 +1581,7 @@ color: #FFF !important; } .filePathInfomarbootom{ margin-bottom: 0px; +} + +.anno_textarea{ } \ No newline at end of file diff --git a/static/js/source.js b/static/js/source.js index a425719..66983cb 100644 --- a/static/js/source.js +++ b/static/js/source.js @@ -55,6 +55,9 @@ function show_annotation(file_id, line_num) { function close_modify_anno(){ $(".modify_anno_div").remove(); + $("#modify_anno_textarea").attr("readonly","readonly") + + ev = window.event; if(ev==undefined){ ev=arguments.callee.caller.arguments[0]||window.event; @@ -63,11 +66,13 @@ function close_modify_anno(){ } //注入html代码 -function inject_modifyAnno_html(item,file_id,linenum) { - $(".modify_anno_div").remove(); +function inject_modifyAnno_html(item,file_id,linenum,anno_id) { + $(".modify_anno_div").remove(); + $("#modify_anno_textarea").removeAttr("readonly"); + $("#modify_anno_textarea").focus() + html_str = '
'+ - ''+ - '提交'+ + '提交'+ '取消'+ '
'; $(item).after(html_str) @@ -79,7 +84,7 @@ function inject_modifyAnno_html(item,file_id,linenum) { } // FIXME -function modify_anno(file_id,line_num){ +function modify_anno(file_id,line_num,anno_id){ // 获取修改后的内容 var content=$("#modify_anno_textarea").val(); if (content == null || content == undefined || content.trim() == '') { @@ -90,7 +95,7 @@ function modify_anno(file_id,line_num){ cache: false, type: "POST", url: '/operations/modify_anno/', - data: { 'file_id': file_id, 'line_num': line_num,'content':content }, + data: { 'file_id': file_id, 'line_num': line_num,'anno_id':anno_id,'content':content }, dataType: 'json', async: true, beforeSend: function (xhr, settings) { diff --git a/templates/projects/filesub/annotation.html b/templates/projects/filesub/annotation.html index 6b40a7b..a6bdf79 100644 --- a/templates/projects/filesub/annotation.html +++ b/templates/projects/filesub/annotation.html @@ -25,9 +25,9 @@
- {{ self_anno.content }} + {% if allow_modify %} - 修改 + 修改 {% endif %}
diff --git a/uwsgi.log b/uwsgi.log index 7a6c0ed..462e595 100644 --- a/uwsgi.log +++ b/uwsgi.log @@ -6707,3 +6707,5435 @@ AttributeError: 'NoneType' object has no attribute 'path' [pid: 26144|app: 0|req: 62/298] 106.17.228.113 () {44 vars in 878 bytes} [Mon Aug 20 13:30:32 2018] GET /projects/pytorch_torch_utils_model_zoopy => generated 78394 bytes in 116 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) ======= >>>>>>> 182c4c4ed38083918e615a6ca2aba6e7d90636f1 +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:12:42 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0x14a10d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18100) +spawned uWSGI worker 1 (pid: 18101, cores: 2) +spawned uWSGI worker 2 (pid: 18102, cores: 2) +spawned uWSGI worker 3 (pid: 18103, cores: 2) +spawned uWSGI worker 4 (pid: 18104, cores: 2) +spawned uWSGI worker 5 (pid: 18105, cores: 2) +spawned uWSGI worker 6 (pid: 18106, cores: 2) +--- no python application found, check your startup logs for errors --- +[pid: 18101|app: -1|req: -1/1] 106.19.3.159 () {42 vars in 809 bytes} [Fri Aug 24 20:12:53 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (1 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18104|app: -1|req: -1/2] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:12:56 2018] GET / => generated 21 bytes in 1 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:13:05 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0x1b2f0d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18115) +spawned uWSGI worker 1 (pid: 18116, cores: 2) +spawned uWSGI worker 2 (pid: 18117, cores: 2) +spawned uWSGI worker 3 (pid: 18118, cores: 2) +spawned uWSGI worker 4 (pid: 18119, cores: 2) +spawned uWSGI worker 5 (pid: 18120, cores: 2) +spawned uWSGI worker 6 (pid: 18121, cores: 2) +--- no python application found, check your startup logs for errors --- +[pid: 18119|app: -1|req: -1/1] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:13:10 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18121|app: -1|req: -1/2] 106.19.3.159 () {42 vars in 809 bytes} [Fri Aug 24 20:13:42 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18120|app: -1|req: -1/3] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:14:06 2018] GET / => generated 21 bytes in 1 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18121|app: -1|req: -1/4] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:14:37 2018] GET / => generated 21 bytes in 1 msecs (HTTP/1.1 500) 2 headers in 83 bytes (1 switches on core 1) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:15:13 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0x8b90d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18279) +spawned uWSGI worker 1 (pid: 18280, cores: 2) +spawned uWSGI worker 2 (pid: 18281, cores: 2) +spawned uWSGI worker 3 (pid: 18282, cores: 2) +spawned uWSGI worker 4 (pid: 18283, cores: 2) +spawned uWSGI worker 5 (pid: 18284, cores: 2) +spawned uWSGI worker 6 (pid: 18285, cores: 2) +--- no python application found, check your startup logs for errors --- +[pid: 18284|app: -1|req: -1/1] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:15:27 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:15:47 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0x1c150d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18320) +spawned uWSGI worker 1 (pid: 18321, cores: 2) +spawned uWSGI worker 2 (pid: 18322, cores: 2) +spawned uWSGI worker 3 (pid: 18323, cores: 2) +spawned uWSGI worker 4 (pid: 18324, cores: 2) +spawned uWSGI worker 5 (pid: 18325, cores: 2) +spawned uWSGI worker 6 (pid: 18326, cores: 2) +--- no python application found, check your startup logs for errors --- +[pid: 18324|app: -1|req: -1/1] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:15:56 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (1 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18325|app: -1|req: -1/2] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:16:16 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:17:23 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0xce40d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18441) +spawned uWSGI worker 1 (pid: 18442, cores: 2) +spawned uWSGI worker 2 (pid: 18443, cores: 2) +spawned uWSGI worker 3 (pid: 18444, cores: 2) +spawned uWSGI worker 4 (pid: 18445, cores: 2) +spawned uWSGI worker 5 (pid: 18446, cores: 2) +spawned uWSGI worker 6 (pid: 18447, cores: 2) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17.1 (64bit) on [Fri Aug 24 20:20:58 2018] *** +compiled with version: 4.8.2 20140120 (Red Hat 4.8.2-15) on 20 July 2018 11:36:48 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +pcre jit disabled +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//bin/uwsgi +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:17:00) [GCC 7.2.0] +Python main interpreter initialized at 0x22290d0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583632 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +Traceback (most recent call last): + File "/projects/codepedia/codepedia2/Codepedia2/wsgi.py", line 12, in + from django.core.wsgi import get_wsgi_application +ModuleNotFoundError: No module named 'django' +unable to load app 0 (mountpoint='') (callable not found or import error) +*** no app loaded. going in full dynamic mode *** +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 18646) +spawned uWSGI worker 1 (pid: 18647, cores: 2) +spawned uWSGI worker 2 (pid: 18648, cores: 2) +spawned uWSGI worker 3 (pid: 18649, cores: 2) +spawned uWSGI worker 4 (pid: 18650, cores: 2) +spawned uWSGI worker 5 (pid: 18651, cores: 2) +spawned uWSGI worker 6 (pid: 18652, cores: 2) +--- no python application found, check your startup logs for errors --- +[pid: 18649|app: -1|req: -1/1] 106.19.3.159 () {44 vars in 869 bytes} [Fri Aug 24 20:21:03 2018] GET /projects/?sort= => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18649|app: -1|req: -1/2] 200.196.43.208 () {32 vars in 462 bytes} [Fri Aug 24 20:23:07 2018] GET / => generated 21 bytes in 1 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 1) +--- no python application found, check your startup logs for errors --- +[pid: 18651|app: -1|req: -1/3] 106.19.3.159 () {44 vars in 869 bytes} [Fri Aug 24 20:24:05 2018] GET /projects/?sort= => generated 21 bytes in 2 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18650|app: -1|req: -1/4] 106.19.3.159 () {42 vars in 809 bytes} [Fri Aug 24 20:24:10 2018] GET / => generated 21 bytes in 1 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +--- no python application found, check your startup logs for errors --- +[pid: 18651|app: -1|req: -1/5] 106.19.3.159 () {42 vars in 809 bytes} [Fri Aug 24 20:31:28 2018] GET / => generated 21 bytes in 2 msecs (HTTP/1.1 500) 2 headers in 83 bytes (1 switches on core 1) +--- no python application found, check your startup logs for errors --- +[pid: 18650|app: -1|req: -1/6] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:32:38 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 1) +--- no python application found, check your startup logs for errors --- +[pid: 18650|app: -1|req: -1/7] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:32:39 2018] GET / => generated 21 bytes in 0 msecs (HTTP/1.1 500) 2 headers in 83 bytes (0 switches on core 0) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17 (64bit) on [Fri Aug 24 20:36:20 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x15320c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x15320c0 pid: 19575 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 19575) +spawned uWSGI worker 1 (pid: 19577, cores: 2) +spawned uWSGI worker 2 (pid: 19578, cores: 2) +spawned uWSGI worker 3 (pid: 19580, cores: 2) +spawned uWSGI worker 4 (pid: 19582, cores: 2) +spawned uWSGI worker 5 (pid: 19584, cores: 2) +spawned uWSGI worker 6 (pid: 19586, cores: 2) +[pid: 19580|app: 0|req: 1/1] 106.19.3.159 () {44 vars in 840 bytes} [Fri Aug 24 20:36:28 2018] GET / => generated 9722 bytes in 461 msecs (HTTP/1.1 200) 4 headers in 195 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 1/2] 106.19.3.159 () {44 vars in 854 bytes} [Fri Aug 24 20:36:31 2018] GET /projects/scikit-learn/ => generated 240516 bytes in 432 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 2/3] 106.19.3.159 () {52 vars in 1065 bytes} [Fri Aug 24 20:36:35 2018] POST /operations/get_addtab_paras/ => generated 74 bytes in 8 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) + +[pid: 19580|app: 0|req: 4/4] 106.19.3.159 () {52 vars in 1079 bytes} [Fri Aug 24 20:36:35 2018] POST /operations/get_codereading_content/ => generated 2566 bytes in 26 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 4/5] 106.19.3.159 () {52 vars in 1042 bytes} [Fri Aug 24 20:36:35 2018] POST /operations/right/ => generated 5266 bytes in 57 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 1/6] 106.19.3.159 () {52 vars in 1062 bytes} [Fri Aug 24 20:36:35 2018] POST /operations/show_navigation/ => generated 35 bytes in 366 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 2/7] 223.104.131.177 () {42 vars in 698 bytes} [Fri Aug 24 20:36:44 2018] GET / => generated 9722 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 1/8] 106.19.3.159 () {52 vars in 1071 bytes} [Fri Aug 24 20:36:45 2018] POST /operations/show_navigation/ => generated 35 bytes in 418 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 2/9] 106.19.3.159 () {52 vars in 1078 bytes} [Fri Aug 24 20:36:45 2018] POST /operations/get_codereading_content/ => generated 2578 bytes in 420 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 2/10] 106.19.3.159 () {52 vars in 1051 bytes} [Fri Aug 24 20:36:45 2018] POST /operations/right/ => generated 5263 bytes in 455 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19586|app: 0|req: 2/11] 223.104.131.177 () {38 vars in 654 bytes} [Fri Aug 24 20:36:46 2018] GET /favicon.ico => generated 3104 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /favicon.ico +Fri Aug 24 20:36:46 2018 - SIGPIPE: writing to a closed pipe/socket/fd (probably the client disconnected) !!! +Fri Aug 24 20:36:46 2018 - uwsgi_response_writev_headers_and_body_do(): Broken pipe [core/writer.c line 306] during GET /favicon.ico (223.104.131.177) +OSError: write error +[pid: 19582|app: 0|req: 1/12] 223.104.131.177 () {38 vars in 594 bytes} [Fri Aug 24 20:36:46 2018] GET /favicon.ico => generated 0 bytes in 338 msecs (HTTP/1.1 404) 3 headers in 0 bytes (0 switches on core 0) +[pid: 19577|app: 0|req: 3/13] 223.104.131.177 () {42 vars in 730 bytes} [Fri Aug 24 20:36:48 2018] GET /projects/ => generated 9722 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 4/14] 223.104.131.177 () {42 vars in 733 bytes} [Fri Aug 24 20:36:50 2018] GET /files/ => generated 22572 bytes in 58 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 5/15] 223.104.131.177 () {42 vars in 718 bytes} [Fri Aug 24 20:36:52 2018] GET / => generated 9722 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 6/16] 106.19.3.159 () {52 vars in 1099 bytes} [Fri Aug 24 20:36:54 2018] POST /operations/show_navigation/ => generated 185 bytes in 31 msecs (HTTP/1.1 200) 3 headers in 101 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 3/17] 106.19.3.159 () {52 vars in 1087 bytes} [Fri Aug 24 20:36:54 2018] POST /operations/get_codereading_content/ => generated 1807 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 3/18] 106.19.3.159 () {52 vars in 1079 bytes} [Fri Aug 24 20:36:54 2018] POST /operations/right/ => generated 5250 bytes in 69 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 2/19] 106.19.3.159 () {52 vars in 1103 bytes} [Fri Aug 24 20:36:55 2018] POST /operations/show_navigation/ => generated 316 bytes in 14 msecs (HTTP/1.1 200) 3 headers in 101 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 7/20] 106.19.3.159 () {52 vars in 1083 bytes} [Fri Aug 24 20:36:55 2018] POST /operations/right/ => generated 5250 bytes in 34 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 4/21] 106.19.3.159 () {52 vars in 1115 bytes} [Fri Aug 24 20:36:55 2018] POST /operations/get_codereading_content/ => generated 2470 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 6/22] 106.19.3.159 () {52 vars in 1101 bytes} [Fri Aug 24 20:36:56 2018] POST /operations/show_navigation/ => generated 280 bytes in 28 msecs (HTTP/1.1 200) 3 headers in 101 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 6/23] 106.19.3.159 () {52 vars in 1119 bytes} [Fri Aug 24 20:36:56 2018] POST /operations/get_codereading_content/ => generated 3689 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 3/24] 106.19.3.159 () {52 vars in 1081 bytes} [Fri Aug 24 20:36:56 2018] POST /operations/right/ => generated 5250 bytes in 48 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 4/25] 106.19.3.159 () {52 vars in 1078 bytes} [Fri Aug 24 20:37:00 2018] POST /operations/get_codereading_content/ => generated 2578 bytes in 33 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 5/26] 106.19.3.159 () {52 vars in 1081 bytes} [Fri Aug 24 20:37:12 2018] POST /operations/show_navigation/ => generated 35 bytes in 30 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 4/27] 106.19.3.159 () {52 vars in 1087 bytes} [Fri Aug 24 20:37:12 2018] POST /operations/get_codereading_content/ => generated 2572 bytes in 51 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 4/28] 106.19.3.159 () {52 vars in 1061 bytes} [Fri Aug 24 20:37:12 2018] POST /operations/right/ => generated 5259 bytes in 63 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 8/29] 106.19.3.159 () {52 vars in 1092 bytes} [Fri Aug 24 20:37:41 2018] POST /operations/show_navigation/ => generated 35 bytes in 57 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 7/30] 106.19.3.159 () {52 vars in 1072 bytes} [Fri Aug 24 20:37:41 2018] POST /operations/right/ => generated 37 bytes in 61 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 6/31] 106.19.3.159 () {52 vars in 1087 bytes} [Fri Aug 24 20:37:41 2018] POST /operations/get_codereading_content/ => generated 276 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 9/32] 106.19.3.159 () {52 vars in 1081 bytes} [Fri Aug 24 20:37:53 2018] POST /operations/show_navigation/ => generated 35 bytes in 30 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 3/33] 106.19.3.159 () {52 vars in 1097 bytes} [Fri Aug 24 20:37:55 2018] POST /operations/get_codereading_content/ => generated 276 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 4/34] 106.19.3.159 () {52 vars in 1102 bytes} [Fri Aug 24 20:38:29 2018] POST /operations/show_navigation/ => generated 35 bytes in 57 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 5/35] 106.19.3.159 () {52 vars in 1118 bytes} [Fri Aug 24 20:38:30 2018] POST /operations/get_codereading_content/ => generated 3689 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 10/36] 106.19.3.159 () {52 vars in 1081 bytes} [Fri Aug 24 20:38:30 2018] POST /operations/right/ => generated 5250 bytes in 40 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 5/37] 106.19.3.159 () {52 vars in 1071 bytes} [Fri Aug 24 20:38:37 2018] POST /operations/show_navigation/ => generated 35 bytes in 17 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 7/38] 106.19.3.159 () {52 vars in 1087 bytes} [Fri Aug 24 20:38:39 2018] POST /operations/get_codereading_content/ => generated 2572 bytes in 34 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 8/39] 106.19.3.159 () {52 vars in 1115 bytes} [Fri Aug 24 20:39:04 2018] POST /operations/get_codereading_content/ => generated 2572 bytes in 51 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 9/40] 106.19.3.159 () {52 vars in 1098 bytes} [Fri Aug 24 20:39:13 2018] POST /operations/show_navigation/ => generated 35 bytes in 26 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 5/41] 106.19.3.159 () {52 vars in 1097 bytes} [Fri Aug 24 20:39:23 2018] POST /operations/get_codereading_content/ => generated 276 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 10/42] 180.153.236.149 () {42 vars in 648 bytes} [Fri Aug 24 20:44:23 2018] GET / => generated 9722 bytes in 138 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 6/43] 186.71.52.18 () {32 vars in 460 bytes} [Fri Aug 24 20:52:10 2018] GET / => generated 9722 bytes in 138 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 11/44] 118.101.51.244 () {26 vars in 278 bytes} [Fri Aug 24 21:40:31 2018] GET / => generated 9722 bytes in 76 msecs (HTTP/1.0 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 12/45] 165.16.37.182 () {32 vars in 462 bytes} [Fri Aug 24 21:41:04 2018] GET / => generated 9722 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Not Found: /echo.php +[pid: 19584|app: 0|req: 13/46] 5.188.210.12 () {46 vars in 575 bytes} [Fri Aug 24 22:00:44 2018] GET /echo.php => generated 3086 bytes in 32 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 19578|app: 0|req: 6/47] 211.144.157.50 () {34 vars in 507 bytes} [Fri Aug 24 22:09:58 2018] GET /manager/html => generated 3104 bytes in 43 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +Not Found: /robots.txt +[pid: 19580|app: 0|req: 6/48] 203.208.60.22 () {36 vars in 529 bytes} [Fri Aug 24 22:47:11 2018] GET /robots.txt => generated 3101 bytes in 46 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 7/49] 203.208.60.96 () {38 vars in 602 bytes} [Fri Aug 24 22:47:11 2018] GET /?page=41 => generated 9722 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 7/50] 203.208.60.26 () {38 vars in 600 bytes} [Fri Aug 24 22:47:12 2018] GET /?page=4 => generated 9722 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 7/51] 203.208.60.114 () {38 vars in 603 bytes} [Fri Aug 24 22:47:15 2018] GET /?page=90 => generated 9722 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 11/52] 203.208.60.4 () {38 vars in 723 bytes} [Fri Aug 24 22:47:16 2018] GET /?sort= => generated 9722 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 8/53] 203.208.60.2 () {38 vars in 599 bytes} [Fri Aug 24 22:47:17 2018] GET /?page=6 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 8/54] 203.208.60.76 () {38 vars in 602 bytes} [Fri Aug 24 22:47:18 2018] GET /?page=42 => generated 9722 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 9/55] 203.208.60.19 () {38 vars in 602 bytes} [Fri Aug 24 22:47:20 2018] GET /?page=89 => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 10/56] 203.208.60.4 () {38 vars in 599 bytes} [Fri Aug 24 22:47:24 2018] GET /?page=5 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 11/57] 203.208.60.88 () {38 vars in 602 bytes} [Fri Aug 24 22:47:27 2018] GET /?page=92 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 12/58] 203.208.60.109 () {38 vars in 603 bytes} [Fri Aug 24 22:47:28 2018] GET /?page=98 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 13/59] 203.208.60.44 () {38 vars in 602 bytes} [Fri Aug 24 22:47:29 2018] GET /?page=95 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 12/60] 203.208.60.14 () {38 vars in 602 bytes} [Fri Aug 24 22:47:30 2018] GET /?page=91 => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 14/61] 203.208.60.105 () {38 vars in 605 bytes} [Fri Aug 24 22:47:37 2018] GET /?page=248 => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 15/62] 203.208.60.76 () {38 vars in 602 bytes} [Fri Aug 24 22:47:37 2018] GET /?page=96 => generated 9722 bytes in 18 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 14/63] 203.208.60.76 () {38 vars in 602 bytes} [Fri Aug 24 22:47:38 2018] GET /?page=97 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 8/64] 203.208.60.115 () {38 vars in 605 bytes} [Fri Aug 24 22:47:40 2018] GET /?page=101 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 9/65] 203.208.60.127 () {38 vars in 605 bytes} [Fri Aug 24 22:47:41 2018] GET /?page=254 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 10/66] 203.208.60.8 () {38 vars in 603 bytes} [Fri Aug 24 22:47:42 2018] GET /?page=260 => generated 9722 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 16/67] 203.208.60.29 () {38 vars in 604 bytes} [Fri Aug 24 22:47:43 2018] GET /?page=104 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 17/68] 203.208.60.54 () {38 vars in 604 bytes} [Fri Aug 24 22:47:44 2018] GET /?page=266 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 15/69] 203.208.60.49 () {38 vars in 604 bytes} [Fri Aug 24 22:47:45 2018] GET /?page=261 => generated 9722 bytes in 22 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 18/70] 203.208.60.26 () {38 vars in 604 bytes} [Fri Aug 24 22:47:48 2018] GET /?page=102 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 19/71] 203.208.60.53 () {38 vars in 604 bytes} [Fri Aug 24 22:47:49 2018] GET /?page=249 => generated 9722 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 16/72] 203.208.60.70 () {38 vars in 604 bytes} [Fri Aug 24 22:47:51 2018] GET /?page=257 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 9/73] 203.208.60.126 () {38 vars in 605 bytes} [Fri Aug 24 22:47:52 2018] GET /?page=267 => generated 9722 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 20/74] 203.208.60.29 () {38 vars in 604 bytes} [Fri Aug 24 22:47:54 2018] GET /?page=341 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 10/75] 203.208.60.2 () {38 vars in 605 bytes} [Fri Aug 24 22:48:00 2018] GET /?page=2042 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 8/76] 203.208.60.109 () {38 vars in 607 bytes} [Fri Aug 24 22:48:01 2018] GET /?page=2053 => generated 9722 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 11/77] 203.208.60.21 () {38 vars in 604 bytes} [Fri Aug 24 22:48:02 2018] GET /?page=265 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 21/78] 203.208.60.74 () {38 vars in 606 bytes} [Fri Aug 24 22:48:03 2018] GET /?page=2043 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 22/79] 203.208.60.80 () {38 vars in 604 bytes} [Fri Aug 24 22:48:04 2018] GET /?page=100 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 12/80] 203.208.60.1 () {38 vars in 603 bytes} [Fri Aug 24 22:48:05 2018] GET /?page=250 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 13/81] 203.208.60.96 () {38 vars in 604 bytes} [Fri Aug 24 22:48:06 2018] GET /?page=103 => generated 9722 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 14/82] 203.208.60.62 () {38 vars in 604 bytes} [Fri Aug 24 22:48:07 2018] GET /?page=256 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 15/83] 203.208.60.103 () {38 vars in 607 bytes} [Fri Aug 24 22:48:08 2018] GET /?page=2071 => generated 9722 bytes in 18 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 9/84] 203.208.60.13 () {38 vars in 617 bytes} [Fri Aug 24 22:48:10 2018] GET /users/register/ => generated 5053 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 11/85] 203.208.60.127 () {38 vars in 615 bytes} [Fri Aug 24 22:48:13 2018] GET /files/?page=15 => generated 23125 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 12/86] 203.208.60.17 () {38 vars in 606 bytes} [Fri Aug 24 22:48:14 2018] GET /?page=2072 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 10/87] 203.208.60.121 () {38 vars in 607 bytes} [Fri Aug 24 22:48:15 2018] GET /?page=2052 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Not Found: /users/136314/flynn84 +[pid: 19577|app: 0|req: 13/88] 203.208.60.55 () {38 vars in 627 bytes} [Fri Aug 24 22:48:18 2018] GET /users/136314/flynn84 => generated 4490 bytes in 17 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 14/89] 203.208.60.2 () {38 vars in 613 bytes} [Fri Aug 24 22:48:19 2018] GET /files/?page=97 => generated 22972 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 11/90] 203.208.60.78 () {38 vars in 614 bytes} [Fri Aug 24 22:48:21 2018] GET /files/?page=98 => generated 23245 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 16/91] 203.208.60.109 () {38 vars in 615 bytes} [Fri Aug 24 22:49:02 2018] GET /files/?page=19 => generated 23326 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 17/92] 203.208.60.109 () {38 vars in 741 bytes} [Fri Aug 24 22:49:03 2018] GET /files/?page=20 => generated 23317 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 18/93] 203.208.60.127 () {38 vars in 615 bytes} [Fri Aug 24 22:49:09 2018] GET /files/?page=18 => generated 23398 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 19/94] 203.208.60.29 () {38 vars in 614 bytes} [Fri Aug 24 22:49:15 2018] GET /files/?page=16 => generated 23131 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 12/95] 203.208.60.29 () {38 vars in 616 bytes} [Fri Aug 24 22:49:20 2018] GET /files/?page=214 => generated 23296 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 20/96] 203.208.60.49 () {38 vars in 803 bytes} [Fri Aug 24 22:50:52 2018] GET /projects/pytorch/binaries/caffe2_benchmark.cc => generated 890014 bytes in 152 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 17/97] 203.208.60.55 () {38 vars in 767 bytes} [Fri Aug 24 22:50:56 2018] GET /projects/pytorch/.git/index => generated 890014 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 18/98] 203.208.60.127 () {38 vars in 741 bytes} [Fri Aug 24 22:50:59 2018] GET /files/?page=23 => generated 23039 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 13/99] 203.208.60.4 () {38 vars in 739 bytes} [Fri Aug 24 22:51:23 2018] GET /files/?page=24 => generated 23026 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 19/100] 203.208.60.8 () {38 vars in 739 bytes} [Fri Aug 24 22:51:23 2018] GET /files/?page=21 => generated 23318 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 14/101] 203.208.60.121 () {38 vars in 617 bytes} [Fri Aug 24 22:51:29 2018] GET /files/?page=219 => generated 23173 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 13/102] 203.208.60.105 () {38 vars in 617 bytes} [Fri Aug 24 22:51:34 2018] GET /files/?page=215 => generated 23310 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 15/103] 203.208.60.123 () {38 vars in 617 bytes} [Fri Aug 24 22:51:38 2018] GET /files/?page=213 => generated 23100 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 15/104] 203.208.60.17 () {38 vars in 783 bytes} [Fri Aug 24 22:51:41 2018] GET /projects/pytorch/torch/legacy/optim => generated 890014 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 23/105] 203.208.60.70 () {38 vars in 616 bytes} [Fri Aug 24 22:51:45 2018] GET /files/?page=208 => generated 23255 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 16/106] 203.208.60.19 () {38 vars in 604 bytes} [Fri Aug 24 22:51:47 2018] GET /?page=252 => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 21/107] 203.208.60.11 () {38 vars in 616 bytes} [Fri Aug 24 22:51:50 2018] GET /files/?page=209 => generated 23177 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 24/108] 203.208.60.62 () {38 vars in 616 bytes} [Fri Aug 24 22:51:52 2018] GET /files/?page=216 => generated 23415 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Not Found: /manager/html +[pid: 19577|app: 0|req: 16/109] 202.43.154.162 () {36 vars in 515 bytes} [Fri Aug 24 22:52:40 2018] GET /manager/html => generated 3101 bytes in 22 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 20/110] 203.208.60.30 () {38 vars in 616 bytes} [Fri Aug 24 22:53:31 2018] GET /files/?page=217 => generated 23348 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 21/111] 203.208.60.90 () {38 vars in 616 bytes} [Fri Aug 24 22:53:33 2018] GET /files/?page=100 => generated 23335 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 17/112] 203.208.60.109 () {38 vars in 796 bytes} [Fri Aug 24 22:53:35 2018] GET /projects/pytorch/.jenkins/pytorch/test.sh => generated 890014 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 14/113] 203.208.60.53 () {38 vars in 620 bytes} [Fri Aug 24 22:53:36 2018] GET /?sort=hot&page=28 => generated 9722 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 25/114] 203.208.60.77 () {38 vars in 616 bytes} [Fri Aug 24 22:53:38 2018] GET /files/?page=341 => generated 23430 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 26/115] 203.208.60.17 () {38 vars in 620 bytes} [Fri Aug 24 22:53:39 2018] GET /?sort=hot&page=57 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 17/116] 203.208.60.10 () {38 vars in 620 bytes} [Fri Aug 24 22:53:40 2018] GET /?sort=hot&page=59 => generated 9722 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 22/117] 203.208.60.3 () {38 vars in 798 bytes} [Fri Aug 24 22:53:41 2018] GET /projects/pytorch/torch/autograd/function.py => generated 890014 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 18/118] 203.208.60.53 () {38 vars in 620 bytes} [Fri Aug 24 22:53:42 2018] GET /?sort=hot&page=51 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 15/119] 203.208.60.121 () {38 vars in 810 bytes} [Fri Aug 24 22:53:44 2018] GET /projects/pytorch/tools/docker/Dockerfile_runtime => generated 890014 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 18/120] 203.208.60.74 () {38 vars in 620 bytes} [Fri Aug 24 22:53:45 2018] GET /?sort=hot&page=53 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 19/121] 203.208.60.31 () {38 vars in 620 bytes} [Fri Aug 24 22:53:47 2018] GET /?sort=hot&page=55 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 22/122] 203.208.60.92 () {38 vars in 823 bytes} [Fri Aug 24 22:53:48 2018] GET /projects/pytorch/caffe2/operators/elementwise_div_op.cu => generated 890014 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 19/123] 203.208.60.21 () {38 vars in 620 bytes} [Fri Aug 24 22:53:50 2018] GET /?sort=hot&page=56 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 20/124] 203.208.60.13 () {38 vars in 620 bytes} [Fri Aug 24 22:53:51 2018] GET /?sort=hot&page=58 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 20/125] 203.208.60.90 () {38 vars in 620 bytes} [Fri Aug 24 22:53:53 2018] GET /?sort=hot&page=41 => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 23/126] 203.208.60.1 () {38 vars in 619 bytes} [Fri Aug 24 22:53:54 2018] GET /?sort=hot&page=27 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 23/127] 203.208.60.37 () {38 vars in 620 bytes} [Fri Aug 24 22:53:55 2018] GET /?sort=hot&page=52 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 24/128] 203.208.60.20 () {38 vars in 742 bytes} [Fri Aug 24 22:53:57 2018] GET /files/?page=218 => generated 23392 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 27/129] 203.208.60.15 () {38 vars in 620 bytes} [Fri Aug 24 22:53:58 2018] GET /?sort=hot&page=43 => generated 9722 bytes in 22 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 21/130] 203.208.60.95 () {38 vars in 620 bytes} [Fri Aug 24 22:54:00 2018] GET /?sort=hot&page=50 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 24/131] 203.208.60.87 () {38 vars in 624 bytes} [Fri Aug 24 22:54:02 2018] GET /?sort=hot&page=2056 => generated 9722 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 16/132] 203.208.60.49 () {38 vars in 620 bytes} [Fri Aug 24 22:54:04 2018] GET /?sort=hot&page=40 => generated 9722 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 22/133] 203.208.60.87 () {38 vars in 742 bytes} [Fri Aug 24 22:54:07 2018] GET /files/?page=216 => generated 23415 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 23/134] 203.208.60.11 () {38 vars in 620 bytes} [Fri Aug 24 22:54:07 2018] GET /?sort=hot&page=42 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 17/135] 203.208.60.127 () {38 vars in 741 bytes} [Fri Aug 24 22:54:08 2018] GET /files/?page=22 => generated 23135 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 18/136] 203.208.60.26 () {38 vars in 847 bytes} [Fri Aug 24 22:54:09 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/reshape_mover.h => generated 2729035 bytes in 190 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 24/137] 203.208.60.14 () {38 vars in 742 bytes} [Fri Aug 24 22:54:55 2018] GET /files/?page=208 => generated 23255 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 28/138] 203.208.60.8 () {38 vars in 623 bytes} [Fri Aug 24 22:54:55 2018] GET /?sort=hot&page=2048 => generated 9722 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 25/139] 203.208.60.72 () {38 vars in 620 bytes} [Fri Aug 24 22:55:03 2018] GET /?sort=hot&page=54 => generated 9722 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 29/140] 203.208.60.13 () {38 vars in 624 bytes} [Fri Aug 24 22:55:09 2018] GET /?sort=hot&page=2050 => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 21/141] 203.208.60.36 () {38 vars in 624 bytes} [Fri Aug 24 22:55:15 2018] GET /?sort=hot&page=2047 => generated 9722 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 26/142] 203.208.60.20 () {38 vars in 624 bytes} [Fri Aug 24 22:55:19 2018] GET /?sort=hot&page=2051 => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 27/143] 203.208.60.94 () {38 vars in 624 bytes} [Fri Aug 24 22:55:24 2018] GET /?sort=hot&page=2057 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 19/144] 203.208.60.35 () {38 vars in 863 bytes} [Fri Aug 24 22:55:27 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/proto/tpu_embedding_config.proto => generated 2729035 bytes in 230 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19578|app: 0|req: 20/145] 203.208.60.115 () {38 vars in 601 bytes} [Fri Aug 24 22:55:31 2018] GET /?page=7 => generated 9722 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 30/146] 203.208.60.53 () {38 vars in 742 bytes} [Fri Aug 24 22:55:46 2018] GET /files/?page=209 => generated 23177 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 25/147] 203.208.60.11 () {38 vars in 626 bytes} [Fri Aug 24 22:55:51 2018] GET /?sort=latest&page=48 => generated 9705 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 26/148] 203.208.60.26 () {38 vars in 616 bytes} [Fri Aug 24 22:55:59 2018] GET /files/?page=211 => generated 23144 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 27/149] 203.208.60.35 () {38 vars in 616 bytes} [Fri Aug 24 22:56:03 2018] GET /files/?page=340 => generated 23218 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 31/150] 203.208.60.13 () {38 vars in 626 bytes} [Fri Aug 24 22:56:06 2018] GET /?sort=latest&page=50 => generated 9705 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 21/151] 203.208.60.92 () {38 vars in 885 bytes} [Fri Aug 24 22:56:09 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/while_loop_invariant_code_motion.h => generated 2729035 bytes in 209 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 22/152] 203.208.60.88 () {38 vars in 857 bytes} [Fri Aug 24 22:56:12 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Round.pbtxt => generated 2729035 bytes in 175 msecs (HTTP/1.1 200) 4 headers in 127 bytes (8 switches on core 1) +[pid: 19582|app: 0|req: 32/153] 203.208.60.4 () {38 vars in 786 bytes} [Fri Aug 24 22:56:14 2018] GET /projects/pytorch/caffe2/opt/passes.cc => generated 890014 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 25/154] 203.208.60.77 () {38 vars in 630 bytes} [Fri Aug 24 22:56:16 2018] GET /?sort=latest&page=2069 => generated 9705 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 28/155] 203.208.60.13 () {38 vars in 626 bytes} [Fri Aug 24 22:56:30 2018] GET /?sort=latest&page=47 => generated 9705 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 33/156] 203.208.60.29 () {38 vars in 742 bytes} [Fri Aug 24 22:56:36 2018] GET /files/?page=211 => generated 23144 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 22/157] 203.208.60.11 () {38 vars in 630 bytes} [Fri Aug 24 22:56:37 2018] GET /?sort=latest&page=2074 => generated 9705 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 26/158] 203.208.60.69 () {38 vars in 630 bytes} [Fri Aug 24 22:57:43 2018] GET /?sort=latest&page=2063 => generated 9705 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 27/159] 203.208.60.31 () {38 vars in 630 bytes} [Fri Aug 24 22:57:46 2018] GET /?sort=latest&page=2062 => generated 9705 bytes in 22 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 29/160] 203.208.60.62 () {38 vars in 630 bytes} [Fri Aug 24 22:57:49 2018] GET /?sort=latest&page=2068 => generated 9705 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 30/161] 203.208.60.87 () {38 vars in 616 bytes} [Fri Aug 24 22:57:52 2018] GET /files/?page=212 => generated 23019 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 34/162] 203.208.60.19 () {38 vars in 620 bytes} [Fri Aug 24 22:57:54 2018] GET /?sort=hot&page=38 => generated 9722 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 28/163] 203.208.60.49 () {38 vars in 637 bytes} [Fri Aug 24 22:57:56 2018] GET /projects/Notes/.git/hooks => generated 39377 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 23/164] 203.208.60.30 () {38 vars in 630 bytes} [Fri Aug 24 22:57:58 2018] GET /?sort=latest&page=2072 => generated 9705 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 23/165] 203.208.60.105 () {38 vars in 670 bytes} [Fri Aug 24 22:57:59 2018] GET /projects/pytorch/scripts/build_android.sh => generated 890012 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +Internal Server Error: /projects/tree_method/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 24/166] 203.208.60.44 () {38 vars in 635 bytes} [Fri Aug 24 22:58:01 2018] GET /projects/tree_method/21/ => generated 77190 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 24/167] 203.208.60.17 () {38 vars in 742 bytes} [Fri Aug 24 22:58:37 2018] GET /files/?page=217 => generated 23348 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 28/168] 203.208.60.78 () {38 vars in 645 bytes} [Fri Aug 24 22:58:38 2018] GET /projects/pytorch/tools/docker => generated 890014 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 35/169] 203.208.60.69 () {38 vars in 677 bytes} [Fri Aug 24 22:58:44 2018] GET /projects/tensorflow/tensorflow/tensorflow.bzl => generated 2729036 bytes in 194 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 29/170] 203.208.60.126 () {38 vars in 650 bytes} [Fri Aug 24 22:58:49 2018] GET /projects/Notes/.git/description => generated 39377 bytes in 18 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/404/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 36/171] 203.208.60.54 () {38 vars in 631 bytes} [Fri Aug 24 22:58:54 2018] GET /projects/14/files/404/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 31/172] 203.208.60.54 () {38 vars in 742 bytes} [Fri Aug 24 22:58:58 2018] GET /files/?page=204 => generated 22982 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 32/173] 203.208.60.35 () {38 vars in 742 bytes} [Fri Aug 24 22:59:02 2018] GET /files/?page=203 => generated 23156 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 30/174] 203.208.60.15 () {38 vars in 673 bytes} [Fri Aug 24 22:59:05 2018] GET /projects/tensorflow/tools/tf_env_collect.sh => generated 2729032 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 31/175] 203.208.60.115 () {38 vars in 680 bytes} [Fri Aug 24 22:59:08 2018] GET /projects/scikit-learn/sklearn/gaussian_process => generated 240518 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 37/176] 203.208.60.109 () {38 vars in 680 bytes} [Fri Aug 24 22:59:50 2018] GET /projects/scikit-learn/examples/semi_supervised => generated 240518 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 38/177] 203.208.60.126 () {38 vars in 743 bytes} [Fri Aug 24 22:59:57 2018] GET /files/?page=206 => generated 23340 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/402/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 33/178] 203.208.60.121 () {38 vars in 632 bytes} [Fri Aug 24 22:59:59 2018] GET /projects/14/files/402/ => generated 77149 bytes in 55 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 34/179] 203.208.60.123 () {38 vars in 822 bytes} [Fri Aug 24 23:00:06 2018] GET /projects/tensorflow/tensorflow/compiler/aot/codegen.cc => generated 2729035 bytes in 203 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/17/files/516/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 39/180] 203.208.60.94 () {38 vars in 631 bytes} [Fri Aug 24 23:00:13 2018] GET /projects/17/files/516/ => generated 77148 bytes in 44 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 40/181] 203.208.60.77 () {38 vars in 887 bytes} [Fri Aug 24 23:00:18 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_DataFormatVecPermute.pbtxt => generated 2729036 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 1) +[pid: 19580|app: 0|req: 25/182] 203.208.60.49 () {38 vars in 855 bytes} [Fri Aug 24 23:00:23 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Imag.pbtxt => generated 2729035 bytes in 197 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 29/183] 203.208.60.126 () {38 vars in 603 bytes} [Fri Aug 24 23:00:27 2018] GET /?page=39 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/406/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 25/184] 203.208.60.21 () {38 vars in 631 bytes} [Fri Aug 24 23:00:31 2018] GET /projects/14/files/406/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 35/185] 203.208.60.97 () {38 vars in 630 bytes} [Fri Aug 24 23:01:09 2018] GET /?sort=latest&page=2073 => generated 9705 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/399/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 36/186] 203.208.60.28 () {38 vars in 631 bytes} [Fri Aug 24 23:01:15 2018] GET /projects/14/files/399/ => generated 77148 bytes in 46 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 26/187] 203.208.60.37 () {38 vars in 777 bytes} [Fri Aug 24 23:01:18 2018] GET /projects/pytorch/torch/legacy/nn => generated 890014 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 30/188] 203.208.60.4 () {38 vars in 888 bytes} [Fri Aug 24 23:01:20 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python/gan_estimator_impl.py => generated 2729035 bytes in 183 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 31/189] 203.208.60.4 () {38 vars in 852 bytes} [Fri Aug 24 23:01:22 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/training_ops.cc => generated 2729035 bytes in 171 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 37/190] 203.208.60.19 () {38 vars in 831 bytes} [Fri Aug 24 23:01:24 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/device.h => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 38/191] 203.208.60.37 () {38 vars in 887 bytes} [Fri Aug 24 23:01:26 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/vector_diffeomixture.py => generated 2729035 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19578|app: 0|req: 27/192] 203.208.60.121 () {38 vars in 631 bytes} [Fri Aug 24 23:02:00 2018] GET /files/?sort=hot&page=8 => generated 23280 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 28/193] 203.208.60.115 () {38 vars in 852 bytes} [Fri Aug 24 23:02:00 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/identity_op.cc => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 41/194] 203.208.60.94 () {38 vars in 867 bytes} [Fri Aug 24 23:02:06 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/buffer_assignment_test.cc => generated 2729035 bytes in 173 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 0) +Internal Server Error: /projects/13/files/342/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 42/195] 203.208.60.115 () {38 vars in 632 bytes} [Fri Aug 24 23:02:11 2018] GET /projects/13/files/342/ => generated 77149 bytes in 55 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 26/196] 203.208.60.90 () {38 vars in 847 bytes} [Fri Aug 24 23:02:16 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/function_test.cc => generated 2729035 bytes in 193 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 27/197] 203.208.60.80 () {38 vars in 837 bytes} [Fri Aug 24 23:03:46 2018] GET /projects/tensorflow/tensorflow/core/lib/io/zlib_inputstream.cc => generated 2729035 bytes in 261 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/14/files/375/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 32/198] 203.208.60.121 () {38 vars in 632 bytes} [Fri Aug 24 23:03:47 2018] GET /projects/14/files/375/ => generated 77149 bytes in 52 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/400/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 33/199] 203.208.60.31 () {38 vars in 631 bytes} [Fri Aug 24 23:04:01 2018] GET /projects/14/files/400/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/17/files/507/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 34/200] 203.208.60.95 () {38 vars in 631 bytes} [Fri Aug 24 23:04:14 2018] GET /projects/17/files/507/ => generated 77148 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/352/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 32/201] 203.208.60.4 () {38 vars in 630 bytes} [Fri Aug 24 23:04:48 2018] GET /projects/13/files/352/ => generated 77147 bytes in 86 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 35/202] 203.208.60.97 () {38 vars in 849 bytes} [Fri Aug 24 23:04:48 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/shaped_buffer.cc => generated 2729035 bytes in 200 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19586|app: 0|req: 36/203] 203.208.60.126 () {38 vars in 842 bytes} [Fri Aug 24 23:04:59 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_runner.h => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 0) +[pid: 19586|app: 0|req: 37/204] 203.208.60.77 () {38 vars in 626 bytes} [Fri Aug 24 23:05:09 2018] GET /?sort=latest&page=49 => generated 9705 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/17/files/514/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 29/205] 203.208.60.127 () {38 vars in 632 bytes} [Fri Aug 24 23:05:17 2018] GET /projects/17/files/514/ => generated 77149 bytes in 64 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 30/206] 203.208.60.76 () {38 vars in 873 bytes} [Fri Aug 24 23:05:24 2018] GET /projects/tensorflow/tensorflow/compiler/aot/test_graph_tfunknownop2.config.pbtxt => generated 2729035 bytes in 220 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 39/207] 203.208.60.15 () {38 vars in 630 bytes} [Fri Aug 24 23:06:28 2018] GET /files/?sort=hot&page=5 => generated 22880 bytes in 128 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 43/208] 203.208.60.36 () {38 vars in 853 bytes} [Fri Aug 24 23:06:31 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Exp.pbtxt => generated 2729035 bytes in 198 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 38/209] 203.208.60.26 () {38 vars in 815 bytes} [Fri Aug 24 23:07:46 2018] GET /projects/pytorch/binaries/convert_caffe_image_db.cc => generated 890014 bytes in 141 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 44/210] 203.208.60.90 () {38 vars in 861 bytes} [Fri Aug 24 23:07:57 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_constant_folding.h => generated 2729035 bytes in 192 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 39/211] 203.208.60.15 () {38 vars in 730 bytes} [Fri Aug 24 23:08:40 2018] GET /?page=251 => generated 9722 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +Internal Server Error: /projects/17/files/508/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 33/212] 203.208.60.29 () {38 vars in 631 bytes} [Fri Aug 24 23:08:40 2018] GET /projects/17/files/508/ => generated 77148 bytes in 56 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/341/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 34/213] 203.208.60.3 () {38 vars in 630 bytes} [Fri Aug 24 23:08:52 2018] GET /projects/13/files/341/ => generated 77147 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 28/214] 203.208.60.98 () {38 vars in 730 bytes} [Fri Aug 24 23:09:07 2018] GET /?page=248 => generated 9722 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/378/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 35/215] 203.208.60.70 () {38 vars in 631 bytes} [Fri Aug 24 23:09:12 2018] GET /projects/14/files/378/ => generated 77148 bytes in 42 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 29/216] 203.208.60.17 () {38 vars in 730 bytes} [Fri Aug 24 23:09:19 2018] GET /?page=268 => generated 9722 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +Internal Server Error: /projects/13/files/354/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 36/217] 203.208.60.74 () {38 vars in 631 bytes} [Fri Aug 24 23:09:27 2018] GET /projects/13/files/354/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 30/218] 203.208.60.26 () {38 vars in 730 bytes} [Fri Aug 24 23:09:33 2018] GET /?page=252 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/371/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 40/219] 203.208.60.26 () {38 vars in 631 bytes} [Fri Aug 24 23:09:38 2018] GET /projects/14/files/371/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 37/220] 203.208.60.123 () {38 vars in 731 bytes} [Fri Aug 24 23:09:42 2018] GET /?page=266 => generated 9722 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 38/221] 203.208.60.29 () {38 vars in 730 bytes} [Fri Aug 24 23:09:46 2018] GET /?page=249 => generated 9722 bytes in 22 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/382/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 31/222] 203.208.60.70 () {38 vars in 631 bytes} [Fri Aug 24 23:10:16 2018] GET /projects/14/files/382/ => generated 77148 bytes in 76 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 45/223] 203.208.60.98 () {38 vars in 730 bytes} [Fri Aug 24 23:10:25 2018] GET /?page=267 => generated 9722 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 46/224] 203.208.60.29 () {38 vars in 730 bytes} [Fri Aug 24 23:10:31 2018] GET /?page=250 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 40/225] 203.208.60.3 () {38 vars in 739 bytes} [Fri Aug 24 23:10:37 2018] GET /files/?page=98 => generated 23245 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 41/226] 203.208.60.121 () {38 vars in 741 bytes} [Fri Aug 24 23:10:42 2018] GET /files/?page=99 => generated 23136 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 32/227] 203.208.60.67 () {38 vars in 630 bytes} [Fri Aug 24 23:10:46 2018] GET /files/?sort=hot&page=6 => generated 22769 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +Internal Server Error: /projects/13/files/339/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 33/228] 203.208.60.4 () {38 vars in 630 bytes} [Fri Aug 24 23:10:50 2018] GET /projects/13/files/339/ => generated 77147 bytes in 47 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 39/229] 203.208.60.108 () {38 vars in 743 bytes} [Fri Aug 24 23:10:53 2018] GET /files/?page=219 => generated 23173 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 40/230] 203.208.60.30 () {38 vars in 763 bytes} [Fri Aug 24 23:10:56 2018] GET /projects/Notes/res/layout => generated 39377 bytes in 15 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 47/231] 203.208.60.115 () {38 vars in 798 bytes} [Fri Aug 24 23:10:58 2018] GET /projects/pytorch/binaries/make_mnist_db.cc => generated 890014 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +Internal Server Error: /projects/13/files/337/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 42/232] 203.208.60.95 () {38 vars in 631 bytes} [Fri Aug 24 23:11:01 2018] GET /projects/13/files/337/ => generated 77148 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 41/233] 203.208.60.69 () {38 vars in 797 bytes} [Fri Aug 24 23:11:03 2018] GET /projects/pytorch/binaries/tutorial_blob.cc => generated 890014 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 42/234] 203.208.60.80 () {38 vars in 823 bytes} [Fri Aug 24 23:11:07 2018] GET /projects/scikit-learn/sklearn/compose/tests/__init__.py => generated 240518 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19578|app: 0|req: 31/235] 203.208.60.74 () {38 vars in 756 bytes} [Fri Aug 24 23:11:10 2018] GET /files/?sort=hot&page=8 => generated 23280 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 41/236] 203.208.60.70 () {38 vars in 614 bytes} [Fri Aug 24 23:11:13 2018] GET /files/?page=17 => generated 23032 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 32/237] 203.208.60.29 () {38 vars in 630 bytes} [Fri Aug 24 23:11:16 2018] GET /files/?sort=hot&page=3 => generated 22820 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/13/files/355/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 34/238] 203.208.60.12 () {38 vars in 631 bytes} [Fri Aug 24 23:11:19 2018] GET /projects/13/files/355/ => generated 77148 bytes in 49 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 35/239] 203.208.60.54 () {38 vars in 756 bytes} [Fri Aug 24 23:11:23 2018] GET /files/?sort=hot&page=5 => generated 22880 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 36/240] 203.208.60.103 () {38 vars in 757 bytes} [Fri Aug 24 23:11:26 2018] GET /files/?sort=hot&page=6 => generated 22769 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 37/241] 203.208.60.49 () {38 vars in 785 bytes} [Fri Aug 24 23:11:29 2018] GET /projects/tensorflow/tensorflow/tools => generated 2729034 bytes in 199 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +Internal Server Error: /projects/14/files/376/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 43/242] 203.208.60.12 () {38 vars in 631 bytes} [Fri Aug 24 23:11:41 2018] GET /projects/14/files/376/ => generated 77148 bytes in 51 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 38/243] 203.208.60.70 () {38 vars in 756 bytes} [Fri Aug 24 23:11:42 2018] GET /files/?sort=hot&page=3 => generated 22820 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 43/244] 203.208.60.74 () {38 vars in 756 bytes} [Fri Aug 24 23:11:44 2018] GET /files/?sort=hot&page=7 => generated 23090 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 42/245] 203.208.60.95 () {38 vars in 791 bytes} [Fri Aug 24 23:11:46 2018] GET /projects/Notes/res/layout/widget_2x.xml => generated 39377 bytes in 17 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 44/246] 203.208.60.67 () {38 vars in 756 bytes} [Fri Aug 24 23:11:48 2018] GET /files/?sort=hot&page=1 => generated 22741 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 43/247] 203.208.60.14 () {38 vars in 756 bytes} [Fri Aug 24 23:11:51 2018] GET /files/?sort=hot&page=9 => generated 23457 bytes in 58 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/17/files/509/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 45/248] 203.208.60.76 () {38 vars in 631 bytes} [Fri Aug 24 23:11:54 2018] GET /projects/17/files/509/ => generated 77148 bytes in 41 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 44/249] 203.208.60.54 () {38 vars in 758 bytes} [Fri Aug 24 23:11:57 2018] GET /files/?sort=hot&page=11 => generated 23480 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 45/250] 203.208.60.98 () {38 vars in 756 bytes} [Fri Aug 24 23:12:43 2018] GET /files/?sort=hot&page=4 => generated 22829 bytes in 112 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +Internal Server Error: /projects/13/files/368/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 46/251] 203.208.60.78 () {38 vars in 631 bytes} [Fri Aug 24 23:12:43 2018] GET /projects/13/files/368/ => generated 77148 bytes in 54 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 46/252] 203.208.60.44 () {38 vars in 758 bytes} [Fri Aug 24 23:13:21 2018] GET /files/?sort=hot&page=13 => generated 23550 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +Internal Server Error: /projects/tree_method/13/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 47/253] 203.208.60.37 () {44 vars in 803 bytes} [Fri Aug 24 23:13:22 2018] GET /projects/tree_method/13/ => generated 15681 bytes in 27 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 0) +Internal Server Error: /projects/17/files/510/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 48/254] 203.208.60.103 () {38 vars in 632 bytes} [Fri Aug 24 23:13:32 2018] GET /projects/17/files/510/ => generated 77149 bytes in 128 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/355/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 47/255] 203.208.60.29 () {44 vars in 827 bytes} [Fri Aug 24 23:13:40 2018] GET /projects/13/files/355/find_function/ => generated 15741 bytes in 32 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/397/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 33/256] 203.208.60.10 () {38 vars in 631 bytes} [Fri Aug 24 23:13:47 2018] GET /projects/14/files/397/ => generated 77148 bytes in 58 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 49/257] 101.128.72.166 () {32 vars in 463 bytes} [Fri Aug 24 23:13:50 2018] GET / => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 44/258] 203.208.60.12 () {38 vars in 756 bytes} [Fri Aug 24 23:14:44 2018] GET /files/?sort=hot&page=2 => generated 22879 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/380/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 48/259] 203.208.60.37 () {38 vars in 631 bytes} [Fri Aug 24 23:14:44 2018] GET /projects/14/files/380/ => generated 77148 bytes in 59 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Internal Server Error: /projects/14/files/379/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 39/260] 203.208.60.85 () {38 vars in 631 bytes} [Fri Aug 24 23:15:33 2018] GET /projects/14/files/379/ => generated 77148 bytes in 95 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 34/261] 203.208.60.70 () {38 vars in 758 bytes} [Fri Aug 24 23:15:33 2018] GET /files/?sort=hot&page=10 => generated 23434 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 35/262] 203.208.60.55 () {38 vars in 762 bytes} [Fri Aug 24 23:15:47 2018] GET /files/?sort=latest&page=7 => generated 23058 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/355/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 48/263] 203.208.60.11 () {38 vars in 659 bytes} [Fri Aug 24 23:17:18 2018] GET /projects/13/files/355/find_function/ => generated 77442 bytes in 93 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 45/264] 203.208.60.123 () {38 vars in 731 bytes} [Fri Aug 24 23:17:28 2018] GET /?page=265 => generated 9722 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +Not Found: /src/main/java/com/geccocrawler/gecco/monitor/DownloadMBean.java +[pid: 19584|app: 0|req: 50/265] 203.208.60.78 () {38 vars in 713 bytes} [Fri Aug 24 23:18:02 2018] GET /src/main/java/com/geccocrawler/gecco/monitor/DownloadMBean.java => generated 3260 bytes in 24 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 49/266] 203.208.60.54 () {38 vars in 762 bytes} [Fri Aug 24 23:18:02 2018] GET /files/?sort=latest&page=1 => generated 22388 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 50/267] 203.208.60.105 () {38 vars in 763 bytes} [Fri Aug 24 23:18:13 2018] GET /files/?sort=hot&page=2085 => generated 12528 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 51/268] 203.208.60.26 () {38 vars in 764 bytes} [Fri Aug 24 23:18:21 2018] GET /files/?sort=latest&page=12 => generated 23171 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/398/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 52/269] 203.208.60.69 () {38 vars in 631 bytes} [Fri Aug 24 23:18:29 2018] GET /projects/14/files/398/ => generated 77148 bytes in 47 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 53/270] 203.208.60.19 () {38 vars in 762 bytes} [Fri Aug 24 23:18:35 2018] GET /files/?sort=latest&page=4 => generated 22568 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/373/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 54/271] 203.208.60.2 () {38 vars in 630 bytes} [Fri Aug 24 23:19:05 2018] GET /projects/14/files/373/ => generated 77147 bytes in 65 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 36/272] 203.208.60.19 () {38 vars in 762 bytes} [Fri Aug 24 23:19:05 2018] GET /files/?sort=latest&page=9 => generated 23515 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 55/273] 203.208.60.4 () {38 vars in 761 bytes} [Fri Aug 24 23:19:36 2018] GET /files/?sort=hot&page=2082 => generated 22931 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +Internal Server Error: /projects/13/files/350/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 56/274] 203.208.60.121 () {38 vars in 632 bytes} [Fri Aug 24 23:19:37 2018] GET /projects/13/files/350/ => generated 77149 bytes in 42 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 57/275] 203.208.60.74 () {38 vars in 762 bytes} [Fri Aug 24 23:19:46 2018] GET /files/?sort=latest&page=3 => generated 22405 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/14/files/405/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 40/276] 203.208.60.70 () {38 vars in 631 bytes} [Fri Aug 24 23:19:54 2018] GET /projects/14/files/405/ => generated 77148 bytes in 68 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 49/277] 203.208.60.108 () {38 vars in 763 bytes} [Fri Aug 24 23:20:17 2018] GET /files/?sort=hot&page=2084 => generated 22885 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +Internal Server Error: /projects/13/files/353/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 58/278] 203.208.60.36 () {38 vars in 631 bytes} [Fri Aug 24 23:20:18 2018] GET /projects/13/files/353/ => generated 77148 bytes in 48 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/13/files/353/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 59/279] 203.208.60.20 () {44 vars in 827 bytes} [Fri Aug 24 23:20:25 2018] GET /projects/13/files/353/find_function/ => generated 15741 bytes in 19 msecs (HTTP/1.1 500) 4 headers in 145 bytes (2 switches on core 1) +Internal Server Error: /projects/17/files/513/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 51/280] 203.208.60.85 () {38 vars in 631 bytes} [Fri Aug 24 23:20:31 2018] GET /projects/17/files/513/ => generated 77148 bytes in 54 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/tree_method/13/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 46/281] 203.208.60.70 () {44 vars in 803 bytes} [Fri Aug 24 23:20:37 2018] GET /projects/tree_method/13/ => generated 15681 bytes in 28 msecs (HTTP/1.1 500) 4 headers in 145 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 60/282] 203.208.60.92 () {38 vars in 762 bytes} [Fri Aug 24 23:20:42 2018] GET /files/?sort=hot&page=2080 => generated 23017 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +Internal Server Error: /projects/13/files/347/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 47/283] 203.208.60.105 () {38 vars in 632 bytes} [Fri Aug 24 23:20:46 2018] GET /projects/13/files/347/ => generated 77149 bytes in 72 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 61/284] 203.208.60.67 () {38 vars in 762 bytes} [Fri Aug 24 23:20:49 2018] GET /files/?sort=latest&page=8 => generated 23287 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 52/285] 203.208.60.67 () {38 vars in 762 bytes} [Fri Aug 24 23:20:53 2018] GET /files/?sort=latest&page=5 => generated 22655 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 53/286] 203.208.60.31 () {38 vars in 762 bytes} [Fri Aug 24 23:20:55 2018] GET /files/?sort=hot&page=2076 => generated 23316 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 62/287] 203.208.60.14 () {38 vars in 630 bytes} [Fri Aug 24 23:20:58 2018] GET /files/?sort=hot&page=1 => generated 22741 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 50/288] 203.208.60.31 () {38 vars in 630 bytes} [Fri Aug 24 23:21:02 2018] GET /files/?sort=hot&page=7 => generated 23090 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/13/files/345/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 54/289] 203.208.60.97 () {38 vars in 631 bytes} [Fri Aug 24 23:21:06 2018] GET /projects/13/files/345/ => generated 77148 bytes in 66 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 63/290] 203.208.60.37 () {38 vars in 762 bytes} [Fri Aug 24 23:21:10 2018] GET /files/?sort=latest&page=2 => generated 22583 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 51/291] 203.208.60.70 () {38 vars in 762 bytes} [Fri Aug 24 23:21:14 2018] GET /files/?sort=latest&page=6 => generated 22756 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/17/files/512/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 48/292] 203.208.60.67 () {38 vars in 631 bytes} [Fri Aug 24 23:21:18 2018] GET /projects/17/files/512/ => generated 77148 bytes in 52 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 52/293] 203.208.60.30 () {38 vars in 762 bytes} [Fri Aug 24 23:21:22 2018] GET /files/?sort=hot&page=2077 => generated 23472 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 53/294] 203.208.60.15 () {38 vars in 764 bytes} [Fri Aug 24 23:21:26 2018] GET /files/?sort=latest&page=10 => generated 23503 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/351/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 55/295] 203.208.60.21 () {38 vars in 631 bytes} [Fri Aug 24 23:21:30 2018] GET /projects/13/files/351/ => generated 77148 bytes in 54 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 56/296] 203.208.60.20 () {38 vars in 768 bytes} [Fri Aug 24 23:21:34 2018] GET /files/?sort=latest&page=2085 => generated 12402 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 41/297] 203.208.60.80 () {38 vars in 762 bytes} [Fri Aug 24 23:21:37 2018] GET /files/?sort=hot&page=2079 => generated 23258 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/353/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 37/298] 203.208.60.97 () {38 vars in 659 bytes} [Fri Aug 24 23:21:49 2018] GET /projects/13/files/353/find_function/ => generated 77442 bytes in 62 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 42/299] 203.208.60.17 () {38 vars in 768 bytes} [Fri Aug 24 23:21:49 2018] GET /files/?sort=latest&page=2084 => generated 22692 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 64/300] 203.208.60.85 () {38 vars in 781 bytes} [Fri Aug 24 23:21:51 2018] GET /projects/pytorch/caffe2/python/trt => generated 890014 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 57/301] 203.208.60.90 () {38 vars in 762 bytes} [Fri Aug 24 23:21:53 2018] GET /files/?sort=hot&page=2075 => generated 23243 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 54/302] 203.208.60.76 () {38 vars in 783 bytes} [Fri Aug 24 23:21:57 2018] GET /projects/pytorch/caffe2/python/mint => generated 890014 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +Internal Server Error: /projects/17/files/511/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 55/303] 203.208.60.123 () {38 vars in 632 bytes} [Fri Aug 24 23:22:00 2018] GET /projects/17/files/511/ => generated 77149 bytes in 125 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 49/304] 203.208.60.26 () {38 vars in 762 bytes} [Fri Aug 24 23:22:04 2018] GET /files/?sort=hot&page=2078 => generated 23455 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 38/305] 203.208.60.76 () {38 vars in 787 bytes} [Fri Aug 24 23:22:08 2018] GET /projects/pytorch/torch/csrc/THP_API.h => generated 890014 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 50/306] 203.208.60.55 () {38 vars in 795 bytes} [Fri Aug 24 23:22:11 2018] GET /projects/pytorch/caffe2/python/dataset.py => generated 890014 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 65/307] 203.208.60.8 () {38 vars in 629 bytes} [Fri Aug 24 23:22:15 2018] GET /files/?sort=hot&page=2 => generated 22879 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/14/files/377/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 66/308] 203.208.60.78 () {38 vars in 631 bytes} [Fri Aug 24 23:22:18 2018] GET /projects/14/files/377/ => generated 77148 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 39/309] 203.208.60.77 () {38 vars in 762 bytes} [Fri Aug 24 23:22:22 2018] GET /files/?sort=hot&page=2081 => generated 23129 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 58/310] 203.208.60.85 () {38 vars in 762 bytes} [Fri Aug 24 23:22:25 2018] GET /files/?sort=hot&page=2083 => generated 22855 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 51/311] 203.208.60.35 () {38 vars in 801 bytes} [Fri Aug 24 23:22:28 2018] GET /projects/pytorch/tools/setup_helpers/cuda.py => generated 890014 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +Internal Server Error: /projects/13/files/346/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 52/312] 203.208.60.26 () {38 vars in 631 bytes} [Fri Aug 24 23:22:32 2018] GET /projects/13/files/346/ => generated 77148 bytes in 117 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 56/313] 203.208.60.70 () {38 vars in 807 bytes} [Fri Aug 24 23:22:35 2018] GET /projects/pytorch/torch/autograd/anomaly_mode.py => generated 890014 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 57/314] 203.208.60.11 () {38 vars in 768 bytes} [Fri Aug 24 23:22:38 2018] GET /files/?sort=latest&page=2079 => generated 23120 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 67/315] 203.208.60.19 () {38 vars in 821 bytes} [Fri Aug 24 23:22:42 2018] GET /projects/pytorch/.jenkins/pytorch/docker-build-test.sh => generated 890014 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +Internal Server Error: /projects/13/files/356/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 43/316] 203.208.60.115 () {38 vars in 632 bytes} [Fri Aug 24 23:22:45 2018] GET /projects/13/files/356/ => generated 77149 bytes in 103 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 44/317] 203.208.60.103 () {38 vars in 858 bytes} [Fri Aug 24 23:22:48 2018] GET /projects/scikit-learn/doc/tutorial/text_analytics/data/twenty_newsgroups => generated 240519 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 53/318] 203.208.60.72 () {38 vars in 827 bytes} [Fri Aug 24 23:22:52 2018] GET /projects/pytorch/scripts/fbcode-dev-setup/ccache_setup.sh => generated 890012 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19578|app: 0|req: 40/319] 203.208.60.26 () {38 vars in 861 bytes} [Fri Aug 24 23:23:24 2018] GET /projects/pytorch/test/expect/TestJit.test_constant_prop_if_constant.expect => generated 890014 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +Internal Server Error: /projects/13/files/348/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 41/320] 203.208.60.78 () {38 vars in 631 bytes} [Fri Aug 24 23:23:24 2018] GET /projects/13/files/348/ => generated 77148 bytes in 42 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 58/321] 203.208.60.90 () {38 vars in 811 bytes} [Fri Aug 24 23:23:29 2018] GET /projects/scikit-learn/doc/tutorial/text_analytics => generated 240519 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 59/322] 203.208.60.78 () {38 vars in 863 bytes} [Fri Aug 24 23:23:33 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/prefetch_autotuner_test.cc => generated 2729036 bytes in 190 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/14/files/384/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 68/323] 203.208.60.127 () {38 vars in 632 bytes} [Fri Aug 24 23:23:37 2018] GET /projects/14/files/384/ => generated 77149 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 69/324] 203.208.60.76 () {38 vars in 857 bytes} [Fri Aug 24 23:23:40 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/debug_stripper.h => generated 2729036 bytes in 169 msecs (HTTP/1.1 200) 4 headers in 127 bytes (8 switches on core 0) +[pid: 19584|app: 0|req: 70/325] 203.208.60.126 () {38 vars in 826 bytes} [Fri Aug 24 23:23:43 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference => generated 240519 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 71/326] 203.208.60.20 () {38 vars in 847 bytes} [Fri Aug 24 23:23:45 2018] GET /projects/tensorflow/tensorflow/compiler/aot/benchmark_main.template => generated 2729035 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +Not Found: /src/main/java/com/geccocrawler/gecco/scheduler/UniqueSpiderScheduler.java +[pid: 19584|app: 0|req: 72/327] 203.208.60.105 () {38 vars in 734 bytes} [Fri Aug 24 23:23:50 2018] GET /src/main/java/com/geccocrawler/gecco/scheduler/UniqueSpiderScheduler.java => generated 3290 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2312/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 54/328] 203.208.60.44 () {38 vars in 633 bytes} [Fri Aug 24 23:23:53 2018] GET /projects/45/files/2312/ => generated 77169 bytes in 49 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 55/329] 203.208.60.2 () {38 vars in 866 bytes} [Fri Aug 24 23:23:56 2018] GET /projects/tensorflow/tensorflow/core/framework/dataset_stateful_op_whitelist.h => generated 2729036 bytes in 195 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 60/330] 203.208.60.115 () {38 vars in 842 bytes} [Fri Aug 24 23:24:00 2018] GET /projects/tensorflow/tensorflow/python/framework/framework_lib.py => generated 2729035 bytes in 177 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 56/331] 203.208.60.78 () {38 vars in 855 bytes} [Fri Aug 24 23:24:03 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/segment/segment_test.cc => generated 2729035 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +Internal Server Error: /projects/13/files/349/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 73/332] 203.208.60.49 () {38 vars in 631 bytes} [Fri Aug 24 23:24:06 2018] GET /projects/13/files/349/ => generated 77148 bytes in 42 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 74/333] 203.208.60.127 () {38 vars in 868 bytes} [Fri Aug 24 23:24:09 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/putting_together.rst => generated 240519 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19586|app: 0|req: 57/334] 203.208.60.85 () {38 vars in 881 bytes} [Fri Aug 24 23:24:12 2018] GET /projects/tensorflow/third_party/gpus/crosstool/windows/msvc_wrapper_for_nvcc.bat.tpl => generated 2729033 bytes in 171 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 59/335] 203.208.60.54 () {38 vars in 845 bytes} [Fri Aug 24 23:24:15 2018] GET /projects/tensorflow/tensorflow/core/framework/kernel_def_builder.h => generated 2729036 bytes in 177 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +Internal Server Error: /projects/14/files/374/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 61/336] 203.208.60.74 () {38 vars in 631 bytes} [Fri Aug 24 23:24:18 2018] GET /projects/14/files/374/ => generated 77148 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 60/337] 203.208.60.53 () {38 vars in 969 bytes} [Fri Aug 24 23:24:21 2018] GET /projects/tensorflow/tensorflow/contrib/lite/examples/android/app/src/main/java/org/tensorflow/demo/CameraConnectionFragment.java => generated 2729035 bytes in 162 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 0) +[pid: 19577|app: 0|req: 62/338] 203.208.60.13 () {38 vars in 861 bytes} [Fri Aug 24 23:24:24 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python/head.py => generated 2729035 bytes in 172 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 63/339] 203.208.60.53 () {38 vars in 837 bytes} [Fri Aug 24 23:24:27 2018] GET /projects/tensorflow/tensorflow/stream_executor/cuda/cuda_dnn.h => generated 2729035 bytes in 168 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/13/files/369/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 58/340] 203.208.60.49 () {38 vars in 631 bytes} [Fri Aug 24 23:24:48 2018] GET /projects/13/files/369/ => generated 77148 bytes in 49 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 59/341] 203.208.60.37 () {38 vars in 859 bytes} [Fri Aug 24 23:24:49 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/finding_help.rst => generated 240519 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 61/342] 203.208.60.31 () {38 vars in 833 bytes} [Fri Aug 24 23:24:52 2018] GET /projects/tensorflow/tensorflow/core/platform/device_tracer.h => generated 2729036 bytes in 189 msecs (HTTP/1.1 200) 4 headers in 127 bytes (8 switches on core 1) +[pid: 19582|app: 0|req: 62/343] 203.208.60.80 () {38 vars in 827 bytes} [Fri Aug 24 23:24:55 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/resources => generated 2729035 bytes in 177 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 64/344] 203.208.60.49 () {38 vars in 865 bytes} [Fri Aug 24 23:24:58 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/model_selection.rst => generated 240519 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 42/345] 203.208.60.67 () {38 vars in 833 bytes} [Fri Aug 24 23:25:01 2018] GET /projects/tensorflow/tensorflow/core/kernels/mirror_pad_op.cc => generated 2729036 bytes in 181 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/45/files/2316/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 63/346] 203.208.60.74 () {38 vars in 633 bytes} [Fri Aug 24 23:25:03 2018] GET /projects/45/files/2316/ => generated 77169 bytes in 41 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 64/347] 203.208.60.108 () {38 vars in 834 bytes} [Fri Aug 24 23:25:05 2018] GET /projects/tensorflow/tensorflow/core/framework/tensor_test.cc => generated 2729036 bytes in 162 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 45/348] 203.208.60.121 () {38 vars in 860 bytes} [Fri Aug 24 23:25:07 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_Mean.pbtxt => generated 2729036 bytes in 174 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 65/349] 203.208.60.123 () {38 vars in 846 bytes} [Fri Aug 24 23:25:10 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/index.rst => generated 240519 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 46/350] 203.208.60.115 () {38 vars in 631 bytes} [Fri Aug 24 23:25:13 2018] GET /files/?sort=hot&page=9 => generated 23457 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2309/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 66/351] 203.208.60.13 () {38 vars in 633 bytes} [Fri Aug 24 23:25:16 2018] GET /projects/45/files/2309/ => generated 77169 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 67/352] 203.208.60.123 () {38 vars in 884 bytes} [Fri Aug 24 23:25:19 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_DataFormatDimMap.pbtxt => generated 2729036 bytes in 173 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/45/files/2315/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 68/353] 203.208.60.11 () {38 vars in 633 bytes} [Fri Aug 24 23:25:27 2018] GET /projects/45/files/2315/ => generated 77169 bytes in 46 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 43/354] 203.208.60.49 () {38 vars in 877 bytes} [Fri Aug 24 23:25:29 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/unsupervised_learning.rst => generated 240519 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +Internal Server Error: /projects/14/files/403/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 65/355] 203.208.60.95 () {38 vars in 631 bytes} [Fri Aug 24 23:26:52 2018] GET /projects/14/files/403/ => generated 77148 bytes in 96 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 66/356] 203.208.60.109 () {38 vars in 878 bytes} [Fri Aug 24 23:26:52 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_ScatterUpdate.pbtxt => generated 2729036 bytes in 199 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 67/357] 203.208.60.12 () {38 vars in 839 bytes} [Fri Aug 24 23:27:05 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/db/loader.cc => generated 2729035 bytes in 205 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/13/files/367/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 47/358] 203.208.60.121 () {38 vars in 632 bytes} [Fri Aug 24 23:27:06 2018] GET /projects/13/files/367/ => generated 77149 bytes in 48 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 68/359] 203.208.60.49 () {38 vars in 865 bytes} [Fri Aug 24 23:27:08 2018] GET /projects/scikit-learn/doc/tutorial/text_analytics/working_with_text_data.rst => generated 240519 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 75/360] 203.208.60.17 () {38 vars in 835 bytes} [Fri Aug 24 23:27:11 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/__init__.py => generated 2729035 bytes in 162 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 76/361] 203.208.60.70 () {38 vars in 873 bytes} [Fri Aug 24 23:27:13 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/supervised_learning.rst => generated 240519 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 77/362] 203.208.60.62 () {38 vars in 821 bytes} [Fri Aug 24 23:27:43 2018] GET /projects/tensorflow/tensorflow/contrib/integrate/BUILD => generated 2729035 bytes in 205 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 48/363] 203.208.60.116 () {38 vars in 633 bytes} [Fri Aug 24 23:27:44 2018] GET /files/?sort=hot&page=14 => generated 23275 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 60/364] 203.208.60.127 () {38 vars in 631 bytes} [Fri Aug 24 23:27:49 2018] GET /files/?sort=hot&page=4 => generated 22829 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2308/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 61/365] 203.208.60.121 () {38 vars in 634 bytes} [Fri Aug 24 23:27:54 2018] GET /projects/45/files/2308/ => generated 77170 bytes in 40 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 44/366] 203.208.60.20 () {38 vars in 875 bytes} [Fri Aug 24 23:27:58 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_ApplyAdagrad.pbtxt => generated 2729036 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 78/367] 203.208.60.92 () {38 vars in 762 bytes} [Fri Aug 24 23:28:01 2018] GET /files/?sort=hot&page=2070 => generated 23587 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 79/368] 203.208.60.123 () {38 vars in 932 bytes} [Fri Aug 24 23:28:04 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/examples/notebooks/graph_vs_ag_vs_eager_sum_speed_test.ipynb => generated 2729035 bytes in 168 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/14/files/383/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 80/369] 203.208.60.103 () {38 vars in 632 bytes} [Fri Aug 24 23:28:25 2018] GET /projects/14/files/383/ => generated 77149 bytes in 53 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 69/370] 203.208.60.55 () {38 vars in 768 bytes} [Fri Aug 24 23:28:25 2018] GET /files/?sort=latest&page=2074 => generated 23190 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 70/371] 203.208.60.109 () {38 vars in 836 bytes} [Fri Aug 24 23:28:30 2018] GET /projects/tensorflow/tensorflow/contrib/lite/profiling/time.cc => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 81/372] 203.208.60.21 () {38 vars in 861 bytes} [Fri Aug 24 23:28:34 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_AvgPool.pbtxt => generated 2729035 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 71/373] 203.208.60.10 () {38 vars in 851 bytes} [Fri Aug 24 23:28:37 2018] GET /projects/scikit-learn/doc/tutorial/statistical_inference/settings.rst => generated 240519 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +Internal Server Error: /projects/13/files/344/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 72/374] 203.208.60.1 () {38 vars in 630 bytes} [Fri Aug 24 23:28:40 2018] GET /projects/13/files/344/ => generated 77147 bytes in 41 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 73/375] 203.208.60.21 () {38 vars in 913 bytes} [Fri Aug 24 23:28:43 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-global-max-pool1-d.pbtxt => generated 2729035 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 49/376] 203.208.60.3 () {38 vars in 757 bytes} [Fri Aug 24 23:28:45 2018] GET /files/?sort=hot&page=19 => generated 23547 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 62/377] 203.208.60.98 () {38 vars in 758 bytes} [Fri Aug 24 23:28:47 2018] GET /files/?sort=hot&page=15 => generated 23346 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 63/378] 203.208.60.22 () {38 vars in 855 bytes} [Fri Aug 24 23:28:50 2018] GET /projects/tensorflow/tensorflow/core/kernels/check_numerics_op_gpu.cu.cc => generated 2729036 bytes in 160 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/13/files/338/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 82/379] 203.208.60.98 () {38 vars in 631 bytes} [Fri Aug 24 23:28:53 2018] GET /projects/13/files/338/ => generated 77148 bytes in 39 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 69/380] 203.208.60.15 () {38 vars in 758 bytes} [Fri Aug 24 23:28:56 2018] GET /files/?sort=hot&page=18 => generated 23619 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 64/381] 203.208.60.123 () {38 vars in 759 bytes} [Fri Aug 24 23:28:59 2018] GET /files/?sort=hot&page=17 => generated 23253 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/3992/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 70/382] 203.208.60.105 () {38 vars in 634 bytes} [Fri Aug 24 23:29:04 2018] GET /projects/45/files/3992/ => generated 77170 bytes in 45 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 71/383] 77.247.132.137 () {32 vars in 462 bytes} [Fri Aug 24 23:29:22 2018] GET / => generated 9722 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 83/384] 203.208.60.69 () {38 vars in 632 bytes} [Fri Aug 24 23:30:57 2018] GET /files/?sort=hot&page=10 => generated 23434 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 84/385] 203.208.60.74 () {38 vars in 624 bytes} [Fri Aug 24 23:30:58 2018] GET /?sort=hot&page=2049 => generated 9722 bytes in 21 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2314/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 72/386] 203.208.60.97 () {38 vars in 633 bytes} [Fri Aug 24 23:31:15 2018] GET /projects/45/files/2314/ => generated 77169 bytes in 86 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 85/387] 203.208.60.103 () {38 vars in 759 bytes} [Fri Aug 24 23:31:16 2018] GET /files/?sort=hot&page=21 => generated 23539 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 74/388] 203.208.60.31 () {38 vars in 815 bytes} [Fri Aug 24 23:31:19 2018] GET /projects/tensorflow/tensorflow/core/lib/io/format.h => generated 2729035 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 75/389] 203.208.60.13 () {38 vars in 907 bytes} [Fri Aug 24 23:31:22 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/preprocessing/categorical_vocabulary.py => generated 2729035 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 73/390] 203.208.60.49 () {38 vars in 857 bytes} [Fri Aug 24 23:31:24 2018] GET /projects/tensorflow/tensorflow/contrib/mpi_collectives/mpi_message.proto => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 74/391] 203.208.60.90 () {38 vars in 758 bytes} [Fri Aug 24 23:31:27 2018] GET /files/?sort=hot&page=24 => generated 23247 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2310/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 76/392] 203.208.60.11 () {38 vars in 633 bytes} [Fri Aug 24 23:31:29 2018] GET /projects/45/files/2310/ => generated 77169 bytes in 63 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 77/393] 203.208.60.77 () {38 vars in 758 bytes} [Fri Aug 24 23:31:32 2018] GET /files/?sort=hot&page=22 => generated 23356 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 78/394] 203.208.60.35 () {38 vars in 885 bytes} [Fri Aug 24 23:31:35 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_CollectiveBcastRecv.pbtxt => generated 2729035 bytes in 191 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 65/395] 203.208.60.108 () {38 vars in 759 bytes} [Fri Aug 24 23:31:38 2018] GET /files/?sort=hot&page=20 => generated 23538 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 86/396] 203.208.60.30 () {38 vars in 636 bytes} [Fri Aug 24 23:31:41 2018] GET /files/?sort=latest&page=7 => generated 23058 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 87/397] 203.208.60.20 () {38 vars in 636 bytes} [Fri Aug 24 23:31:44 2018] GET /files/?sort=hot&page=2085 => generated 12528 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 75/398] 203.208.60.20 () {38 vars in 758 bytes} [Fri Aug 24 23:31:47 2018] GET /files/?sort=hot&page=23 => generated 23260 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 76/399] 203.208.60.85 () {38 vars in 636 bytes} [Fri Aug 24 23:31:50 2018] GET /files/?sort=hot&page=2084 => generated 22885 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 88/400] 203.208.60.70 () {38 vars in 636 bytes} [Fri Aug 24 23:31:53 2018] GET /files/?sort=latest&page=8 => generated 23287 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 66/401] 203.208.60.85 () {38 vars in 762 bytes} [Fri Aug 24 23:31:56 2018] GET /files/?sort=hot&page=2066 => generated 23352 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 67/402] 203.208.60.105 () {38 vars in 763 bytes} [Fri Aug 24 23:31:59 2018] GET /files/?sort=hot&page=2065 => generated 23655 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 68/403] 203.208.60.78 () {38 vars in 673 bytes} [Fri Aug 24 23:33:22 2018] GET /projects/scikit-learn/doc/presentations.rst => generated 240519 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +Internal Server Error: /projects/45/files/2313/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 79/404] 203.208.60.127 () {38 vars in 634 bytes} [Fri Aug 24 23:33:23 2018] GET /projects/45/files/2313/ => generated 77170 bytes in 66 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 50/405] 203.208.60.3 () {38 vars in 757 bytes} [Fri Aug 24 23:33:25 2018] GET /files/?sort=hot&page=26 => generated 23614 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 80/406] 203.208.60.77 () {38 vars in 758 bytes} [Fri Aug 24 23:33:28 2018] GET /files/?sort=hot&page=27 => generated 23483 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 77/407] 203.208.60.30 () {38 vars in 758 bytes} [Fri Aug 24 23:33:31 2018] GET /files/?sort=hot&page=29 => generated 23543 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 45/408] 203.208.60.12 () {38 vars in 649 bytes} [Fri Aug 24 23:33:35 2018] GET /projects/scikit-learn/doc/logos => generated 240519 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 46/409] 203.208.60.103 () {38 vars in 637 bytes} [Fri Aug 24 23:33:43 2018] GET /files/?sort=latest&page=2 => generated 22583 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 47/410] 203.208.60.4 () {38 vars in 613 bytes} [Fri Aug 24 23:33:44 2018] GET /files/?page=24 => generated 23026 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2307/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 51/411] 203.208.60.53 () {38 vars in 633 bytes} [Fri Aug 24 23:33:45 2018] GET /projects/45/files/2307/ => generated 77169 bytes in 46 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 48/412] 203.208.60.11 () {38 vars in 762 bytes} [Fri Aug 24 23:33:48 2018] GET /files/?sort=hot&page=2061 => generated 23533 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 78/413] 203.208.60.121 () {38 vars in 759 bytes} [Fri Aug 24 23:34:52 2018] GET /files/?sort=hot&page=33 => generated 23316 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 79/414] 203.208.60.28 () {38 vars in 638 bytes} [Fri Aug 24 23:34:53 2018] GET /files/?sort=latest&page=12 => generated 23171 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 89/415] 203.208.60.105 () {38 vars in 637 bytes} [Fri Aug 24 23:35:02 2018] GET /files/?sort=latest&page=6 => generated 22756 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 49/416] 203.208.60.115 () {38 vars in 639 bytes} [Fri Aug 24 23:35:10 2018] GET /files/?sort=latest&page=11 => generated 23348 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2311/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 50/417] 203.208.60.92 () {38 vars in 633 bytes} [Fri Aug 24 23:35:17 2018] GET /projects/45/files/2311/ => generated 77169 bytes in 49 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 51/418] 203.208.60.28 () {38 vars in 758 bytes} [Fri Aug 24 23:35:23 2018] GET /files/?sort=hot&page=32 => generated 23299 bytes in 153 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 52/419] 203.208.60.109 () {38 vars in 639 bytes} [Fri Aug 24 23:35:28 2018] GET /files/?sort=latest&page=10 => generated 23503 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 81/420] 203.208.60.97 () {38 vars in 673 bytes} [Fri Aug 24 23:35:33 2018] GET /projects/scikit-learn/doc/logos/favicon.ico => generated 240519 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 80/421] 203.208.60.90 () {38 vars in 636 bytes} [Fri Aug 24 23:35:37 2018] GET /files/?sort=latest&page=1 => generated 22388 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 52/422] 203.208.60.90 () {38 vars in 675 bytes} [Fri Aug 24 23:35:40 2018] GET /projects/scikit-learn/doc/logos/identity.pdf => generated 240519 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 82/423] 203.208.60.121 () {38 vars in 637 bytes} [Fri Aug 24 23:35:43 2018] GET /files/?sort=latest&page=4 => generated 22568 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 90/424] 203.208.60.94 () {38 vars in 653 bytes} [Fri Aug 24 23:35:46 2018] GET /projects/scikit-learn/build_tools => generated 240519 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 69/425] 203.208.60.14 () {38 vars in 653 bytes} [Fri Aug 24 23:35:48 2018] GET /projects/scikit-learn/doc/faq.rst => generated 240519 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 91/426] 203.208.60.108 () {38 vars in 658 bytes} [Fri Aug 24 23:35:50 2018] GET /projects/scikit-learn/doc/index.rst => generated 240519 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 81/427] 203.208.60.28 () {38 vars in 667 bytes} [Fri Aug 24 23:35:52 2018] GET /projects/scikit-learn/build_tools/circle => generated 240519 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 53/428] 203.208.60.49 () {38 vars in 667 bytes} [Fri Aug 24 23:35:55 2018] GET /projects/scikit-learn/build_tools/travis => generated 240519 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 83/429] 203.208.60.72 () {38 vars in 691 bytes} [Fri Aug 24 23:35:58 2018] GET /projects/scikit-learn/build_tools/circle/push_doc.sh => generated 240519 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 84/430] 203.208.60.80 () {38 vars in 693 bytes} [Fri Aug 24 23:36:01 2018] GET /projects/scikit-learn/build_tools/circle/build_doc.sh => generated 240519 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 82/431] 203.208.60.90 () {38 vars in 758 bytes} [Fri Aug 24 23:36:04 2018] GET /files/?sort=hot&page=30 => generated 23438 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 92/432] 203.208.60.69 () {38 vars in 758 bytes} [Fri Aug 24 23:36:06 2018] GET /files/?sort=hot&page=31 => generated 23255 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 53/433] 203.208.60.14 () {38 vars in 758 bytes} [Fri Aug 24 23:36:09 2018] GET /files/?sort=hot&page=34 => generated 23591 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 54/434] 203.208.60.116 () {38 vars in 860 bytes} [Fri Aug 24 23:36:12 2018] GET /projects/tensorflow/tensorflow/compiler/aot/test_graph_tfadd.config.pbtxt => generated 2729035 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19582|app: 0|req: 83/435] 203.208.60.49 () {38 vars in 764 bytes} [Fri Aug 24 23:36:15 2018] GET /files/?sort=latest&page=16 => generated 23264 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 55/436] 203.208.60.1 () {38 vars in 763 bytes} [Fri Aug 24 23:36:17 2018] GET /files/?sort=latest&page=15 => generated 23347 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 56/437] 203.208.60.21 () {38 vars in 626 bytes} [Fri Aug 24 23:36:21 2018] GET /?sort=latest&page=46 => generated 9705 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 57/438] 203.208.60.11 () {38 vars in 764 bytes} [Fri Aug 24 23:36:23 2018] GET /files/?sort=latest&page=14 => generated 23252 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 84/439] 203.208.60.22 () {38 vars in 764 bytes} [Fri Aug 24 23:36:26 2018] GET /files/?sort=latest&page=17 => generated 23369 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 85/440] 203.208.60.20 () {38 vars in 762 bytes} [Fri Aug 24 23:36:28 2018] GET /files/?sort=hot&page=2064 => generated 23463 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 70/441] 203.208.60.35 () {38 vars in 764 bytes} [Fri Aug 24 23:36:46 2018] GET /files/?sort=latest&page=19 => generated 23241 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 71/442] 203.208.60.105 () {38 vars in 765 bytes} [Fri Aug 24 23:36:48 2018] GET /files/?sort=latest&page=21 => generated 23339 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 93/443] 203.208.60.20 () {38 vars in 764 bytes} [Fri Aug 24 23:36:50 2018] GET /files/?sort=latest&page=18 => generated 23331 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 72/444] 203.208.60.97 () {38 vars in 642 bytes} [Fri Aug 24 23:36:51 2018] GET /files/?sort=latest&page=2085 => generated 12402 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 94/445] 203.208.60.76 () {38 vars in 764 bytes} [Fri Aug 24 23:36:53 2018] GET /files/?sort=latest&page=20 => generated 23297 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 73/446] 203.208.60.19 () {38 vars in 764 bytes} [Fri Aug 24 23:36:56 2018] GET /files/?sort=latest&page=22 => generated 23338 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 54/447] 203.208.60.20 () {38 vars in 762 bytes} [Fri Aug 24 23:36:58 2018] GET /files/?sort=hot&page=2063 => generated 23467 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 95/448] 203.208.60.1 () {38 vars in 761 bytes} [Fri Aug 24 23:37:01 2018] GET /files/?sort=hot&page=2060 => generated 23282 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 74/449] 203.208.60.21 () {38 vars in 885 bytes} [Fri Aug 24 23:37:03 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_UnsortedSegmentProd.pbtxt => generated 2729036 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 96/450] 203.208.60.80 () {38 vars in 762 bytes} [Fri Aug 24 23:37:06 2018] GET /files/?sort=hot&page=2062 => generated 23523 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 75/451] 203.208.60.29 () {38 vars in 799 bytes} [Fri Aug 24 23:37:08 2018] GET /projects/tensorflow/tensorflow/core/api_def => generated 2729035 bytes in 163 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/tensorflow/tensorflow/core/lib/lmdb/testdata +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/core/lib/lmdb/testdata' +[pid: 19586|app: 0|req: 76/452] 203.208.60.70 () {38 vars in 819 bytes} [Fri Aug 24 23:37:10 2018] GET /projects/tensorflow/tensorflow/core/lib/lmdb/testdata => generated 84434 bytes in 330 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 55/453] 203.208.60.127 () {38 vars in 765 bytes} [Fri Aug 24 23:37:21 2018] GET /files/?sort=latest&page=26 => generated 23577 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 97/454] 203.208.60.123 () {38 vars in 765 bytes} [Fri Aug 24 23:37:22 2018] GET /files/?sort=latest&page=25 => generated 23483 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 86/455] 203.208.60.98 () {38 vars in 764 bytes} [Fri Aug 24 23:37:24 2018] GET /files/?sort=latest&page=24 => generated 23248 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 98/456] 203.208.60.10 () {38 vars in 768 bytes} [Fri Aug 24 23:37:26 2018] GET /files/?sort=latest&page=2080 => generated 22903 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 99/457] 203.208.60.85 () {38 vars in 768 bytes} [Fri Aug 24 23:37:28 2018] GET /files/?sort=latest&page=2077 => generated 23369 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 100/458] 203.208.60.22 () {38 vars in 768 bytes} [Fri Aug 24 23:37:31 2018] GET /files/?sort=latest&page=2076 => generated 23299 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 101/459] 203.208.60.123 () {38 vars in 769 bytes} [Fri Aug 24 23:37:33 2018] GET /files/?sort=latest&page=2081 => generated 22767 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 102/460] 203.208.60.94 () {38 vars in 768 bytes} [Fri Aug 24 23:37:35 2018] GET /files/?sort=latest&page=2082 => generated 22705 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 58/461] 203.208.60.30 () {38 vars in 768 bytes} [Fri Aug 24 23:37:38 2018] GET /files/?sort=latest&page=2078 => generated 23321 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 59/462] 203.208.60.92 () {38 vars in 768 bytes} [Fri Aug 24 23:37:40 2018] GET /files/?sort=latest&page=2083 => generated 22817 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 56/463] 203.208.60.11 () {38 vars in 768 bytes} [Fri Aug 24 23:37:42 2018] GET /files/?sort=latest&page=2075 => generated 23362 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 57/464] 203.208.60.22 () {38 vars in 764 bytes} [Fri Aug 24 23:38:07 2018] GET /files/?sort=latest&page=29 => generated 23255 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 103/465] 203.208.60.10 () {38 vars in 819 bytes} [Fri Aug 24 23:38:13 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/db => generated 2729035 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19582|app: 0|req: 87/466] 203.208.60.30 () {38 vars in 764 bytes} [Fri Aug 24 23:38:35 2018] GET /files/?sort=latest&page=30 => generated 23303 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 60/467] 203.208.60.49 () {38 vars in 764 bytes} [Fri Aug 24 23:39:05 2018] GET /files/?sort=latest&page=28 => generated 23382 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 104/468] 203.208.60.12 () {38 vars in 636 bytes} [Fri Aug 24 23:39:14 2018] GET /files/?sort=latest&page=9 => generated 23515 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 85/469] 203.208.60.87 () {38 vars in 885 bytes} [Fri Aug 24 23:39:15 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_DecodeAndCropJpeg.pbtxt => generated 2729036 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 105/470] 203.208.60.97 () {38 vars in 764 bytes} [Fri Aug 24 23:39:36 2018] GET /files/?sort=latest&page=31 => generated 23231 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 106/471] 203.208.60.1 () {38 vars in 822 bytes} [Fri Aug 24 23:40:04 2018] GET /projects/scikit-learn/doc/themes/scikit-learn/static/js => generated 240519 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 107/472] 203.208.60.2 () {38 vars in 762 bytes} [Fri Aug 24 23:40:28 2018] GET /projects/scikit-learn/doc => generated 240519 bytes in 42 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 88/473] 203.208.60.37 () {38 vars in 777 bytes} [Fri Aug 24 23:40:28 2018] GET /projects/scikit-learn/doc/images => generated 240519 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 86/474] 203.208.60.80 () {38 vars in 903 bytes} [Fri Aug 24 23:40:34 2018] GET /projects/tensorflow/tensorflow/contrib/framework/testdata/bundle_checkpoint.data-00000-of-00001 => generated 2729035 bytes in 221 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 87/475] 203.208.60.3 () {38 vars in 806 bytes} [Fri Aug 24 23:42:07 2018] GET /projects/scikit-learn/benchmarks/bench_lasso.py => generated 240519 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 108/476] 203.208.60.37 () {38 vars in 813 bytes} [Fri Aug 24 23:42:09 2018] GET /projects/scikit-learn/benchmarks/bench_plot_svd.py => generated 240519 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 89/477] 203.208.60.49 () {38 vars in 829 bytes} [Fri Aug 24 23:42:12 2018] GET /projects/scikit-learn/benchmarks/bench_isolation_forest.py => generated 240519 bytes in 42 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 90/478] 203.208.60.19 () {38 vars in 881 bytes} [Fri Aug 24 23:42:13 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_TensorArrayConcat.pbtxt => generated 2729036 bytes in 197 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 91/479] 203.208.60.90 () {38 vars in 837 bytes} [Fri Aug 24 23:42:15 2018] GET /projects/scikit-learn/benchmarks/bench_plot_incremental_pca.py => generated 240519 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 88/480] 203.208.60.67 () {38 vars in 764 bytes} [Fri Aug 24 23:42:48 2018] GET /files/?sort=latest&page=33 => generated 23369 bytes in 129 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 89/481] 203.208.60.126 () {38 vars in 765 bytes} [Fri Aug 24 23:42:49 2018] GET /files/?sort=latest&page=32 => generated 23359 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 58/482] 203.208.60.36 () {38 vars in 764 bytes} [Fri Aug 24 23:42:55 2018] GET /files/?sort=latest&page=34 => generated 23273 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 90/483] 203.208.60.74 () {38 vars in 764 bytes} [Fri Aug 24 23:43:00 2018] GET /files/?sort=latest&page=35 => generated 23067 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 109/484] 203.208.60.126 () {38 vars in 804 bytes} [Fri Aug 24 23:43:08 2018] GET /projects/scikit-learn/benchmarks/bench_lof.py => generated 240519 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 77/485] 203.208.60.116 () {38 vars in 810 bytes} [Fri Aug 24 23:43:21 2018] GET /projects/scikit-learn/benchmarks/bench_glmnet.py => generated 240519 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 110/486] 203.208.60.62 () {38 vars in 813 bytes} [Fri Aug 24 23:43:41 2018] GET /projects/scikit-learn/benchmarks/bench_sparsify.py => generated 240519 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 78/487] 203.208.60.105 () {38 vars in 814 bytes} [Fri Aug 24 23:44:01 2018] GET /projects/scikit-learn/benchmarks/bench_isotonic.py => generated 240519 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 91/488] 203.208.60.92 () {38 vars in 815 bytes} [Fri Aug 24 23:44:23 2018] GET /projects/scikit-learn/benchmarks/bench_plot_ward.py => generated 240519 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 92/489] 203.208.60.1 () {38 vars in 820 bytes} [Fri Aug 24 23:44:44 2018] GET /projects/scikit-learn/benchmarks/bench_20newsgroups.py => generated 240519 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 93/490] 203.208.60.29 () {38 vars in 616 bytes} [Fri Aug 24 23:44:46 2018] GET /files/?page=104 => generated 23165 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 94/491] 203.208.60.90 () {38 vars in 616 bytes} [Fri Aug 24 23:44:48 2018] GET /files/?page=105 => generated 23141 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 95/492] 203.208.60.116 () {38 vars in 684 bytes} [Fri Aug 24 23:44:55 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/proto => generated 2729035 bytes in 213 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 61/493] 203.208.60.105 () {38 vars in 788 bytes} [Fri Aug 24 23:45:03 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-global-avg-pool2-d.pbtxt => generated 2729035 bytes in 184 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 96/494] 203.208.60.14 () {38 vars in 827 bytes} [Fri Aug 24 23:45:05 2018] GET /projects/scikit-learn/benchmarks/bench_plot_fastkmeans.py => generated 240519 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +Internal Server Error: /projects/13/files/343/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 97/495] 203.208.60.12 () {38 vars in 631 bytes} [Fri Aug 24 23:45:06 2018] GET /projects/13/files/343/ => generated 77148 bytes in 42 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 62/496] 203.208.60.103 () {38 vars in 798 bytes} [Fri Aug 24 23:45:15 2018] GET /projects/pytorch/scripts/build_tegra_x1.sh => generated 890012 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 98/497] 203.208.60.3 () {38 vars in 774 bytes} [Fri Aug 24 23:45:17 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-variable.-save-slice-info.pbtxt => generated 2729035 bytes in 176 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +Internal Server Error: /projects/tensorflow/tensorflow/contrib/training/python/training +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/contrib/training/python/training' +[pid: 19577|app: 0|req: 99/498] 203.208.60.95 () {38 vars in 713 bytes} [Fri Aug 24 23:46:03 2018] GET /projects/tensorflow/tensorflow/contrib/training/python/training => generated 84532 bytes in 409 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 59/499] 203.208.60.95 () {38 vars in 742 bytes} [Fri Aug 24 23:46:03 2018] GET /files/?page=109 => generated 23362 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 79/500] 203.208.60.19 () {38 vars in 742 bytes} [Fri Aug 24 23:46:11 2018] GET /files/?page=106 => generated 23108 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 80/501] 203.208.60.76 () {38 vars in 742 bytes} [Fri Aug 24 23:46:17 2018] GET /files/?page=107 => generated 23177 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 92/502] 203.208.60.49 () {38 vars in 829 bytes} [Fri Aug 24 23:46:23 2018] GET /projects/scikit-learn/sklearn/compose/tests/test_target.py => generated 240518 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 93/503] 203.208.60.54 () {38 vars in 847 bytes} [Fri Aug 24 23:46:27 2018] GET /projects/tensorflow/tensorflow/core/kernels/cwise_op_gpu_rint.cu.cc => generated 2729036 bytes in 181 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 1) +[pid: 19580|app: 0|req: 63/504] 203.208.60.74 () {38 vars in 813 bytes} [Fri Aug 24 23:46:32 2018] GET /projects/tensorflow/tensorflow/go/op/scope_test.go => generated 2729036 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 111/505] 203.208.60.87 () {38 vars in 711 bytes} [Fri Aug 24 23:46:35 2018] GET /projects/tensorflow/tensorflow/python/ops/parallel_for/pfor.py => generated 2729035 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 112/506] 203.208.60.10 () {38 vars in 705 bytes} [Fri Aug 24 23:46:38 2018] GET /projects/tensorflow/tensorflow/python/framework/function.py => generated 2729035 bytes in 172 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 100/507] 203.208.60.20 () {38 vars in 829 bytes} [Fri Aug 24 23:46:41 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/dataset.h => generated 2729036 bytes in 181 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 81/508] 203.208.60.14 () {38 vars in 642 bytes} [Fri Aug 24 23:46:44 2018] GET /files/?sort=latest&page=2084 => generated 22692 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 94/509] 203.208.60.94 () {38 vars in 717 bytes} [Fri Aug 24 23:46:46 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/losses_test.py => generated 2729035 bytes in 173 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19577|app: 0|req: 101/510] 203.208.60.94 () {38 vars in 863 bytes} [Fri Aug 24 23:46:48 2018] GET /projects/tensorflow/tensorflow/core/platform/default/cuda_libdevice_path.cc => generated 2729036 bytes in 200 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 95/511] 203.208.60.10 () {38 vars in 833 bytes} [Fri Aug 24 23:46:50 2018] GET /projects/tensorflow/tensorflow/core/kernels/split_op_test.cc => generated 2729036 bytes in 192 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 102/512] 203.208.60.28 () {38 vars in 837 bytes} [Fri Aug 24 23:46:52 2018] GET /projects/tensorflow/tensorflow/core/framework/function_test.cc => generated 2729036 bytes in 202 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19580|app: 0|req: 64/513] 203.208.60.90 () {38 vars in 771 bytes} [Fri Aug 24 23:48:23 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-tensor-info.-coo-sparse.pbtxt => generated 2729035 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 60/514] 203.208.60.62 () {38 vars in 843 bytes} [Fri Aug 24 23:48:25 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/README.md => generated 2729036 bytes in 178 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 65/515] 203.208.60.1 () {38 vars in 878 bytes} [Fri Aug 24 23:48:26 2018] GET /projects/tensorflow/tensorflow/core/kernels/sparse_tensor_dense_matmul_op_gpu.cu.cc => generated 2729036 bytes in 176 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 113/516] 203.208.60.121 () {38 vars in 743 bytes} [Fri Aug 24 23:48:29 2018] GET /files/?page=111 => generated 23358 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 82/517] 203.208.60.8 () {38 vars in 741 bytes} [Fri Aug 24 23:48:31 2018] GET /files/?page=110 => generated 23202 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 96/518] 203.208.60.94 () {38 vars in 843 bytes} [Fri Aug 24 23:48:34 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/python/tpu/__init__.py => generated 2729035 bytes in 172 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19580|app: 0|req: 66/519] 203.208.60.15 () {38 vars in 739 bytes} [Fri Aug 24 23:48:37 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/constant_op_eager_test.py => generated 2729035 bytes in 173 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19577|app: 0|req: 103/520] 203.208.60.10 () {38 vars in 855 bytes} [Fri Aug 24 23:49:05 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_instructions.cc => generated 2729035 bytes in 222 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 67/521] 203.208.60.95 () {38 vars in 636 bytes} [Fri Aug 24 23:49:07 2018] GET /files/?sort=latest&page=3 => generated 22405 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 61/522] 203.208.60.98 () {38 vars in 742 bytes} [Fri Aug 24 23:49:10 2018] GET /files/?page=116 => generated 23415 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 62/523] 203.208.60.116 () {38 vars in 743 bytes} [Fri Aug 24 23:49:16 2018] GET /files/?page=115 => generated 23064 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 104/524] 203.208.60.115 () {38 vars in 870 bytes} [Fri Aug 24 23:49:24 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/learn_runner_test.py => generated 2729035 bytes in 187 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 63/525] 203.208.60.92 () {38 vars in 877 bytes} [Fri Aug 24 23:49:32 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_TensorArrayPack.pbtxt => generated 2729035 bytes in 176 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 64/526] 203.208.60.1 () {38 vars in 648 bytes} [Fri Aug 24 23:49:40 2018] GET /projects/scikit-learn/.git/HEAD => generated 240519 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 68/527] 203.208.60.92 () {38 vars in 841 bytes} [Fri Aug 24 23:49:41 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/arg_op.cc => generated 2729035 bytes in 175 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19578|app: 0|req: 65/528] 203.208.60.115 () {38 vars in 650 bytes} [Fri Aug 24 23:49:52 2018] GET /projects/scikit-learn/.git/info => generated 240519 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19577|app: 0|req: 105/529] 203.208.60.30 () {38 vars in 651 bytes} [Fri Aug 24 23:49:56 2018] GET /projects/scikit-learn/.git/index => generated 240519 bytes in 42 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 106/530] 203.208.60.69 () {38 vars in 859 bytes} [Fri Aug 24 23:49:58 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/reshape_mover_test.cc => generated 2729035 bytes in 182 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19580|app: 0|req: 69/531] 203.208.60.127 () {38 vars in 654 bytes} [Fri Aug 24 23:50:00 2018] GET /projects/scikit-learn/.git/config => generated 240519 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 70/532] 203.208.60.80 () {38 vars in 657 bytes} [Fri Aug 24 23:50:04 2018] GET /projects/scikit-learn/.git/branches => generated 240519 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 83/533] 203.208.60.98 () {38 vars in 663 bytes} [Fri Aug 24 23:50:09 2018] GET /projects/scikit-learn/.git/packed-refs => generated 240519 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 84/534] 203.208.60.70 () {38 vars in 661 bytes} [Fri Aug 24 23:50:14 2018] GET /projects/scikit-learn/.git/refs/heads => generated 240519 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 114/535] 203.208.60.77 () {38 vars in 887 bytes} [Fri Aug 24 23:50:16 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_BatchMatrixInverse.pbtxt => generated 2729036 bytes in 170 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19586|app: 0|req: 85/536] 203.208.60.3 () {38 vars in 688 bytes} [Fri Aug 24 23:50:24 2018] GET /projects/scikit-learn/.git/refs/remotes/origin/HEAD => generated 240519 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19580|app: 0|req: 71/537] 203.208.60.29 () {38 vars in 675 bytes} [Fri Aug 24 23:50:33 2018] GET /projects/scikit-learn/.git/refs/heads/master => generated 240519 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 107/538] 203.208.60.116 () {38 vars in 876 bytes} [Fri Aug 24 23:50:34 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_StackCloseV2.pbtxt => generated 2729036 bytes in 175 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 66/539] 203.208.60.78 () {38 vars in 843 bytes} [Fri Aug 24 23:50:51 2018] GET /projects/tensorflow/tensorflow/compiler/aot/codegen_test_o.golden => generated 2729035 bytes in 184 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +Internal Server Error: /projects/scikit-learn/.git/refs/remotes/origin +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/.git/refs/remotes/origin' +[pid: 19582|app: 0|req: 97/540] 203.208.60.95 () {38 vars in 679 bytes} [Fri Aug 24 23:50:52 2018] GET /projects/scikit-learn/.git/refs/remotes/origin => generated 84186 bytes in 81 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 108/541] 203.208.60.105 () {38 vars in 886 bytes} [Fri Aug 24 23:51:06 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/implicit_broadcast_remover_test.cc => generated 2729035 bytes in 211 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19577|app: 0|req: 109/542] 203.208.60.8 () {38 vars in 822 bytes} [Fri Aug 24 23:51:09 2018] GET /projects/tensorflow/tensorflow/contrib/all_reduce/BUILD => generated 2729035 bytes in 182 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 110/543] 203.208.60.126 () {38 vars in 858 bytes} [Fri Aug 24 23:51:26 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/build_graph_options.h => generated 2729035 bytes in 186 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 72/544] 203.208.60.3 () {38 vars in 872 bytes} [Fri Aug 24 23:51:44 2018] GET /projects/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/__init__.py => generated 2729035 bytes in 206 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 115/545] 203.208.60.123 () {38 vars in 798 bytes} [Fri Aug 24 23:52:02 2018] GET /projects/tensorflow/tensorflow/core/lib/io => generated 2729035 bytes in 211 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 116/546] 203.208.60.67 () {38 vars in 885 bytes} [Fri Aug 24 23:52:21 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/features/python/clip_weights_impl.py => generated 2729035 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 111/547] 203.208.60.37 () {38 vars in 647 bytes} [Fri Aug 24 23:52:48 2018] GET /projects/Notes/.git/refs/heads => generated 39377 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 98/548] 203.208.60.98 () {38 vars in 867 bytes} [Fri Aug 24 23:55:03 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.debugging.pbtxt => generated 2729035 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19580|app: 0|req: 73/549] 203.208.60.17 () {38 vars in 821 bytes} [Fri Aug 24 23:56:19 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/__init__.py => generated 2729035 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 112/550] 203.208.60.94 () {38 vars in 636 bytes} [Fri Aug 24 23:56:28 2018] GET /files/?sort=latest&page=5 => generated 22655 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 113/551] 203.208.60.105 () {38 vars in 670 bytes} [Fri Aug 24 23:56:55 2018] GET /projects/scikit-learn/build_tools/windows => generated 240519 bytes in 46 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 117/552] 203.208.60.28 () {38 vars in 671 bytes} [Fri Aug 24 23:57:17 2018] GET /projects/scikit-learn/build_tools/appveyor => generated 240519 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 118/553] 203.208.60.116 () {38 vars in 690 bytes} [Fri Aug 24 23:57:46 2018] GET /projects/scikit-learn/build_tools/travis/install.sh => generated 240519 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 67/554] 203.208.60.13 () {38 vars in 695 bytes} [Fri Aug 24 23:58:06 2018] GET /projects/scikit-learn/build_tools/appveyor/install.ps1 => generated 240519 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 68/555] 203.208.60.2 () {38 vars in 696 bytes} [Fri Aug 24 23:58:32 2018] GET /projects/scikit-learn/build_tools/travis/test_script.sh => generated 240519 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 86/556] 203.208.60.54 () {38 vars in 697 bytes} [Fri Aug 24 23:58:59 2018] GET /projects/scikit-learn/build_tools/travis/flake8_diff.sh => generated 240519 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 87/557] 203.208.60.36 () {38 vars in 701 bytes} [Fri Aug 24 23:59:22 2018] GET /projects/scikit-learn/build_tools/travis/after_success.sh => generated 240519 bytes in 44 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2513/functions/14216/callee_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 74/558] 203.208.60.29 () {44 vars in 882 bytes} [Fri Aug 24 23:59:34 2018] GET /projects/45/files/2513/functions/14216/callee_function/ => generated 15853 bytes in 53 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2513/functions/14216/caller_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 75/559] 203.208.60.74 () {44 vars in 882 bytes} [Fri Aug 24 23:59:45 2018] GET /projects/45/files/2513/functions/14216/caller_function/ => generated 15853 bytes in 23 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 99/560] 203.208.60.13 () {38 vars in 705 bytes} [Fri Aug 24 23:59:52 2018] GET /projects/scikit-learn/build_tools/appveyor/requirements.txt => generated 240519 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 114/561] 203.208.60.37 () {38 vars in 669 bytes} [Sat Aug 25 00:00:09 2018] GET /projects/Notes/.git/hooks/pre-push.sample => generated 39377 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 115/562] 203.208.60.28 () {38 vars in 705 bytes} [Sat Aug 25 00:00:12 2018] GET /projects/scikit-learn/build_tools/appveyor/run_with_env.cmd => generated 240519 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 69/563] 203.208.60.85 () {38 vars in 731 bytes} [Sat Aug 25 00:00:17 2018] GET /projects/scikit-learn/build_tools/windows/windows_testing_downloader.ps1 => generated 240519 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +Internal Server Error: /projects/45/files/2513/functions/14216/callee_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 119/564] 203.208.60.85 () {38 vars in 697 bytes} [Sat Aug 25 00:00:22 2018] GET /projects/45/files/2513/functions/14216/callee_function/ => generated 77841 bytes in 59 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 88/565] 203.208.60.30 () {38 vars in 793 bytes} [Sat Aug 25 00:00:29 2018] GET /projects/pytorch/torch/csrc/jit/pybind.h => generated 890014 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2513/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 70/566] 203.208.60.30 () {38 vars in 661 bytes} [Sat Aug 25 00:00:32 2018] GET /projects/45/files/2513/find_function/ => generated 77463 bytes in 56 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +Not Found: /core/src/main/java/hudson/tasks/Shell.java +[pid: 19577|app: 0|req: 116/567] 203.208.60.92 () {38 vars in 671 bytes} [Sat Aug 25 00:00:50 2018] GET /core/src/main/java/hudson/tasks/Shell.java => generated 3197 bytes in 19 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2513/functions/14216/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 117/568] 203.208.60.94 () {38 vars in 665 bytes} [Sat Aug 25 00:00:51 2018] GET /projects/45/files/2513/functions/14216/ => generated 77505 bytes in 54 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2513/functions/14216/caller_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19580|app: 0|req: 76/569] 203.208.60.10 () {38 vars in 697 bytes} [Sat Aug 25 00:01:01 2018] GET /projects/45/files/2513/functions/14216/caller_function/ => generated 77841 bytes in 71 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2513/functions/14216/caller_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 118/570] 203.208.60.108 () {44 vars in 883 bytes} [Sat Aug 25 00:01:14 2018] GET /projects/45/files/2513/functions/14216/caller_function/ => generated 15854 bytes in 31 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/2513/functions/14216/callee_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 119/571] 203.208.60.87 () {44 vars in 882 bytes} [Sat Aug 25 00:01:25 2018] GET /projects/45/files/2513/functions/14216/callee_function/ => generated 15853 bytes in 27 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 71/572] 203.208.60.15 () {38 vars in 877 bytes} [Sat Aug 25 00:02:05 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_SerializeSparse.pbtxt => generated 2729036 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 77/573] 203.208.60.72 () {38 vars in 707 bytes} [Sat Aug 25 00:02:09 2018] GET /projects/tensorflow/tensorflow/tools/ci_build/Dockerfile.gpu => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 89/574] 203.208.60.4 () {38 vars in 738 bytes} [Sat Aug 25 00:02:32 2018] GET /projects/tensorflow/tensorflow/examples/tutorials/monitors/iris_training.csv => generated 2729034 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 120/575] 203.208.60.95 () {38 vars in 717 bytes} [Sat Aug 25 00:03:09 2018] GET /projects/tensorflow/tensorflow/tools/build_info/gen_build_info.py => generated 2729035 bytes in 245 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 120/576] 203.208.60.126 () {38 vars in 766 bytes} [Sat Aug 25 00:03:32 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.keras.layers.-dropout.pbtxt => generated 2729035 bytes in 216 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 121/577] 203.208.60.95 () {38 vars in 661 bytes} [Sat Aug 25 00:03:51 2018] GET /projects/pytorch/caffe2/core/dispatch => generated 890014 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 122/578] 203.208.60.19 () {38 vars in 753 bytes} [Sat Aug 25 00:04:03 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-name-attr-list.pbtxt => generated 2729035 bytes in 191 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19584|app: 0|req: 121/579] 203.208.60.90 () {38 vars in 803 bytes} [Sat Aug 25 00:04:31 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.train.-feature-lists.-feature-list-entry.pbtxt => generated 2729035 bytes in 212 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 123/580] 203.208.60.76 () {38 vars in 753 bytes} [Sat Aug 25 00:05:10 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.-summary.-image.pbtxt => generated 2729035 bytes in 212 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 122/581] 203.208.60.72 () {38 vars in 843 bytes} [Sat Aug 25 00:05:12 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/topk_op.cc => generated 2729035 bytes in 185 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 72/582] 203.208.60.11 () {38 vars in 719 bytes} [Sat Aug 25 00:05:44 2018] GET /projects/tensorflow/tensorflow/examples/wav_to_spectrogram/main.cc => generated 2729034 bytes in 205 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 73/583] 203.208.60.22 () {38 vars in 665 bytes} [Sat Aug 25 00:07:31 2018] GET /projects/Notes/.git/hooks/update.sample => generated 39377 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 90/584] 203.208.60.90 () {38 vars in 891 bytes} [Sat Aug 25 00:07:49 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ConditionalAccumulator.pbtxt => generated 2729035 bytes in 204 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +Internal Server Error: /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite' +[pid: 19586|app: 0|req: 91/585] 203.208.60.76 () {38 vars in 983 bytes} [Sat Aug 25 00:10:43 2018] GET /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/Examples/HelloTFLite => generated 86488 bytes in 417 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 74/586] 203.208.60.19 () {38 vars in 673 bytes} [Sat Aug 25 00:11:11 2018] GET /projects/pytorch/caffe2/operators/sqr_op.cc => generated 890014 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +Not Found: /robots.txt +[pid: 19580|app: 0|req: 78/587] 180.76.15.152 () {38 vars in 522 bytes} [Sat Aug 25 00:12:56 2018] GET /robots.txt => generated 3101 bytes in 39 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +Not Found: /robots.txt +[pid: 19580|app: 0|req: 79/588] 180.76.15.22 () {38 vars in 521 bytes} [Sat Aug 25 00:12:56 2018] GET /robots.txt => generated 3101 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 80/589] 203.208.60.126 () {38 vars in 820 bytes} [Sat Aug 25 00:13:35 2018] GET /projects/tensorflow/tensorflow/tools/ci_build/windows => generated 2729034 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 123/590] 203.208.60.11 () {38 vars in 673 bytes} [Sat Aug 25 00:15:30 2018] GET /projects/Notes/.git/hooks/pre-rebase.sample => generated 39377 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 124/591] 203.208.60.116 () {38 vars in 858 bytes} [Sat Aug 25 00:16:27 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/layout_assignment.cc => generated 2729035 bytes in 245 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 81/592] 203.208.60.49 () {38 vars in 673 bytes} [Sat Aug 25 00:18:32 2018] GET /projects/pytorch/caffe2/operators/map_ops.h => generated 890014 bytes in 146 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19577|app: 0|req: 125/593] 203.208.60.1 () {38 vars in 824 bytes} [Sat Aug 25 00:20:13 2018] GET /projects/pytorch/aten/src/ATen/test/dlconvertor_test.cpp => generated 890013 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 124/594] 203.208.60.76 () {38 vars in 837 bytes} [Sat Aug 25 00:22:12 2018] GET /projects/tensorflow/tensorflow/core/lib/io/zlib_outputbuffer.h => generated 2729035 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19578|app: 0|req: 75/595] 203.208.60.1 () {38 vars in 672 bytes} [Sat Aug 25 00:22:18 2018] GET /projects/Notes/.git/hooks/pre-commit.sample => generated 39377 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 100/596] 203.208.60.105 () {38 vars in 676 bytes} [Sat Aug 25 00:25:54 2018] GET /projects/pytorch/caffe2/operators/tanh_op.cu => generated 890014 bytes in 127 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 125/597] 203.208.60.70 () {38 vars in 895 bytes} [Sat Aug 25 00:26:05 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_DenseToDenseSetOperation.pbtxt => generated 2729036 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19582|app: 0|req: 101/598] 203.208.60.4 () {38 vars in 864 bytes} [Sat Aug 25 00:27:57 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_RefSwitch.pbtxt => generated 2729036 bytes in 231 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 126/599] 203.208.60.77 () {38 vars in 673 bytes} [Sat Aug 25 00:29:34 2018] GET /projects/Notes/.git/hooks/commit-msg.sample => generated 39377 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 126/600] 203.208.60.11 () {38 vars in 855 bytes} [Sat Aug 25 00:31:19 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_module_config.h => generated 2729035 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19586|app: 0|req: 92/601] 203.208.60.15 () {38 vars in 677 bytes} [Sat Aug 25 00:33:15 2018] GET /projects/scikit-learn/sklearn/datasets/lfw.py => generated 240518 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 93/602] 203.208.60.15 () {38 vars in 853 bytes} [Sat Aug 25 00:35:40 2018] GET /projects/tensorflow/tensorflow/contrib/cloud/kernels/gcs_config_ops.cc => generated 2729035 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 127/603] 203.208.60.29 () {38 vars in 861 bytes} [Sat Aug 25 00:36:35 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/constant_folding.h => generated 2729036 bytes in 256 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 94/604] 203.208.60.69 () {38 vars in 681 bytes} [Sat Aug 25 00:37:04 2018] GET /projects/Notes/.git/hooks/pre-applypatch.sample => generated 39377 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 128/605] 203.208.60.8 () {38 vars in 674 bytes} [Sat Aug 25 00:40:36 2018] GET /projects/Notes/.git/hooks/post-update.sample => generated 39377 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 95/606] 203.208.60.74 () {38 vars in 863 bytes} [Sat Aug 25 00:40:47 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/pyct/inspect_utils_test.py => generated 2729035 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19586|app: 0|req: 96/607] 203.208.60.74 () {38 vars in 791 bytes} [Sat Aug 25 00:42:20 2018] GET /projects/pytorch/.git/logs/refs/remotes => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 97/608] 203.208.60.4 () {38 vars in 850 bytes} [Sat Aug 25 00:46:25 2018] GET /projects/pytorch/caffe2/operators/experimental/c10/cpu/sigmoid_cpu.cc => generated 890014 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 98/609] 203.208.60.37 () {38 vars in 681 bytes} [Sat Aug 25 00:47:57 2018] GET /projects/Notes/.git/hooks/applypatch-msg.sample => generated 39377 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 76/610] 203.208.60.94 () {38 vars in 869 bytes} [Sat Aug 25 00:51:08 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/batch_dot_simplification.h => generated 2729035 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 129/611] 203.208.60.88 () {38 vars in 675 bytes} [Sat Aug 25 00:51:43 2018] GET /projects/pytorch/tools/setup_helpers/cuda.py => generated 890014 bytes in 129 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 130/612] 203.208.60.31 () {38 vars in 841 bytes} [Sat Aug 25 00:53:32 2018] GET /projects/tensorflow/tensorflow/core/kernels/linalg_ops_common.cc => generated 2729036 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19586|app: 0|req: 99/613] 203.208.60.22 () {38 vars in 905 bytes} [Sat Aug 25 00:54:57 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.keras.layers.-up-sampling1-d.pbtxt => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 100/614] 203.208.60.53 () {38 vars in 632 bytes} [Sat Aug 25 00:55:11 2018] GET /files/?sort=hot&page=19 => generated 23547 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 77/615] 203.208.60.69 () {38 vars in 687 bytes} [Sat Aug 25 00:55:18 2018] GET /projects/pytorch/caffe2/operators/layer_norm_op.cc => generated 890014 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 78/616] 203.208.60.36 () {38 vars in 632 bytes} [Sat Aug 25 00:55:27 2018] GET /files/?sort=hot&page=18 => generated 23619 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 127/617] 203.208.60.70 () {38 vars in 632 bytes} [Sat Aug 25 00:55:47 2018] GET /files/?sort=hot&page=17 => generated 23253 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 102/618] 203.208.60.69 () {38 vars in 887 bytes} [Sat Aug 25 00:56:43 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_ResourceScatterDiv.pbtxt => generated 2729036 bytes in 236 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 131/619] 203.208.60.54 () {38 vars in 632 bytes} [Sat Aug 25 01:00:38 2018] GET /files/?sort=hot&page=16 => generated 23352 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 128/620] 203.208.60.127 () {38 vars in 866 bytes} [Sat Aug 25 01:01:03 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/map_and_batch_dataset_op.cc => generated 2729036 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 129/621] 203.208.60.11 () {38 vars in 861 bytes} [Sat Aug 25 01:02:29 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/strided_slice_op.cc => generated 2729035 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 132/622] 203.208.60.116 () {38 vars in 676 bytes} [Sat Aug 25 01:02:38 2018] GET /projects/Notes/.git/hooks/pre-receive.sample => generated 39377 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 79/623] 47.94.43.182 () {36 vars in 431 bytes} [Sat Aug 25 01:06:06 2018] GET / => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 103/624] 47.94.43.182 () {36 vars in 431 bytes} [Sat Aug 25 01:06:07 2018] GET / => generated 9722 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +Not Found: /validate.php +[pid: 19580|app: 0|req: 82/625] 47.94.43.182 () {36 vars in 672 bytes} [Sat Aug 25 01:06:07 2018] GET /validate.php?step=0&n=discover&proto=http&ip=120.132.101.149&port=80&t=1535130367187&h=47.94.43.182&cip=&xff=&loc=1156320000 => generated 3245 bytes in 20 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 83/626] 203.208.60.15 () {38 vars in 861 bytes} [Sat Aug 25 01:06:17 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Maximum.pbtxt => generated 2729035 bytes in 205 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 104/627] 203.208.60.1 () {38 vars in 688 bytes} [Sat Aug 25 01:07:04 2018] GET /projects/scikit-learn/doc/developers/maintainer.rst => generated 240519 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 101/628] 203.208.60.88 () {38 vars in 839 bytes} [Sat Aug 25 01:08:14 2018] GET /projects/tensorflow/tensorflow/examples/multibox_detector/BUILD => generated 2729034 bytes in 257 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 102/629] 203.208.60.76 () {38 vars in 681 bytes} [Sat Aug 25 01:09:59 2018] GET /projects/pytorch/.jenkins/pytorch/build-asan.sh => generated 890014 bytes in 120 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 133/630] 203.208.60.103 () {38 vars in 854 bytes} [Sat Aug 25 01:11:09 2018] GET /projects/tensorflow/tensorflow/examples/learn/iris_custom_decay_dnn.py => generated 2729034 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 134/631] 203.208.60.105 () {38 vars in 684 bytes} [Sat Aug 25 01:13:39 2018] GET /projects/scikit-learn/sklearn/datasets/mlcomp.py => generated 240518 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 105/632] 203.208.60.97 () {38 vars in 851 bytes} [Sat Aug 25 01:15:04 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/fifo_queue_test.py => generated 2729035 bytes in 353 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 103/633] 203.208.60.80 () {38 vars in 859 bytes} [Sat Aug 25 01:16:51 2018] GET /projects/tensorflow/tensorflow/contrib/framework/python/ops/script_ops.py => generated 2729035 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 84/634] 203.208.60.2 () {38 vars in 688 bytes} [Sat Aug 25 01:17:20 2018] GET /projects/Notes/.git/hooks/prepare-commit-msg.sample => generated 39377 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 106/635] 203.208.60.35 () {38 vars in 857 bytes} [Sat Aug 25 01:20:10 2018] GET /projects/scikit-learn/sklearn/metrics/cluster/tests/test_unsupervised.py => generated 240518 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 80/636] 203.208.60.19 () {38 vars in 687 bytes} [Sat Aug 25 01:21:00 2018] GET /projects/scikit-learn/sklearn/utils/murmurhash.pyx => generated 240518 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 130/637] 203.208.60.10 () {38 vars in 853 bytes} [Sat Aug 25 01:22:37 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/threadpool_device.h => generated 2729035 bytes in 266 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 104/638] 203.208.60.49 () {38 vars in 693 bytes} [Sat Aug 25 01:24:40 2018] GET /projects/pytorch/caffe2/operators/utility_ops_test.cc => generated 890014 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 105/639] 203.208.60.53 () {38 vars in 885 bytes} [Sat Aug 25 01:25:36 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/features/python/clip_weights_test.py => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +Internal Server Error: /projects/21/files/1320/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 106/640] 203.208.60.31 () {38 vars in 633 bytes} [Sat Aug 25 01:27:34 2018] GET /projects/21/files/1320/ => generated 77169 bytes in 82 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 131/641] 203.208.60.72 () {38 vars in 622 bytes} [Sat Aug 25 01:27:44 2018] GET /projects/21/?sort= => generated 77280 bytes in 58 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 107/642] 203.208.60.2 () {38 vars in 623 bytes} [Sat Aug 25 01:27:55 2018] GET /projects/21/?page=9 => generated 77290 bytes in 45 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 132/643] 203.208.60.80 () {38 vars in 624 bytes} [Sat Aug 25 01:28:29 2018] GET /projects/21/?page=8 => generated 77291 bytes in 65 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 85/644] 203.208.60.8 () {38 vars in 884 bytes} [Sat Aug 25 01:28:29 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/estimator_test.py => generated 2729035 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 133/645] 203.208.60.77 () {38 vars in 624 bytes} [Sat Aug 25 01:28:39 2018] GET /projects/21/?page=7 => generated 77291 bytes in 54 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 108/646] 203.208.60.31 () {38 vars in 624 bytes} [Sat Aug 25 01:28:50 2018] GET /projects/21/?page=1 => generated 77291 bytes in 50 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 81/647] 203.208.60.11 () {38 vars in 687 bytes} [Sat Aug 25 01:29:00 2018] GET /projects/tensorflow/third_party/hadoop/LICENSE.txt => generated 2729034 bytes in 203 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 82/648] 203.208.60.14 () {38 vars in 624 bytes} [Sat Aug 25 01:29:03 2018] GET /projects/21/?page=2 => generated 77291 bytes in 47 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 83/649] 203.208.60.22 () {38 vars in 624 bytes} [Sat Aug 25 01:29:14 2018] GET /projects/21/?page=6 => generated 77291 bytes in 43 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 107/650] 203.208.60.36 () {38 vars in 626 bytes} [Sat Aug 25 01:29:24 2018] GET /projects/21/?page=11 => generated 77302 bytes in 51 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 108/651] 203.208.60.35 () {38 vars in 626 bytes} [Sat Aug 25 01:29:35 2018] GET /projects/21/?page=12 => generated 77302 bytes in 48 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 135/652] 203.208.60.2 () {38 vars in 625 bytes} [Sat Aug 25 01:29:46 2018] GET /projects/21/?page=23 => generated 77301 bytes in 58 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 109/653] 203.208.60.105 () {38 vars in 627 bytes} [Sat Aug 25 01:29:57 2018] GET /projects/21/?page=16 => generated 77303 bytes in 47 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 136/654] 203.208.60.10 () {38 vars in 626 bytes} [Sat Aug 25 01:30:07 2018] GET /projects/21/?page=14 => generated 77302 bytes in 46 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 110/655] 203.208.60.28 () {38 vars in 626 bytes} [Sat Aug 25 01:30:48 2018] GET /projects/21/?page=22 => generated 77302 bytes in 66 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 137/656] 203.208.60.21 () {38 vars in 626 bytes} [Sat Aug 25 01:30:59 2018] GET /projects/21/?page=15 => generated 77302 bytes in 51 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 111/657] 203.208.60.53 () {38 vars in 626 bytes} [Sat Aug 25 01:31:09 2018] GET /projects/21/?page=10 => generated 77302 bytes in 48 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 112/658] 203.208.60.123 () {38 vars in 834 bytes} [Sat Aug 25 01:31:14 2018] GET /projects/tensorflow/tensorflow/python/ops/split_benchmark.py => generated 2729035 bytes in 189 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +Internal Server Error: /projects/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 84/659] 203.208.60.74 () {38 vars in 626 bytes} [Sat Aug 25 01:31:20 2018] GET /projects/21/?page=13 => generated 77302 bytes in 48 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Internal Server Error: /projects/21/files/1327/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 138/660] 203.208.60.126 () {38 vars in 634 bytes} [Sat Aug 25 01:31:30 2018] GET /projects/21/files/1327/ => generated 77170 bytes in 79 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 85/661] 203.208.60.14 () {38 vars in 695 bytes} [Sat Aug 25 01:32:48 2018] GET /projects/pytorch/.jenkins/pytorch/docker-build-test.sh => generated 890014 bytes in 129 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +Internal Server Error: /projects/tree_method/21/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 139/662] 203.208.60.28 () {44 vars in 801 bytes} [Sat Aug 25 01:32:58 2018] GET /projects/tree_method/21/ => generated 15679 bytes in 31 msecs (HTTP/1.1 500) 4 headers in 145 bytes (2 switches on core 0) +Internal Server Error: /projects/21/files/1354/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 140/663] 203.208.60.1 () {38 vars in 632 bytes} [Sat Aug 25 01:33:05 2018] GET /projects/21/files/1354/ => generated 77168 bytes in 40 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Internal Server Error: /projects/21/files/1351/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path'Internal Server Error: /projects/21/files/1327/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' + +[pid: 19584|app: 0|req: 141/664] 203.208.60.17 () {44 vars in 830 bytes} [Sat Aug 25 01:33:38 2018] GET /projects/21/files/1327/find_function/ => generated 15747 bytes in 72 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 134/665] 203.208.60.126 () {38 vars in 634 bytes} [Sat Aug 25 01:33:38 2018] GET /projects/21/files/1351/ => generated 77170 bytes in 62 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/21/files/1322/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 142/666] 203.208.60.10 () {38 vars in 633 bytes} [Sat Aug 25 01:34:45 2018] GET /projects/21/files/1322/ => generated 77169 bytes in 79 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +Not Found: /webmagic-core/src/main/java/us/codecraft/webmagic/Spider.java +[pid: 19582|app: 0|req: 109/667] 203.208.60.15 () {38 vars in 709 bytes} [Sat Aug 25 01:35:04 2018] GET /webmagic-core/src/main/java/us/codecraft/webmagic/Spider.java => generated 3254 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Internal Server Error: /projects/21/files/1327/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 110/668] 203.208.60.62 () {38 vars in 661 bytes} [Sat Aug 25 01:35:32 2018] GET /projects/21/files/1327/find_function/ => generated 77463 bytes in 61 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 86/669] 203.208.60.116 () {38 vars in 922 bytes} [Sat Aug 25 01:35:40 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_DepthwiseConv2dNativeBackpropFilter.pbtxt => generated 2729036 bytes in 295 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 86/670] 203.208.60.4 () {38 vars in 688 bytes} [Sat Aug 25 01:35:47 2018] GET /projects/scikit-learn/sklearn/utils/class_weight.py => generated 240518 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 87/671] 203.208.60.98 () {38 vars in 879 bytes} [Sat Aug 25 01:36:59 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_FusedBatchNormV2.pbtxt => generated 2729036 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19582|app: 0|req: 111/672] 203.208.60.22 () {38 vars in 697 bytes} [Sat Aug 25 01:39:23 2018] GET /projects/tensorflow/tensorflow/stream_executor/kernel.h => generated 2729035 bytes in 230 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 113/673] 203.208.60.69 () {38 vars in 889 bytes} [Sat Aug 25 01:40:50 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.datasets.mnist.pbtxt => generated 2729035 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 143/674] 203.208.60.28 () {38 vars in 851 bytes} [Sat Aug 25 01:42:44 2018] GET /projects/tensorflow/tensorflow/core/kernels/cwise_op_gpu_square.cu.cc => generated 2729036 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19584|app: 0|req: 144/675] 203.208.60.127 () {38 vars in 702 bytes} [Sat Aug 25 01:43:04 2018] GET /projects/tensorflow/tensorflow/examples/multibox_detector => generated 2729034 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 88/676] 203.208.60.94 () {38 vars in 871 bytes} [Sat Aug 25 01:45:36 2018] GET /projects/tensorflow/tensorflow/compiler/aot/test_graph_tfunknownop.config.pbtxt => generated 2729035 bytes in 307 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 112/677] 203.208.60.116 () {38 vars in 754 bytes} [Sat Aug 25 01:46:47 2018] GET /projects/tensorflow/third_party/gpus/crosstool/windows/msvc_wrapper_for_nvcc.py.tpl => generated 2729033 bytes in 236 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 113/678] 203.208.60.4 () {38 vars in 696 bytes} [Sat Aug 25 01:46:48 2018] GET /projects/scikit-learn/examples/linear_model/plot_ols.py => generated 240518 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19582|app: 0|req: 114/679] 203.208.60.54 () {38 vars in 659 bytes} [Sat Aug 25 01:47:02 2018] GET /projects/tensorflow/tensorflow/tools => generated 2729034 bytes in 206 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19586|app: 0|req: 114/680] 203.208.60.62 () {38 vars in 661 bytes} [Sat Aug 25 01:47:22 2018] GET /projects/scikit-learn/doc/conftest.py => generated 240519 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19582|app: 0|req: 115/681] 203.208.60.30 () {38 vars in 795 bytes} [Sat Aug 25 01:47:44 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.-meta-graph-def.-signature-def-entry.pbtxt => generated 2729035 bytes in 209 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 135/682] 203.208.60.115 () {38 vars in 698 bytes} [Sat Aug 25 01:48:26 2018] GET /projects/tensorflow/tensorflow/examples/learn/README.md => generated 2729034 bytes in 237 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 115/683] 203.208.60.77 () {38 vars in 851 bytes} [Sat Aug 25 01:48:28 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/sycl/sycl_device.h => generated 2729035 bytes in 185 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 145/684] 203.208.60.98 () {38 vars in 735 bytes} [Sat Aug 25 01:49:07 2018] GET /projects/tensorflow/tensorflow/tools/ci_build/windows/libtensorflow_cpu.sh => generated 2729035 bytes in 253 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 146/685] 203.208.60.67 () {38 vars in 697 bytes} [Sat Aug 25 01:49:49 2018] GET /projects/scikit-learn/sklearn/compose/tests/__init__.py => generated 240518 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 89/686] 203.208.60.105 () {38 vars in 704 bytes} [Sat Aug 25 01:50:25 2018] GET /projects/scikit-learn/examples/model_selection/plot_roc.py => generated 240518 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 87/687] 203.208.60.80 () {38 vars in 699 bytes} [Sat Aug 25 01:50:39 2018] GET /projects/tensorflow/tensorflow/docs_src/install/index.md => generated 2729034 bytes in 296 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 116/688] 203.208.60.22 () {38 vars in 851 bytes} [Sat Aug 25 01:51:20 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/cholesky_op.cc => generated 2729035 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 90/689] 203.208.60.94 () {38 vars in 715 bytes} [Sat Aug 25 01:54:06 2018] GET /projects/scikit-learn/examples/linear_model/plot_ridge_coeffs.py => generated 240518 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 147/690] 71.6.146.185 () {34 vars in 533 bytes} [Sat Aug 25 01:55:39 2018] GET / => generated 9722 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Not Found: /robots.txt +[pid: 19586|app: 0|req: 117/691] 71.6.146.185 () {30 vars in 356 bytes} [Sat Aug 25 01:55:41 2018] GET /robots.txt => generated 3095 bytes in 13 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /sitemap.xml +[pid: 19580|app: 0|req: 91/692] 71.6.146.185 () {30 vars in 358 bytes} [Sat Aug 25 01:55:44 2018] GET /sitemap.xml => generated 3098 bytes in 24 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /.well-known/security.txt +[pid: 19586|app: 0|req: 118/693] 71.6.146.185 () {30 vars in 384 bytes} [Sat Aug 25 01:55:45 2018] GET /.well-known/security.txt => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19586|app: 0|req: 119/694] 71.6.146.185 () {36 vars in 451 bytes} [Sat Aug 25 01:55:47 2018] GET /favicon.ico => generated 3098 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 120/695] 203.208.60.80 () {38 vars in 823 bytes} [Sat Aug 25 01:56:01 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/sycl => generated 2729035 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 148/696] 203.208.60.49 () {38 vars in 833 bytes} [Sat Aug 25 01:57:05 2018] GET /projects/tensorflow/tensorflow/docs_src/install/migration.md => generated 2729034 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 149/697] 203.208.60.29 () {38 vars in 697 bytes} [Sat Aug 25 01:57:47 2018] GET /projects/scikit-learn/examples/linear_model/plot_ard.py => generated 240518 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +Internal Server Error: /projects/tensorflow/tensorflow/go/genop/internal +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/go/genop/internal' +[pid: 19578|app: 0|req: 88/698] 203.208.60.3 () {38 vars in 808 bytes} [Sat Aug 25 02:00:52 2018] GET /projects/tensorflow/tensorflow/go/genop/internal => generated 84308 bytes in 423 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 136/699] 203.208.60.3 () {38 vars in 716 bytes} [Sat Aug 25 02:01:31 2018] GET /projects/scikit-learn/examples/linear_model/plot_iris_logistic.py => generated 240518 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 121/700] 203.208.60.109 () {38 vars in 872 bytes} [Sat Aug 25 02:02:50 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python/head_test.py => generated 2729035 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 137/701] 203.208.60.14 () {38 vars in 701 bytes} [Sat Aug 25 02:05:07 2018] GET /projects/pytorch/scripts/fbcode-dev-setup/ccache_setup.sh => generated 890012 bytes in 143 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19577|app: 0|req: 138/702] 203.208.60.12 () {38 vars in 877 bytes} [Sat Aug 25 02:05:46 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/parallel_interleave_dataset_op.cc => generated 2729036 bytes in 223 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 150/703] 203.208.60.36 () {38 vars in 915 bytes} [Sat Aug 25 02:08:36 2018] GET /projects/tensorflow/tensorflow/contrib/training/python/training/sequence_queueing_state_saver_test.py => generated 2729035 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 92/704] 203.208.60.19 () {38 vars in 677 bytes} [Sat Aug 25 02:08:48 2018] GET /projects/scikit-learn/doc/modules/lda_qda.rst => generated 240519 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 139/705] 203.208.60.92 () {38 vars in 711 bytes} [Sat Aug 25 02:08:49 2018] GET /projects/scikit-learn/examples/linear_model/plot_ridge_path.py => generated 240518 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 93/706] 203.208.60.121 () {38 vars in 639 bytes} [Sat Aug 25 02:08:52 2018] GET /files/?sort=latest&page=24 => generated 23248 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 89/707] 203.208.60.44 () {38 vars in 638 bytes} [Sat Aug 25 02:08:56 2018] GET /files/?sort=latest&page=23 => generated 23241 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 116/708] 203.208.60.62 () {38 vars in 638 bytes} [Sat Aug 25 02:09:00 2018] GET /files/?sort=latest&page=26 => generated 23577 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 151/709] 203.208.60.127 () {38 vars in 639 bytes} [Sat Aug 25 02:09:04 2018] GET /files/?sort=latest&page=27 => generated 23513 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 152/710] 203.208.60.15 () {38 vars in 638 bytes} [Sat Aug 25 02:09:08 2018] GET /files/?sort=latest&page=19 => generated 23241 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 117/711] 203.208.60.121 () {38 vars in 639 bytes} [Sat Aug 25 02:09:12 2018] GET /files/?sort=latest&page=21 => generated 23339 bytes in 50 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 153/712] 203.208.60.53 () {38 vars in 638 bytes} [Sat Aug 25 02:09:19 2018] GET /files/?sort=latest&page=18 => generated 23331 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 154/713] 203.208.60.1 () {38 vars in 652 bytes} [Sat Aug 25 02:09:24 2018] GET /projects/scikit-learn/doc/modules => generated 240519 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 155/714] 203.208.60.31 () {38 vars in 661 bytes} [Sat Aug 25 02:09:30 2018] GET /projects/scikit-learn/doc/preface.rst => generated 240519 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 140/715] 203.208.60.1 () {38 vars in 684 bytes} [Sat Aug 25 02:09:36 2018] GET /projects/scikit-learn/doc/other_distributions.rst => generated 240519 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 141/716] 203.208.60.20 () {38 vars in 638 bytes} [Sat Aug 25 02:09:41 2018] GET /files/?sort=latest&page=29 => generated 23255 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 90/717] 203.208.60.10 () {38 vars in 638 bytes} [Sat Aug 25 02:09:47 2018] GET /files/?sort=latest&page=28 => generated 23382 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 142/718] 203.208.60.49 () {38 vars in 638 bytes} [Sat Aug 25 02:09:53 2018] GET /files/?sort=latest&page=25 => generated 23483 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 94/719] 203.208.60.55 () {38 vars in 638 bytes} [Sat Aug 25 02:09:58 2018] GET /files/?sort=latest&page=20 => generated 23297 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 95/720] 203.208.60.17 () {38 vars in 805 bytes} [Sat Aug 25 02:10:02 2018] GET /projects/scikit-learn/doc/modules/ensemble.rst => generated 240519 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 122/721] 203.208.60.123 () {38 vars in 796 bytes} [Sat Aug 25 02:10:22 2018] GET /projects/scikit-learn/doc/modules/sgd.rst => generated 240519 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +Internal Server Error: /projects/scikit-learn/doc/modules/glm_data +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/doc/modules/glm_data' +[pid: 19586|app: 0|req: 123/722] 203.208.60.36 () {38 vars in 797 bytes} [Sat Aug 25 02:10:34 2018] GET /projects/scikit-learn/doc/modules/glm_data => generated 84238 bytes in 74 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 156/723] 203.208.60.55 () {38 vars in 805 bytes} [Sat Aug 25 02:11:02 2018] GET /projects/scikit-learn/doc/modules/manifold.rst => generated 240519 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 91/724] 203.208.60.20 () {38 vars in 807 bytes} [Sat Aug 25 02:11:07 2018] GET /projects/scikit-learn/doc/modules/computing.rst => generated 240519 bytes in 50 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 143/725] 203.208.60.13 () {38 vars in 881 bytes} [Sat Aug 25 02:11:26 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/negative_binomial.py => generated 2729035 bytes in 198 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 144/726] 203.208.60.29 () {38 vars in 811 bytes} [Sat Aug 25 02:11:28 2018] GET /projects/scikit-learn/doc/modules/naive_bayes.rst => generated 240519 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 96/727] 203.208.60.26 () {38 vars in 813 bytes} [Sat Aug 25 02:11:44 2018] GET /projects/scikit-learn/doc/modules/kernel_ridge.rst => generated 240519 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 92/728] 203.208.60.11 () {38 vars in 813 bytes} [Sat Aug 25 02:12:02 2018] GET /projects/scikit-learn/doc/modules/biclustering.rst => generated 240519 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 124/729] 203.208.60.80 () {38 vars in 817 bytes} [Sat Aug 25 02:12:20 2018] GET /projects/scikit-learn/doc/modules/learning_curve.rst => generated 240519 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 125/730] 203.208.60.78 () {38 vars in 713 bytes} [Sat Aug 25 02:12:29 2018] GET /projects/scikit-learn/examples/gaussian_process/plot_gpc_xor.py => generated 240518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 97/731] 203.208.60.87 () {38 vars in 636 bytes} [Sat Aug 25 02:12:30 2018] GET /files/?sort=hot&page=2066 => generated 23352 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Not Found: /cache/global/img/gs.gif +[pid: 19577|app: 0|req: 145/732] 80.82.70.187 () {32 vars in 429 bytes} [Sat Aug 25 02:14:44 2018] GET /cache/global/img/gs.gif => generated 3132 bytes in 28 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 146/733] 203.208.60.123 () {38 vars in 633 bytes} [Sat Aug 25 02:15:21 2018] GET /files/?sort=hot&page=35 => generated 23438 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 147/734] 203.208.60.62 () {38 vars in 887 bytes} [Sat Aug 25 02:15:27 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/rnn_common_test.py => generated 2729035 bytes in 186 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 148/735] 203.208.60.53 () {38 vars in 965 bytes} [Sat Aug 25 02:15:42 2018] GET /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/ProjectSettings/TimeManager.asset => generated 2729035 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 93/736] 203.208.60.21 () {38 vars in 758 bytes} [Sat Aug 25 02:15:50 2018] GET /files/?sort=hot&page=40 => generated 23261 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 118/737] 203.208.60.2 () {38 vars in 828 bytes} [Sat Aug 25 02:15:58 2018] GET /projects/tensorflow/tensorflow/contrib/metrics/__init__.py => generated 2729035 bytes in 185 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 94/738] 203.208.60.70 () {38 vars in 733 bytes} [Sat Aug 25 02:16:10 2018] GET /projects/scikit-learn/examples/model_selection/plot_grid_search_digits.py => generated 240518 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 119/739] 203.208.60.29 () {38 vars in 925 bytes} [Sat Aug 25 02:16:15 2018] GET /projects/tensorflow/tensorflow/contrib/lite/examples/android/app/src/main/res/animator/color_animation.xml => generated 2729035 bytes in 167 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 98/740] 203.208.60.22 () {38 vars in 815 bytes} [Sat Aug 25 02:16:31 2018] GET /projects/tensorflow/tensorflow/python/ops/nn_ops.py => generated 2729035 bytes in 228 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 149/741] 203.208.60.127 () {38 vars in 818 bytes} [Sat Aug 25 02:16:36 2018] GET /projects/tensorflow/tensorflow/contrib/cloud/kernels => generated 2729035 bytes in 172 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 150/742] 203.208.60.8 () {38 vars in 840 bytes} [Sat Aug 25 02:16:45 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tooling_util.cc => generated 2729035 bytes in 167 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 151/743] 203.208.60.21 () {38 vars in 929 bytes} [Sat Aug 25 02:16:53 2018] GET /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/res/layout-v26/fragment_camera2_basic.xml => generated 2729035 bytes in 160 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 157/744] 203.208.60.14 () {38 vars in 835 bytes} [Sat Aug 25 02:17:01 2018] GET /projects/tensorflow/tensorflow/contrib/linear_optimizer/BUILD => generated 2729035 bytes in 173 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 158/745] 203.208.60.54 () {38 vars in 758 bytes} [Sat Aug 25 02:17:09 2018] GET /files/?sort=hot&page=42 => generated 23593 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 126/746] 203.208.60.94 () {38 vars in 829 bytes} [Sat Aug 25 02:17:11 2018] GET /projects/tensorflow/tensorflow/examples/ios/simple/Podfile => generated 2729034 bytes in 160 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 152/747] 203.208.60.14 () {38 vars in 758 bytes} [Sat Aug 25 02:17:18 2018] GET /files/?sort=hot&page=41 => generated 23296 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 159/748] 203.208.60.126 () {38 vars in 759 bytes} [Sat Aug 25 02:17:26 2018] GET /files/?sort=hot&page=45 => generated 23421 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 95/749] 203.208.60.70 () {38 vars in 758 bytes} [Sat Aug 25 02:17:35 2018] GET /files/?sort=hot&page=43 => generated 23470 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 96/750] 203.208.60.74 () {38 vars in 758 bytes} [Sat Aug 25 02:17:47 2018] GET /files/?sort=hot&page=47 => generated 23329 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 99/751] 203.208.60.72 () {38 vars in 758 bytes} [Sat Aug 25 02:17:48 2018] GET /files/?sort=hot&page=46 => generated 23505 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 153/752] 203.208.60.26 () {38 vars in 758 bytes} [Sat Aug 25 02:18:05 2018] GET /files/?sort=hot&page=48 => generated 23251 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 160/753] 203.208.60.36 () {38 vars in 758 bytes} [Sat Aug 25 02:18:28 2018] GET /files/?sort=hot&page=49 => generated 23336 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 161/754] 203.208.60.95 () {38 vars in 758 bytes} [Sat Aug 25 02:18:56 2018] GET /files/?sort=hot&page=50 => generated 23437 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 162/755] 203.208.60.53 () {38 vars in 767 bytes} [Sat Aug 25 02:19:04 2018] GET /projects/pytorch/CODEOWNERS => generated 890014 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19582|app: 0|req: 120/756] 203.208.60.109 () {38 vars in 759 bytes} [Sat Aug 25 02:19:13 2018] GET /files/?sort=hot&page=53 => generated 23529 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 163/757] 203.208.60.11 () {38 vars in 758 bytes} [Sat Aug 25 02:19:22 2018] GET /files/?sort=hot&page=51 => generated 23397 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 127/758] 203.208.60.87 () {38 vars in 758 bytes} [Sat Aug 25 02:19:32 2018] GET /files/?sort=hot&page=54 => generated 23582 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 121/759] 203.208.60.12 () {38 vars in 758 bytes} [Sat Aug 25 02:20:26 2018] GET /files/?sort=hot&page=52 => generated 23631 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 97/760] 203.208.60.62 () {38 vars in 713 bytes} [Sat Aug 25 02:20:27 2018] GET /projects/scikit-learn/examples/gaussian_process/plot_gpr_co2.py => generated 240518 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 100/761] 203.208.60.62 () {38 vars in 781 bytes} [Sat Aug 25 02:20:33 2018] GET /projects/pytorch/.git/refs/remotes => generated 890014 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 154/762] 203.208.60.90 () {38 vars in 758 bytes} [Sat Aug 25 02:20:39 2018] GET /files/?sort=hot&page=55 => generated 23315 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 101/763] 203.208.60.80 () {38 vars in 801 bytes} [Sat Aug 25 02:20:44 2018] GET /projects/pytorch/torch/distributions/beta.py => generated 890014 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 98/764] 203.208.60.11 () {38 vars in 855 bytes} [Sat Aug 25 02:20:49 2018] GET /projects/pytorch/caffe2/python/lengths_reducer_rowwise_8bit_ops_test.py => generated 890014 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19578|app: 0|req: 99/765] 203.208.60.94 () {38 vars in 707 bytes} [Sat Aug 25 02:20:53 2018] GET /projects/tensorflow/third_party/gpus/crosstool/CROSSTOOL.tpl => generated 2729033 bytes in 191 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 122/766] 203.208.60.76 () {38 vars in 863 bytes} [Sat Aug 25 02:20:56 2018] GET /projects/tensorflow/tensorflow/contrib/all_reduce/python/all_reduce_test.py => generated 2729035 bytes in 157 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 128/767] 203.208.60.22 () {38 vars in 867 bytes} [Sat Aug 25 02:20:59 2018] GET /projects/pytorch/test/expect/TestScript.test_onnx_export_script_module.expect => generated 890014 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19580|app: 0|req: 102/768] 203.208.60.28 () {38 vars in 811 bytes} [Sat Aug 25 02:21:02 2018] GET /projects/pytorch/torch/lib/THD/base/DataChannel.h => generated 890014 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19580|app: 0|req: 103/769] 203.208.60.103 () {38 vars in 862 bytes} [Sat Aug 25 02:21:04 2018] GET /projects/pytorch/caffe2/mobile/contrib/arm-compute/test/gl_copy_op_test.cc => generated 890014 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 129/770] 203.208.60.74 () {38 vars in 823 bytes} [Sat Aug 25 02:21:06 2018] GET /projects/pytorch/torch/csrc/jit/passes/shape_analysis.h => generated 890014 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 130/771] 203.208.60.15 () {38 vars in 819 bytes} [Sat Aug 25 02:21:08 2018] GET /projects/pytorch/caffe2/contrib/cuda-convnet2/LICENSE => generated 890014 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 131/772] 203.208.60.105 () {38 vars in 828 bytes} [Sat Aug 25 02:21:11 2018] GET /projects/pytorch/caffe2/python/modeling/parameter_info.py => generated 890014 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 132/773] 203.208.60.49 () {38 vars in 758 bytes} [Sat Aug 25 02:21:19 2018] GET /files/?sort=hot&page=56 => generated 23268 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 155/774] 203.208.60.29 () {38 vars in 758 bytes} [Sat Aug 25 02:21:28 2018] GET /files/?sort=hot&page=58 => generated 23415 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 104/775] 203.208.60.36 () {38 vars in 758 bytes} [Sat Aug 25 02:21:36 2018] GET /files/?sort=hot&page=59 => generated 23472 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 156/776] 203.208.60.12 () {38 vars in 758 bytes} [Sat Aug 25 02:21:45 2018] GET /files/?sort=hot&page=57 => generated 23328 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 157/777] 203.208.60.11 () {38 vars in 787 bytes} [Sat Aug 25 02:21:50 2018] GET /projects/pytorch/scripts/build_ios.sh => generated 890012 bytes in 85 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 158/778] 203.208.60.108 () {38 vars in 759 bytes} [Sat Aug 25 02:21:55 2018] GET /files/?sort=hot&page=60 => generated 23568 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 164/779] 203.208.60.72 () {38 vars in 795 bytes} [Sat Aug 25 02:22:00 2018] GET /projects/tensorflow/tensorflow/go/test.sh => generated 2729036 bytes in 190 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 105/780] 203.208.60.77 () {38 vars in 861 bytes} [Sat Aug 25 02:22:06 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tensorflow_graph_matching => generated 2729035 bytes in 188 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 133/781] 203.208.60.72 () {38 vars in 761 bytes} [Sat Aug 25 02:22:10 2018] GET /projects/pytorch/tox.ini => generated 890014 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 100/782] 203.208.60.19 () {38 vars in 769 bytes} [Sat Aug 25 02:22:14 2018] GET /projects/pytorch/.clang-tidy => generated 890014 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 134/783] 203.208.60.45 () {38 vars in 867 bytes} [Sat Aug 25 02:22:19 2018] GET /projects/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/model.py => generated 2729035 bytes in 155 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19578|app: 0|req: 101/784] 203.208.60.29 () {38 vars in 871 bytes} [Sat Aug 25 02:22:56 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/symbolic_shapes_test.cc => generated 2729036 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 165/785] 203.208.60.103 () {38 vars in 716 bytes} [Sat Aug 25 02:23:30 2018] GET /projects/scikit-learn/examples/gaussian_process/plot_gpc_iris.py => generated 240518 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19580|app: 0|req: 106/786] 203.208.60.98 () {38 vars in 758 bytes} [Sat Aug 25 02:25:13 2018] GET /files/?sort=hot&page=65 => generated 23289 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 166/787] 203.208.60.28 () {38 vars in 683 bytes} [Sat Aug 25 02:25:49 2018] GET /projects/scikit-learn/sklearn/compose/_target.py => generated 240518 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19577|app: 0|req: 159/788] 77.241.120.81 () {32 vars in 462 bytes} [Sat Aug 25 02:25:59 2018] GET / => generated 9722 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 160/789] 203.208.60.85 () {38 vars in 867 bytes} [Sat Aug 25 02:26:08 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ExpandDims.pbtxt => generated 2729035 bytes in 230 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 123/790] 203.208.60.15 () {38 vars in 743 bytes} [Sat Aug 25 02:27:10 2018] GET /projects/scikit-learn/examples/model_selection/plot_multi_metric_evaluation.py => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 135/791] 203.208.60.126 () {38 vars in 848 bytes} [Sat Aug 25 02:30:19 2018] GET /projects/pytorch/aten/src/THC/generated/THCTensorMathReduceFloat.cu => generated 890013 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19582|app: 0|req: 124/792] 203.208.60.85 () {38 vars in 717 bytes} [Sat Aug 25 02:30:51 2018] GET /projects/scikit-learn/examples/model_selection/plot_cv_predict.py => generated 240518 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 167/793] 203.208.60.20 () {38 vars in 863 bytes} [Sat Aug 25 02:31:33 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/rpc/grpc_channel.cc => generated 2729036 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 168/794] 203.208.60.26 () {38 vars in 717 bytes} [Sat Aug 25 02:34:31 2018] GET /projects/scikit-learn/examples/gaussian_process/plot_gpr_noisy.py => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 136/795] 203.208.60.95 () {38 vars in 833 bytes} [Sat Aug 25 02:35:02 2018] GET /projects/pytorch/torch/legacy/nn/SpatialClassNLLCriterion.py => generated 890014 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 137/796] 203.208.60.116 () {38 vars in 850 bytes} [Sat Aug 25 02:37:19 2018] GET /projects/tensorflow/tensorflow/docs_src/performance/xla/tfcompile.md => generated 2729034 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 125/797] 203.208.60.13 () {38 vars in 719 bytes} [Sat Aug 25 02:38:12 2018] GET /projects/scikit-learn/examples/linear_model/plot_huber_vs_ridge.py => generated 240518 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19577|app: 0|req: 161/798] 203.208.60.21 () {38 vars in 881 bytes} [Sat Aug 25 02:40:58 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/ordered.py => generated 2729035 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 102/799] 203.208.60.31 () {38 vars in 745 bytes} [Sat Aug 25 02:41:53 2018] GET /projects/scikit-learn/examples/model_selection/plot_underfitting_overfitting.py => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 169/800] 203.208.60.87 () {38 vars in 833 bytes} [Sat Aug 25 02:43:04 2018] GET /projects/tensorflow/tensorflow/contrib/framework/__init__.py => generated 2729035 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 103/801] 203.208.60.54 () {38 vars in 719 bytes} [Sat Aug 25 02:45:34 2018] GET /projects/scikit-learn/doc/templates/deprecated_class_with_call.rst => generated 240519 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 170/802] 203.208.60.88 () {38 vars in 839 bytes} [Sat Aug 25 02:46:05 2018] GET /projects/pytorch/aten/src/THCUNN/VolumetricUpSamplingNearest.cu => generated 890013 bytes in 113 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 171/803] 177.16.102.9 () {26 vars in 276 bytes} [Sat Aug 25 02:48:42 2018] GET / => generated 9722 bytes in 63 msecs (HTTP/1.0 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 162/804] 203.208.60.97 () {38 vars in 719 bytes} [Sat Aug 25 02:49:14 2018] GET /projects/scikit-learn/examples/linear_model/plot_sgd_comparison.py => generated 240518 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 163/805] 203.208.60.105 () {38 vars in 832 bytes} [Sat Aug 25 02:51:02 2018] GET /projects/tensorflow/tensorflow/core/kernels/cwise_op_pow.cc => generated 2729036 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 172/806] 203.208.60.90 () {38 vars in 835 bytes} [Sat Aug 25 02:51:41 2018] GET /projects/tensorflow/tensorflow/python/keras/utils/tf_utils.py => generated 2729035 bytes in 240 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 164/807] 203.208.60.17 () {38 vars in 638 bytes} [Sat Aug 25 02:52:32 2018] GET /files/?sort=latest&page=35 => generated 23067 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 138/808] 203.208.60.28 () {38 vars in 737 bytes} [Sat Aug 25 02:52:55 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/prefetch_autotuner_test.cc => generated 2729036 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 1) +[pid: 19580|app: 0|req: 107/809] 203.208.60.30 () {38 vars in 687 bytes} [Sat Aug 25 02:54:00 2018] GET /projects/pytorch/caffe2/operators/leaky_relu_op.cc => generated 890014 bytes in 131 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 173/810] 203.208.60.29 () {38 vars in 647 bytes} [Sat Aug 25 02:54:06 2018] GET /projects/pytorch/.git/branches => generated 890014 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 174/811] 203.208.60.44 () {38 vars in 685 bytes} [Sat Aug 25 02:54:14 2018] GET /projects/pytorch/caffe2/opt/onnxifi_transformer.h => generated 890014 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19580|app: 0|req: 108/812] 203.208.60.102 () {38 vars in 706 bytes} [Sat Aug 25 02:54:21 2018] GET /projects/pytorch/caffe2/operators/elementwise_add_op_gpu.cc => generated 890014 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 139/813] 203.208.60.55 () {38 vars in 745 bytes} [Sat Aug 25 02:54:28 2018] GET /projects/tensorflow/tensorflow/examples/wav_to_spectrogram/wav_to_spectrogram.h => generated 2729034 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 140/814] 203.208.60.62 () {38 vars in 771 bytes} [Sat Aug 25 02:54:36 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.train.-monitored-session.pbtxt => generated 2729035 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 141/815] 203.208.60.31 () {38 vars in 709 bytes} [Sat Aug 25 02:55:12 2018] GET /projects/tensorflow/tensorflow/examples/tutorials/__init__.py => generated 2729034 bytes in 222 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 165/816] 203.208.60.62 () {38 vars in 783 bytes} [Sat Aug 25 02:55:48 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.estimator.-warm-start-settings.pbtxt => generated 2729035 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 175/817] 203.208.60.35 () {38 vars in 845 bytes} [Sat Aug 25 02:55:51 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/segment/segment.cc => generated 2729035 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 1) +[pid: 19582|app: 0|req: 126/818] 203.208.60.88 () {38 vars in 725 bytes} [Sat Aug 25 02:56:35 2018] GET /projects/scikit-learn/examples/model_selection/plot_learning_curve.py => generated 240518 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 176/819] 203.208.60.10 () {38 vars in 887 bytes} [Sat Aug 25 02:57:27 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.train.-queue-runner.pbtxt => generated 2729035 bytes in 276 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 109/820] 203.208.60.82 () {38 vars in 715 bytes} [Sat Aug 25 02:59:29 2018] GET /projects/pytorch/caffe2/operators/experimental/c10/cpu/fc_cpu.cc => generated 890014 bytes in 136 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 127/821] 203.208.60.69 () {38 vars in 761 bytes} [Sat Aug 25 03:00:16 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_DataFormatVecPermute.pbtxt => generated 2729036 bytes in 276 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19578|app: 0|req: 104/822] 203.208.60.77 () {38 vars in 889 bytes} [Sat Aug 25 03:00:36 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_SparseFillEmptyRows.pbtxt => generated 2729036 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 1) +[pid: 19584|app: 0|req: 177/823] 203.208.60.74 () {38 vars in 663 bytes} [Sat Aug 25 03:03:09 2018] GET /projects/scikit-learn/doc/tune_toc.rst => generated 240519 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 178/824] 203.208.60.80 () {38 vars in 821 bytes} [Sat Aug 25 03:03:12 2018] GET /projects/pytorch/caffe2/contrib/cuda-convnet2/initw.py => generated 890014 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 179/825] 203.208.60.121 () {38 vars in 728 bytes} [Sat Aug 25 03:03:56 2018] GET /projects/scikit-learn/examples/linear_model/plot_ols_ridge_variance.py => generated 240518 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 180/826] 203.208.60.116 () {38 vars in 840 bytes} [Sat Aug 25 03:06:07 2018] GET /projects/pytorch/caffe2/mobile/contrib/opengl/core/GLContext.cc => generated 890014 bytes in 126 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 181/827] 203.208.60.20 () {38 vars in 727 bytes} [Sat Aug 25 03:07:36 2018] GET /projects/scikit-learn/examples/linear_model/plot_sgd_loss_functions.py => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 182/828] 188.212.218.35 () {34 vars in 494 bytes} [Sat Aug 25 03:09:32 2018] GET / => generated 9722 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 183/829] 203.208.60.90 () {38 vars in 849 bytes} [Sat Aug 25 03:11:00 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/pyct/origin_info.py => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 184/830] 203.208.60.76 () {38 vars in 731 bytes} [Sat Aug 25 03:11:17 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/debug_stripper.h => generated 2729036 bytes in 193 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 110/831] 203.208.60.45 () {38 vars in 859 bytes} [Sat Aug 25 03:11:49 2018] GET /projects/scikit-learn/sklearn/datasets/tests/data/openml/292/data.arff.gz => generated 240518 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 128/832] 203.208.60.70 () {38 vars in 715 bytes} [Sat Aug 25 03:14:57 2018] GET /projects/tensorflow/tensorflow/core/kernels/conv_ops_gpu_3.cu.cc => generated 2729036 bytes in 239 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 142/833] 203.208.60.126 () {38 vars in 864 bytes} [Sat Aug 25 03:16:02 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/gather_expander_test.cc => generated 2729035 bytes in 239 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 143/834] 203.208.60.21 () {38 vars in 867 bytes} [Sat Aug 25 03:17:52 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ScatterMax.pbtxt => generated 2729035 bytes in 283 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 185/835] 203.208.60.2 () {38 vars in 746 bytes} [Sat Aug 25 03:18:38 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/convert/trt_optimization_pass.cc => generated 2729035 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 129/836] 203.208.60.19 () {38 vars in 616 bytes} [Sat Aug 25 03:20:26 2018] GET /files/?page=202 => generated 23284 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 186/837] 203.208.60.64 () {38 vars in 616 bytes} [Sat Aug 25 03:20:26 2018] GET /files/?page=201 => generated 23335 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 130/838] 203.208.60.31 () {38 vars in 845 bytes} [Sat Aug 25 03:20:29 2018] GET /projects/tensorflow/tensorflow/core/kernels/slice_op_cpu_impl_3.cc => generated 2729036 bytes in 194 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19578|app: 0|req: 105/839] 203.208.60.82 () {38 vars in 665 bytes} [Sat Aug 25 03:20:32 2018] GET /projects/tensorflow/third_party/mkl_dnn => generated 2729033 bytes in 187 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 106/840] 203.208.60.62 () {38 vars in 737 bytes} [Sat Aug 25 03:20:35 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.summary.pbtxt => generated 2729035 bytes in 159 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 187/841] 203.208.60.108 () {38 vars in 840 bytes} [Sat Aug 25 03:20:57 2018] GET /projects/tensorflow/tensorflow/core/platform/default/protobuf.h => generated 2729036 bytes in 190 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 0) +[pid: 19577|app: 0|req: 166/842] 203.208.60.53 () {38 vars in 742 bytes} [Sat Aug 25 03:21:00 2018] GET /files/?page=197 => generated 23011 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 167/843] 203.208.60.95 () {38 vars in 632 bytes} [Sat Aug 25 03:22:06 2018] GET /files/?sort=hot&page=49 => generated 23336 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 168/844] 203.208.60.82 () {38 vars in 837 bytes} [Sat Aug 25 03:22:08 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_cse.cc => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 188/845] 203.208.60.64 () {38 vars in 855 bytes} [Sat Aug 25 03:22:09 2018] GET /projects/tensorflow/tensorflow/core/kernels/reduction_ops_gpu_int.cu.cc => generated 2729036 bytes in 170 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19586|app: 0|req: 144/846] 203.208.60.31 () {38 vars in 871 bytes} [Sat Aug 25 03:22:11 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_SqlDataset.pbtxt => generated 2729036 bytes in 162 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 145/847] 203.208.60.35 () {38 vars in 861 bytes} [Sat Aug 25 03:22:12 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/shape_optimizer.cc => generated 2729036 bytes in 188 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 111/848] 203.208.60.49 () {38 vars in 849 bytes} [Sat Aug 25 03:22:14 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/direct_session.cc => generated 2729035 bytes in 171 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 112/849] 203.208.60.109 () {38 vars in 830 bytes} [Sat Aug 25 03:22:15 2018] GET /projects/tensorflow/tensorflow/core/lib/io/table_options.h => generated 2729035 bytes in 160 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 189/850] 203.208.60.109 () {38 vars in 876 bytes} [Sat Aug 25 03:22:16 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_RegexReplace.pbtxt => generated 2729036 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 190/851] 203.208.60.26 () {38 vars in 857 bytes} [Sat Aug 25 03:22:17 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_AddV2.pbtxt => generated 2729035 bytes in 159 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 113/852] 203.208.60.109 () {38 vars in 722 bytes} [Sat Aug 25 03:22:18 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/examples/notebooks => generated 2729035 bytes in 158 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 131/853] 203.208.60.108 () {38 vars in 872 bytes} [Sat Aug 25 03:22:20 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_DecodeBase64.pbtxt => generated 2729035 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 114/854] 203.208.60.55 () {38 vars in 889 bytes} [Sat Aug 25 03:22:21 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_evaluator_typed_visitor_uint8.cc => generated 2729035 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 169/855] 203.208.60.20 () {38 vars in 829 bytes} [Sat Aug 25 03:22:23 2018] GET /projects/tensorflow/tensorflow/core/framework/log_memory.h => generated 2729036 bytes in 152 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19582|app: 0|req: 132/856] 203.208.60.35 () {38 vars in 877 bytes} [Sat Aug 25 03:22:25 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_PriorityQueueV2.pbtxt => generated 2729036 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 115/857] 203.208.60.11 () {38 vars in 835 bytes} [Sat Aug 25 03:22:30 2018] GET /projects/tensorflow/tensorflow/compiler/aot/benchmark_test.cc => generated 2729035 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 133/858] 203.208.60.80 () {38 vars in 883 bytes} [Sat Aug 25 03:22:35 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_CTCGreedyDecoder.pbtxt => generated 2729036 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 146/859] 203.208.60.8 () {38 vars in 830 bytes} [Sat Aug 25 03:23:20 2018] GET /projects/tensorflow/tensorflow/core/kernels/cwise_op_erf.cc => generated 2729036 bytes in 236 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 191/860] 203.208.60.30 () {38 vars in 837 bytes} [Sat Aug 25 03:24:48 2018] GET /projects/scikit-learn/examples/exercises/plot_iris_exercise.py => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 107/861] 203.208.60.28 () {38 vars in 742 bytes} [Sat Aug 25 03:25:10 2018] GET /files/?page=192 => generated 23259 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 170/862] 203.208.60.13 () {38 vars in 632 bytes} [Sat Aug 25 03:25:12 2018] GET /files/?sort=hot&page=56 => generated 23268 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 108/863] 203.208.60.70 () {38 vars in 742 bytes} [Sat Aug 25 03:25:57 2018] GET /files/?page=193 => generated 23323 bytes in 93 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 109/864] 203.208.60.21 () {38 vars in 729 bytes} [Sat Aug 25 03:26:18 2018] GET /projects/scikit-learn/examples/gaussian_process/plot_compare_gpr_krr.py => generated 240518 bytes in 42 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 116/865] 203.208.60.97 () {38 vars in 813 bytes} [Sat Aug 25 03:26:19 2018] GET /projects/pytorch/caffe2/core/dispatch/Dispatcher.h => generated 890014 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19577|app: 0|req: 171/866] 203.208.60.88 () {38 vars in 742 bytes} [Sat Aug 25 03:26:27 2018] GET /files/?page=195 => generated 23137 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 192/867] 80.82.70.118 () {30 vars in 371 bytes} [Sat Aug 25 03:28:30 2018] GET / => generated 9722 bytes in 74 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 147/868] 203.208.60.80 () {38 vars in 616 bytes} [Sat Aug 25 03:28:52 2018] GET /files/?page=116 => generated 23415 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 148/869] 203.208.60.64 () {38 vars in 729 bytes} [Sat Aug 25 03:29:39 2018] GET /projects/scikit-learn/examples/model_selection/plot_validation_curve.py => generated 240518 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 193/870] 203.208.60.64 () {38 vars in 787 bytes} [Sat Aug 25 03:31:11 2018] GET /projects/pytorch/torch/jit/batchop.py => generated 890014 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19582|app: 0|req: 134/871] 203.208.60.13 () {38 vars in 843 bytes} [Sat Aug 25 03:31:57 2018] GET /projects/tensorflow/tensorflow/contrib/mpi_collectives/mpi_ops.py => generated 2729035 bytes in 231 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 194/872] 203.208.60.17 () {38 vars in 787 bytes} [Sat Aug 25 03:32:05 2018] GET /projects/pytorch/binaries/split_db.cc => generated 890014 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19578|app: 0|req: 110/873] 203.208.60.33 () {38 vars in 616 bytes} [Sat Aug 25 03:32:32 2018] GET /files/?page=118 => generated 23273 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 149/874] 203.208.60.55 () {38 vars in 883 bytes} [Sat Aug 25 03:33:00 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_OptionalGetValue.pbtxt => generated 2729036 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 117/875] 203.208.60.121 () {38 vars in 732 bytes} [Sat Aug 25 03:33:20 2018] GET /projects/scikit-learn/examples/model_selection/plot_randomized_search.py => generated 240518 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 135/876] 203.208.60.19 () {38 vars in 742 bytes} [Sat Aug 25 03:34:04 2018] GET /files/?page=122 => generated 23081 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 172/877] 203.208.60.55 () {38 vars in 831 bytes} [Sat Aug 25 03:36:06 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/README.md => generated 2729035 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 136/878] 203.208.60.1 () {38 vars in 741 bytes} [Sat Aug 25 03:36:56 2018] GET /files/?page=123 => generated 23087 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 137/879] 203.208.60.97 () {38 vars in 689 bytes} [Sat Aug 25 03:37:01 2018] GET /projects/tensorflow/tensorflow/core/platform/cuda.h => generated 2729036 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 138/880] 203.208.60.69 () {38 vars in 863 bytes} [Sat Aug 25 03:37:52 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_dataflow_analysis.h => generated 2729035 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 118/881] 203.208.60.10 () {38 vars in 839 bytes} [Sat Aug 25 03:40:35 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/proto/topology.proto => generated 2729035 bytes in 256 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 119/882] 203.208.60.2 () {38 vars in 732 bytes} [Sat Aug 25 03:40:41 2018] GET /projects/scikit-learn/examples/linear_model/plot_lasso_model_selection.py => generated 240518 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19577|app: 0|req: 173/883] 203.208.60.51 () {38 vars in 845 bytes} [Sat Aug 25 03:43:27 2018] GET /projects/tensorflow/tensorflow/python/summary/text_summary_test.py => generated 2729035 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 174/884] 203.208.60.8 () {38 vars in 736 bytes} [Sat Aug 25 03:44:21 2018] GET /projects/scikit-learn/examples/linear_model/plot_logistic_l1_l2_sparsity.py => generated 240518 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 175/885] 203.208.60.95 () {38 vars in 705 bytes} [Sat Aug 25 03:44:24 2018] GET /projects/tensorflow/tensorflow/core/kernels/sequence_ops.cc => generated 2729036 bytes in 181 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 120/886] 203.208.60.126 () {38 vars in 636 bytes} [Sat Aug 25 03:44:33 2018] GET /projects/pytorch/scripts => generated 890011 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19582|app: 0|req: 139/887] 203.208.60.35 () {38 vars in 711 bytes} [Sat Aug 25 03:44:50 2018] GET /projects/tensorflow/tensorflow/tf_framework_version_script.lds => generated 2729036 bytes in 203 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 140/888] 203.208.60.11 () {38 vars in 831 bytes} [Sat Aug 25 03:46:19 2018] GET /projects/tensorflow/tensorflow/core/ops/encode_proto_ops.cc => generated 2729036 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 1) +[pid: 19584|app: 0|req: 195/889] 203.208.60.62 () {38 vars in 727 bytes} [Sat Aug 25 03:47:16 2018] GET /projects/tensorflow/tensorflow/core/ops/candidate_sampling_ops_test.cc => generated 2729036 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 196/890] 203.208.60.109 () {38 vars in 740 bytes} [Sat Aug 25 03:48:01 2018] GET /projects/scikit-learn/examples/linear_model/plot_polynomial_interpolation.py => generated 240518 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +Internal Server Error: /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/java/com +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/contrib/lite/java/demo/app/src/main/java/com' +[pid: 19580|app: 0|req: 121/891] 203.208.60.88 () {38 vars in 863 bytes} [Sat Aug 25 03:50:44 2018] GET /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/java/com => generated 84988 bytes in 440 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 150/892] 203.208.60.20 () {38 vars in 741 bytes} [Sat Aug 25 03:51:42 2018] GET /projects/tensorflow/tensorflow/core/framework/dataset_stateful_op_whitelist.h => generated 2729036 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 151/893] 203.208.60.69 () {38 vars in 881 bytes} [Sat Aug 25 03:52:04 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/human_readable_profile_builder.h => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 122/894] 203.208.60.104 () {38 vars in 870 bytes} [Sat Aug 25 03:55:05 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-dimension.pbtxt => generated 2729035 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 123/895] 203.208.60.11 () {38 vars in 739 bytes} [Sat Aug 25 03:55:23 2018] GET /projects/scikit-learn/examples/linear_model/plot_multi_task_lasso_support.py => generated 240518 bytes in 42 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19578|app: 0|req: 111/896] 203.208.60.30 () {38 vars in 889 bytes} [Sat Aug 25 03:57:49 2018] GET /projects/tensorflow/tensorflow/contrib/boosted_trees/estimator_batch/custom_loss_head.py => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19577|app: 0|req: 176/897] 203.208.60.87 () {38 vars in 715 bytes} [Sat Aug 25 03:59:04 2018] GET /projects/tensorflow/tensorflow/python/framework/framework_lib.py => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 112/898] 203.208.60.98 () {38 vars in 730 bytes} [Sat Aug 25 04:01:00 2018] GET /?page=273 => generated 9722 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 124/899] 203.208.60.108 () {38 vars in 742 bytes} [Sat Aug 25 04:02:45 2018] GET /projects/scikit-learn/examples/linear_model/plot_sgd_separating_hyperplane.py => generated 240518 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 197/900] 203.208.60.115 () {38 vars in 731 bytes} [Sat Aug 25 04:03:34 2018] GET /?page=271 => generated 9722 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 198/901] 203.208.60.69 () {38 vars in 729 bytes} [Sat Aug 25 04:06:25 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/segment/segment_test.cc => generated 2729035 bytes in 226 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 141/902] 203.208.60.126 () {38 vars in 731 bytes} [Sat Aug 25 04:06:26 2018] GET /?page=243 => generated 9722 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 177/903] 203.208.60.64 () {38 vars in 729 bytes} [Sat Aug 25 04:10:06 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/local_master.cc => generated 2729036 bytes in 265 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 178/904] 203.208.60.116 () {38 vars in 731 bytes} [Sat Aug 25 04:10:54 2018] GET /?page=342 => generated 9722 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 113/905] 203.208.60.44 () {38 vars in 730 bytes} [Sat Aug 25 04:12:11 2018] GET /?page=264 => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 179/906] 203.208.60.35 () {38 vars in 757 bytes} [Sat Aug 25 04:13:46 2018] GET /projects/scikit-learn/examples/model_selection/grid_search_text_feature_extraction.py => generated 240518 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 125/907] 203.208.60.4 () {38 vars in 729 bytes} [Sat Aug 25 04:15:10 2018] GET /?page=247 => generated 9722 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 152/908] 203.208.60.105 () {38 vars in 728 bytes} [Sat Aug 25 04:17:26 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/training_ops.cc => generated 2729035 bytes in 252 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 180/909] 203.208.60.17 () {38 vars in 730 bytes} [Sat Aug 25 04:17:56 2018] GET /?page=269 => generated 9722 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 114/910] 203.208.60.82 () {38 vars in 730 bytes} [Sat Aug 25 04:20:48 2018] GET /?page=345 => generated 9722 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 153/911] 203.208.60.29 () {38 vars in 743 bytes} [Sat Aug 25 04:21:07 2018] GET /projects/scikit-learn/examples/linear_model/plot_lasso_dense_vs_sparse_data.py => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19586|app: 0|req: 154/912] 203.208.60.87 () {38 vars in 730 bytes} [Sat Aug 25 04:23:40 2018] GET /?page=245 => generated 9722 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 155/913] 203.208.60.29 () {38 vars in 737 bytes} [Sat Aug 25 04:24:48 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Variable.pbtxt => generated 2729035 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 181/914] 203.208.60.87 () {38 vars in 730 bytes} [Sat Aug 25 04:26:32 2018] GET /?page=344 => generated 9722 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 199/915] 185.42.192.114 () {32 vars in 462 bytes} [Sat Aug 25 04:27:39 2018] GET / => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 200/916] 203.208.60.94 () {38 vars in 695 bytes} [Sat Aug 25 04:28:29 2018] GET /projects/tensorflow/tensorflow/compiler/aot/codegen.cc => generated 2729035 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 126/917] 203.208.60.88 () {38 vars in 727 bytes} [Sat Aug 25 04:29:19 2018] GET /projects/scikit-learn/sklearn/datasets/tests/data/svmlight_invalid.txt => generated 240518 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 156/918] 203.208.60.94 () {38 vars in 641 bytes} [Sat Aug 25 04:29:27 2018] GET /projects/pytorch/caffe2/opt => generated 890014 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 157/919] 203.208.60.17 () {38 vars in 691 bytes} [Sat Aug 25 04:29:36 2018] GET /projects/pytorch/caffe2/operators/elementwise_ops.cc => generated 890014 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19578|app: 0|req: 115/920] 203.208.60.105 () {38 vars in 694 bytes} [Sat Aug 25 04:29:42 2018] GET /projects/scikit-learn/sklearn/gaussian_process/gpr.py => generated 240518 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 116/921] 203.208.60.121 () {38 vars in 732 bytes} [Sat Aug 25 04:29:49 2018] GET /projects/pytorch/caffe2/operators/generate_proposals_op_util_nms_test.cc => generated 890014 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 117/922] 203.208.60.14 () {38 vars in 705 bytes} [Sat Aug 25 04:29:56 2018] GET /projects/scikit-learn/sklearn/metrics/tests/test_ranking.py => generated 240518 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 201/923] 203.208.60.94 () {38 vars in 735 bytes} [Sat Aug 25 04:30:14 2018] GET /projects/pytorch/caffe2/operators/experimental/c10/cpu/batch_gather_cpu.cc => generated 890014 bytes in 135 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 202/924] 203.208.60.116 () {38 vars in 844 bytes} [Sat Aug 25 04:32:10 2018] GET /projects/tensorflow/tensorflow/contrib/lite/examples/android/app/src/main/java/org/tensorflow/demo/CameraConnectionFragment.java => generated 2729035 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 203/925] 203.208.60.108 () {38 vars in 731 bytes} [Sat Aug 25 04:32:17 2018] GET /?page=246 => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 204/926] 203.208.60.50 () {38 vars in 730 bytes} [Sat Aug 25 04:34:13 2018] GET /?page=270 => generated 9722 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 118/927] 203.208.60.26 () {38 vars in 709 bytes} [Sat Aug 25 04:35:50 2018] GET /projects/tensorflow/tensorflow/core/profiler/tfprof_log.proto => generated 2729035 bytes in 245 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 182/928] 203.208.60.121 () {38 vars in 731 bytes} [Sat Aug 25 04:36:02 2018] GET /?page=244 => generated 9722 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 205/929] 203.208.60.3 () {38 vars in 728 bytes} [Sat Aug 25 04:39:30 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/memory_types_test.cc => generated 2729035 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 119/930] 203.208.60.21 () {38 vars in 730 bytes} [Sat Aug 25 04:40:03 2018] GET /?page=343 => generated 9722 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 183/931] 203.208.60.55 () {38 vars in 730 bytes} [Sat Aug 25 04:41:04 2018] GET /?page=272 => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 206/932] 203.208.60.32 () {38 vars in 709 bytes} [Sat Aug 25 04:42:11 2018] GET /projects/pytorch/torch/csrc/jit/passes/erase_number_types.cpp => generated 890014 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 142/933] 203.208.60.13 () {38 vars in 649 bytes} [Sat Aug 25 04:42:27 2018] GET /projects/pytorch/.git/refs/tags => generated 890014 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 158/934] 203.208.60.13 () {38 vars in 669 bytes} [Sat Aug 25 04:42:45 2018] GET /projects/pytorch/caffe2/python/session.py => generated 890014 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 159/935] 203.208.60.116 () {38 vars in 690 bytes} [Sat Aug 25 04:43:05 2018] GET /projects/pytorch/torch/distributions/exponential.py => generated 890014 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 207/936] 203.208.60.29 () {38 vars in 707 bytes} [Sat Aug 25 04:43:11 2018] GET /projects/tensorflow/tensorflow/python/ops/image_grad_test.py => generated 2729035 bytes in 195 msecs (HTTP/1.1 200) 4 headers in 127 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 143/937] 203.208.60.70 () {38 vars in 695 bytes} [Sat Aug 25 04:45:17 2018] GET /projects/pytorch/caffe2/contrib/cuda-convnet2/layer.py => generated 890014 bytes in 114 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19582|app: 0|req: 144/938] 203.208.60.78 () {38 vars in 732 bytes} [Sat Aug 25 04:45:25 2018] GET /?page=1965 => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 145/939] 203.208.60.115 () {38 vars in 694 bytes} [Sat Aug 25 04:46:06 2018] GET /projects/pytorch/caffe2/core/dispatch/DispatchTable.h => generated 890014 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19578|app: 0|req: 120/940] 203.208.60.53 () {38 vars in 732 bytes} [Sat Aug 25 04:46:40 2018] GET /?page=1966 => generated 9722 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 184/941] 203.208.60.77 () {38 vars in 735 bytes} [Sat Aug 25 04:46:52 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python/head.py => generated 2729035 bytes in 200 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 127/942] 203.208.60.74 () {38 vars in 699 bytes} [Sat Aug 25 04:50:20 2018] GET /projects/pytorch/torch/lib/THD/base/TensorDescriptor.hpp => generated 890014 bytes in 149 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 185/943] 203.208.60.44 () {38 vars in 735 bytes} [Sat Aug 25 04:50:32 2018] GET /projects/tensorflow/tensorflow/compiler/xla/service/hlo_profile_printer.cc => generated 2729035 bytes in 188 msecs (HTTP/1.1 200) 4 headers in 127 bytes (9 switches on core 1) +[pid: 19577|app: 0|req: 186/944] 203.208.60.3 () {38 vars in 731 bytes} [Sat Aug 25 04:50:35 2018] GET /?page=1964 => generated 9722 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 160/945] 203.208.60.10 () {38 vars in 732 bytes} [Sat Aug 25 04:52:26 2018] GET /?page=1962 => generated 9722 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +Not Found: /robots.txt +[pid: 19577|app: 0|req: 187/946] 5.45.207.80 () {36 vars in 496 bytes} [Sat Aug 25 04:53:48 2018] GET /robots.txt => generated 3101 bytes in 26 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 188/947] 5.45.207.80 () {38 vars in 556 bytes} [Sat Aug 25 04:53:51 2018] GET /projects/scikit-learn/ => generated 240516 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 189/948] 203.208.60.105 () {38 vars in 712 bytes} [Sat Aug 25 04:54:12 2018] GET /projects/tensorflow/tensorflow/stream_executor/cuda/cuda_dnn.h => generated 2729035 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 190/949] 203.208.60.69 () {38 vars in 732 bytes} [Sat Aug 25 04:55:50 2018] GET /?page=1963 => generated 9722 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 161/950] 179.209.72.109 () {38 vars in 528 bytes} [Sat Aug 25 04:57:45 2018] GET / => generated 9722 bytes in 70 msecs (HTTP/1.0 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 162/951] 203.208.60.64 () {38 vars in 707 bytes} [Sat Aug 25 04:57:53 2018] GET /projects/tensorflow/tensorflow/core/platform/device_tracer.h => generated 2729036 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 163/952] 203.208.60.109 () {38 vars in 744 bytes} [Sat Aug 25 04:58:11 2018] GET /projects/Notes/ => generated 39375 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 146/953] 203.208.60.17 () {38 vars in 747 bytes} [Sat Aug 25 05:01:03 2018] GET /projects/pytorch/ => generated 890011 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 208/954] 203.208.60.88 () {38 vars in 737 bytes} [Sat Aug 25 05:01:34 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Iterator.pbtxt => generated 2729035 bytes in 228 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19580|app: 0|req: 128/955] 203.208.60.95 () {38 vars in 703 bytes} [Sat Aug 25 05:05:14 2018] GET /projects/tensorflow/tensorflow/core/kernels/histogram_op.h => generated 2729036 bytes in 252 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 191/956] 203.208.60.17 () {38 vars in 753 bytes} [Sat Aug 25 05:06:01 2018] GET /projects/tensorflow/ => generated 2729032 bytes in 226 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 209/957] 203.208.60.55 () {38 vars in 757 bytes} [Sat Aug 25 05:06:48 2018] GET /projects/scikit-learn/ => generated 240516 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 210/958] 203.208.60.69 () {38 vars in 695 bytes} [Sat Aug 25 05:08:56 2018] GET /projects/pytorch/torch/csrc/jit/passes/lower_grad_of.h => generated 890014 bytes in 113 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 147/959] 203.208.60.17 () {38 vars in 763 bytes} [Sat Aug 25 05:10:16 2018] GET /projects/pytorch/binaries => generated 890014 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 211/960] 203.208.60.31 () {38 vars in 773 bytes} [Sat Aug 25 05:12:34 2018] GET /projects/tensorflow/tensorflow => generated 2729034 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19580|app: 0|req: 129/961] 203.208.60.104 () {38 vars in 706 bytes} [Sat Aug 25 05:12:55 2018] GET /projects/tensorflow/tensorflow/core/kernels/logistic-loss.h => generated 2729036 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 130/962] 203.208.60.15 () {38 vars in 740 bytes} [Sat Aug 25 05:15:26 2018] GET /files/?page=84 => generated 23262 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Not Found: /echo.php +[pid: 19586|app: 0|req: 164/963] 139.162.88.63 () {32 vars in 416 bytes} [Sat Aug 25 05:15:51 2018] GET /echo.php?info=1234567890 => generated 3108 bytes in 18 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 121/964] 203.208.60.70 () {38 vars in 721 bytes} [Sat Aug 25 05:16:16 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/shape_util.h => generated 2729035 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 165/965] 203.208.60.108 () {38 vars in 741 bytes} [Sat Aug 25 05:18:18 2018] GET /files/?page=79 => generated 23215 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +Method Not Allowed (PROPFIND): / +[pid: 19586|app: 0|req: 166/966] 178.32.1.214 () {34 vars in 2467 bytes} [Sat Aug 25 05:18:42 2018] PROPFIND / => generated 0 bytes in 8 msecs (HTTP/1.1 405) 4 headers in 150 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 148/967] 203.208.60.50 () {38 vars in 740 bytes} [Sat Aug 25 05:18:47 2018] GET /files/?page=76 => generated 23293 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Not Found: /wls-wsat/CoordinatorPortType +[pid: 19577|app: 0|req: 192/968] 178.32.1.214 () {36 vars in 538 bytes} [Sat Aug 25 05:19:04 2018] POST /wls-wsat/CoordinatorPortType => generated 3153 bytes in 16 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +Not Found: /index.php +[pid: 19577|app: 0|req: 193/969] 178.32.1.214 () {34 vars in 411 bytes} [Sat Aug 25 05:19:05 2018] GET /index.php => generated 3092 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin/index.php +[pid: 19578|app: 0|req: 122/970] 178.32.1.214 () {34 vars in 433 bytes} [Sat Aug 25 05:19:05 2018] GET /phpmyadmin/index.php => generated 3125 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpMyAdmin/index.php +[pid: 19577|app: 0|req: 194/971] 178.32.1.214 () {34 vars in 433 bytes} [Sat Aug 25 05:19:06 2018] GET /phpMyAdmin/index.php => generated 3125 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pmd/index.php +[pid: 19584|app: 0|req: 212/972] 178.32.1.214 () {34 vars in 419 bytes} [Sat Aug 25 05:19:06 2018] GET /pmd/index.php => generated 3104 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pma/index.php +[pid: 19582|app: 0|req: 149/973] 178.32.1.214 () {34 vars in 419 bytes} [Sat Aug 25 05:19:07 2018] GET /pma/index.php => generated 3104 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /PMA/index.php +[pid: 19580|app: 0|req: 131/974] 178.32.1.214 () {34 vars in 419 bytes} [Sat Aug 25 05:19:07 2018] GET /PMA/index.php => generated 3104 bytes in 16 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /PMA2/index.php +[pid: 19580|app: 0|req: 132/975] 178.32.1.214 () {34 vars in 421 bytes} [Sat Aug 25 05:19:08 2018] GET /PMA2/index.php => generated 3107 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pmamy/index.php +[pid: 19586|app: 0|req: 167/976] 178.32.1.214 () {34 vars in 423 bytes} [Sat Aug 25 05:19:08 2018] GET /pmamy/index.php => generated 3110 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pmamy2/index.php +[pid: 19580|app: 0|req: 133/977] 178.32.1.214 () {34 vars in 425 bytes} [Sat Aug 25 05:19:09 2018] GET /pmamy2/index.php => generated 3113 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /mysql/index.php +[pid: 19578|app: 0|req: 123/978] 178.32.1.214 () {34 vars in 423 bytes} [Sat Aug 25 05:19:09 2018] GET /mysql/index.php => generated 3110 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/index.php +[pid: 19584|app: 0|req: 213/979] 178.32.1.214 () {34 vars in 423 bytes} [Sat Aug 25 05:19:10 2018] GET /admin/index.php => generated 5582 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /db/index.php +[pid: 19578|app: 0|req: 124/980] 178.32.1.214 () {34 vars in 417 bytes} [Sat Aug 25 05:19:10 2018] GET /db/index.php => generated 3101 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /dbadmin/index.php +[pid: 19580|app: 0|req: 134/981] 178.32.1.214 () {34 vars in 427 bytes} [Sat Aug 25 05:19:11 2018] GET /dbadmin/index.php => generated 3116 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /web/phpMyAdmin/index.php +[pid: 19577|app: 0|req: 195/982] 178.32.1.214 () {34 vars in 441 bytes} [Sat Aug 25 05:19:11 2018] GET /web/phpMyAdmin/index.php => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/pma/index.php +[pid: 19578|app: 0|req: 125/983] 178.32.1.214 () {34 vars in 431 bytes} [Sat Aug 25 05:19:12 2018] GET /admin/pma/index.php => generated 5594 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/PMA/index.php +[pid: 19578|app: 0|req: 126/984] 178.32.1.214 () {34 vars in 431 bytes} [Sat Aug 25 05:19:12 2018] GET /admin/PMA/index.php => generated 5594 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/mysql/index.php +[pid: 19578|app: 0|req: 127/985] 178.32.1.214 () {34 vars in 435 bytes} [Sat Aug 25 05:19:13 2018] GET /admin/mysql/index.php => generated 5600 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/mysql2/index.php +[pid: 19578|app: 0|req: 128/986] 178.32.1.214 () {34 vars in 437 bytes} [Sat Aug 25 05:19:14 2018] GET /admin/mysql2/index.php => generated 5603 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/phpmyadmin/index.php +[pid: 19584|app: 0|req: 214/987] 178.32.1.214 () {34 vars in 445 bytes} [Sat Aug 25 05:19:14 2018] GET /admin/phpmyadmin/index.php => generated 5615 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/phpMyAdmin/index.php +[pid: 19577|app: 0|req: 196/988] 178.32.1.214 () {34 vars in 445 bytes} [Sat Aug 25 05:19:15 2018] GET /admin/phpMyAdmin/index.php => generated 5615 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/phpmyadmin2/index.php +[pid: 19578|app: 0|req: 129/989] 178.32.1.214 () {34 vars in 447 bytes} [Sat Aug 25 05:19:15 2018] GET /admin/phpmyadmin2/index.php => generated 5618 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /mysqladmin/index.php +[pid: 19578|app: 0|req: 130/990] 178.32.1.214 () {34 vars in 433 bytes} [Sat Aug 25 05:19:16 2018] GET /mysqladmin/index.php => generated 3125 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /mysql-admin/index.php +[pid: 19577|app: 0|req: 197/991] 178.32.1.214 () {34 vars in 435 bytes} [Sat Aug 25 05:19:16 2018] GET /mysql-admin/index.php => generated 3128 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpadmin/index.php +[pid: 19584|app: 0|req: 215/992] 178.32.1.214 () {34 vars in 429 bytes} [Sat Aug 25 05:19:17 2018] GET /phpadmin/index.php => generated 3119 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin0/index.php +[pid: 19580|app: 0|req: 135/993] 178.32.1.214 () {34 vars in 435 bytes} [Sat Aug 25 05:19:17 2018] GET /phpmyadmin0/index.php => generated 3128 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpmyadmin1/index.php +[pid: 19580|app: 0|req: 136/994] 178.32.1.214 () {34 vars in 435 bytes} [Sat Aug 25 05:19:18 2018] GET /phpmyadmin1/index.php => generated 3128 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin2/index.php +[pid: 19586|app: 0|req: 168/995] 178.32.1.214 () {34 vars in 435 bytes} [Sat Aug 25 05:19:18 2018] GET /phpmyadmin2/index.php => generated 3128 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /myadmin/index.php +[pid: 19586|app: 0|req: 169/996] 178.32.1.214 () {34 vars in 427 bytes} [Sat Aug 25 05:19:19 2018] GET /myadmin/index.php => generated 3116 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /myadmin2/index.php +[pid: 19580|app: 0|req: 137/997] 178.32.1.214 () {34 vars in 429 bytes} [Sat Aug 25 05:19:19 2018] GET /myadmin2/index.php => generated 3119 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xampp/phpmyadmin/index.php +[pid: 19580|app: 0|req: 138/998] 178.32.1.214 () {34 vars in 445 bytes} [Sat Aug 25 05:19:20 2018] GET /xampp/phpmyadmin/index.php => generated 3143 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpMyadmin_bak/index.php +[pid: 19580|app: 0|req: 139/999] 178.32.1.214 () {34 vars in 441 bytes} [Sat Aug 25 05:19:20 2018] GET /phpMyadmin_bak/index.php => generated 3137 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /www/phpMyAdmin/index.php +[pid: 19580|app: 0|req: 140/1000] 178.32.1.214 () {34 vars in 441 bytes} [Sat Aug 25 05:19:21 2018] GET /www/phpMyAdmin/index.php => generated 3137 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /tools/phpMyAdmin/index.php +[pid: 19582|app: 0|req: 150/1001] 178.32.1.214 () {34 vars in 445 bytes} [Sat Aug 25 05:19:21 2018] GET /tools/phpMyAdmin/index.php => generated 3143 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpmyadmin-old/index.php +[pid: 19582|app: 0|req: 151/1002] 178.32.1.214 () {34 vars in 441 bytes} [Sat Aug 25 05:19:22 2018] GET /phpmyadmin-old/index.php => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpMyAdminold/index.php +[pid: 19584|app: 0|req: 216/1003] 178.32.1.214 () {34 vars in 439 bytes} [Sat Aug 25 05:19:22 2018] GET /phpMyAdminold/index.php => generated 3134 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpMyAdmin.old/index.php +[pid: 19584|app: 0|req: 217/1004] 178.32.1.214 () {34 vars in 441 bytes} [Sat Aug 25 05:19:23 2018] GET /phpMyAdmin.old/index.php => generated 3137 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pma-old/index.php +[pid: 19577|app: 0|req: 198/1005] 178.32.1.214 () {34 vars in 427 bytes} [Sat Aug 25 05:19:24 2018] GET /pma-old/index.php => generated 3116 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /claroline/phpMyAdmin/index.php +[pid: 19578|app: 0|req: 131/1006] 178.32.1.214 () {34 vars in 453 bytes} [Sat Aug 25 05:19:24 2018] GET /claroline/phpMyAdmin/index.php => generated 3155 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +Not Found: /typo3/phpmyadmin/index.php +[pid: 19578|app: 0|req: 132/1007] 178.32.1.214 () {34 vars in 445 bytes} [Sat Aug 25 05:19:25 2018] GET /typo3/phpmyadmin/index.php => generated 3143 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpma/index.php +[pid: 19582|app: 0|req: 152/1008] 178.32.1.214 () {34 vars in 423 bytes} [Sat Aug 25 05:19:25 2018] GET /phpma/index.php => generated 3110 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpmyadmin/phpmyadmin/index.php +[pid: 19577|app: 0|req: 199/1009] 178.32.1.214 () {34 vars in 455 bytes} [Sat Aug 25 05:19:26 2018] GET /phpmyadmin/phpmyadmin/index.php => generated 3158 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpMyAdmin/phpMyAdmin/index.php +[pid: 19580|app: 0|req: 141/1010] 178.32.1.214 () {34 vars in 455 bytes} [Sat Aug 25 05:19:26 2018] GET /phpMyAdmin/phpMyAdmin/index.php => generated 3158 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 200/1011] 203.208.60.94 () {38 vars in 740 bytes} [Sat Aug 25 05:19:36 2018] GET /files/?page=77 => generated 23325 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 170/1012] 203.208.60.31 () {38 vars in 707 bytes} [Sat Aug 25 05:19:57 2018] GET /projects/tensorflow/tensorflow/core/kernels/mirror_pad_op.cc => generated 2729036 bytes in 206 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 142/1013] 203.208.60.127 () {38 vars in 741 bytes} [Sat Aug 25 05:20:07 2018] GET /files/?page=78 => generated 23279 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 218/1014] 203.208.60.21 () {38 vars in 740 bytes} [Sat Aug 25 05:20:33 2018] GET /files/?page=74 => generated 23075 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 133/1015] 203.208.60.53 () {38 vars in 740 bytes} [Sat Aug 25 05:21:10 2018] GET /files/?page=82 => generated 23148 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 171/1016] 203.208.60.31 () {38 vars in 740 bytes} [Sat Aug 25 05:21:12 2018] GET /files/?page=71 => generated 23207 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 134/1017] 203.208.60.12 () {38 vars in 740 bytes} [Sat Aug 25 05:21:28 2018] GET /files/?page=73 => generated 23115 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 153/1018] 203.208.60.62 () {38 vars in 740 bytes} [Sat Aug 25 05:21:53 2018] GET /files/?page=72 => generated 22992 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 201/1019] 203.208.60.53 () {38 vars in 740 bytes} [Sat Aug 25 05:21:55 2018] GET /files/?page=69 => generated 23316 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 202/1020] 203.208.60.44 () {38 vars in 740 bytes} [Sat Aug 25 05:21:56 2018] GET /files/?page=70 => generated 23332 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 135/1021] 203.208.60.127 () {38 vars in 741 bytes} [Sat Aug 25 05:22:00 2018] GET /files/?page=67 => generated 23388 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 143/1022] 203.208.60.28 () {38 vars in 740 bytes} [Sat Aug 25 05:22:04 2018] GET /files/?page=66 => generated 23211 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 144/1023] 203.208.60.10 () {38 vars in 827 bytes} [Sat Aug 25 05:22:07 2018] GET /projects/tensorflow/tensorflow/core/kernels/requantize.cc => generated 2729036 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 219/1024] 203.208.60.109 () {38 vars in 830 bytes} [Sat Aug 25 05:22:11 2018] GET /projects/tensorflow/tensorflow/core/framework/collective.h => generated 2729036 bytes in 163 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 172/1025] 203.208.60.116 () {38 vars in 846 bytes} [Sat Aug 25 05:22:15 2018] GET /projects/pytorch/caffe2/operators/cosine_embedding_criterion_op.cc => generated 890014 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 173/1026] 203.208.60.74 () {38 vars in 740 bytes} [Sat Aug 25 05:22:17 2018] GET /files/?page=65 => generated 23068 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 220/1027] 203.208.60.60 () {38 vars in 740 bytes} [Sat Aug 25 05:22:19 2018] GET /files/?page=64 => generated 23011 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 174/1028] 203.208.60.13 () {38 vars in 740 bytes} [Sat Aug 25 05:22:22 2018] GET /files/?page=62 => generated 23461 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 221/1029] 203.208.60.121 () {38 vars in 741 bytes} [Sat Aug 25 05:22:24 2018] GET /files/?page=63 => generated 23148 bytes in 58 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 222/1030] 203.208.60.92 () {38 vars in 895 bytes} [Sat Aug 25 05:22:27 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/device_resolver_distributed_test.cc => generated 2729036 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 223/1031] 203.208.60.105 () {38 vars in 844 bytes} [Sat Aug 25 05:22:32 2018] GET /projects/tensorflow/tensorflow/core/grappler/costs/robust_stats.h => generated 2729036 bytes in 165 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 203/1032] 203.208.60.64 () {38 vars in 861 bytes} [Sat Aug 25 05:22:34 2018] GET /projects/tensorflow/tensorflow/core/platform/default/build_config_root.bzl => generated 2729036 bytes in 158 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19577|app: 0|req: 204/1033] 203.208.60.108 () {38 vars in 786 bytes} [Sat Aug 25 05:22:38 2018] GET /projects/tensorflow/tensorflow/go/op => generated 2729036 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 205/1034] 203.208.60.62 () {38 vars in 740 bytes} [Sat Aug 25 05:22:40 2018] GET /files/?page=57 => generated 23107 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 206/1035] 203.208.60.42 () {38 vars in 740 bytes} [Sat Aug 25 05:22:47 2018] GET /files/?page=60 => generated 23347 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 207/1036] 203.208.60.42 () {38 vars in 740 bytes} [Sat Aug 25 05:22:47 2018] GET /files/?page=61 => generated 23278 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 224/1037] 203.208.60.20 () {38 vars in 740 bytes} [Sat Aug 25 05:22:48 2018] GET /files/?page=59 => generated 23251 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 225/1038] 203.208.60.8 () {38 vars in 880 bytes} [Sat Aug 25 05:23:13 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/collective_param_resolver_local.h => generated 2729035 bytes in 204 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 154/1039] 203.208.60.64 () {38 vars in 614 bytes} [Sat Aug 25 05:23:32 2018] GET /files/?page=63 => generated 23148 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 208/1040] 203.208.60.121 () {38 vars in 708 bytes} [Sat Aug 25 05:23:38 2018] GET /projects/tensorflow/tensorflow/core/framework/tensor_test.cc => generated 2729036 bytes in 200 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 0) +[pid: 19584|app: 0|req: 226/1041] 203.208.60.126 () {38 vars in 802 bytes} [Sat Aug 25 05:23:39 2018] GET /projects/tensorflow/tensorflow/core/lib/psnr => generated 2729035 bytes in 159 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 227/1042] 203.208.60.82 () {38 vars in 614 bytes} [Sat Aug 25 05:23:44 2018] GET /files/?page=58 => generated 23194 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 145/1043] 203.208.60.55 () {38 vars in 863 bytes} [Sat Aug 25 05:23:55 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Snapshot.pbtxt => generated 2729035 bytes in 199 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 1) +[pid: 19578|app: 0|req: 136/1044] 203.208.60.76 () {38 vars in 614 bytes} [Sat Aug 25 05:23:59 2018] GET /files/?page=65 => generated 23068 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 137/1045] 203.208.60.15 () {38 vars in 740 bytes} [Sat Aug 25 05:24:09 2018] GET /files/?page=54 => generated 23361 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 175/1046] 203.208.60.126 () {38 vars in 615 bytes} [Sat Aug 25 05:24:16 2018] GET /files/?page=57 => generated 23107 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 155/1047] 203.208.60.70 () {38 vars in 740 bytes} [Sat Aug 25 05:24:22 2018] GET /files/?page=55 => generated 23094 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 209/1048] 203.208.60.19 () {38 vars in 614 bytes} [Sat Aug 25 05:24:31 2018] GET /files/?page=64 => generated 23011 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 176/1049] 203.208.60.2 () {38 vars in 613 bytes} [Sat Aug 25 05:24:41 2018] GET /files/?page=69 => generated 23316 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 138/1050] 203.208.60.26 () {38 vars in 740 bytes} [Sat Aug 25 05:24:43 2018] GET /files/?page=53 => generated 23308 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 146/1051] 203.208.60.121 () {38 vars in 615 bytes} [Sat Aug 25 05:24:53 2018] GET /files/?page=70 => generated 23332 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 210/1052] 203.208.60.116 () {38 vars in 615 bytes} [Sat Aug 25 05:25:04 2018] GET /files/?page=60 => generated 23347 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 147/1053] 203.208.60.64 () {38 vars in 614 bytes} [Sat Aug 25 05:25:16 2018] GET /files/?page=61 => generated 23278 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 228/1054] 203.208.60.17 () {38 vars in 740 bytes} [Sat Aug 25 05:25:38 2018] GET /files/?page=68 => generated 23350 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 229/1055] 203.208.60.3 () {38 vars in 739 bytes} [Sat Aug 25 05:25:54 2018] GET /files/?page=85 => generated 23379 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 156/1056] 203.208.60.70 () {38 vars in 827 bytes} [Sat Aug 25 05:26:09 2018] GET /projects/tensorflow/tensorflow/core/ops/collective_ops.cc => generated 2729036 bytes in 216 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 148/1057] 203.208.60.26 () {38 vars in 740 bytes} [Sat Aug 25 05:26:21 2018] GET /files/?page=52 => generated 23410 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 230/1058] 203.208.60.109 () {38 vars in 741 bytes} [Sat Aug 25 05:26:55 2018] GET /files/?page=80 => generated 23187 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 211/1059] 203.208.60.12 () {38 vars in 721 bytes} [Sat Aug 25 05:27:18 2018] GET /projects/tensorflow/tensorflow/compiler/aot/benchmark_main.template => generated 2729035 bytes in 207 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 139/1060] 203.208.60.21 () {38 vars in 740 bytes} [Sat Aug 25 05:30:41 2018] GET /files/?page=83 => generated 23328 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 140/1061] 203.208.60.69 () {38 vars in 735 bytes} [Sat Aug 25 05:30:58 2018] GET /projects/scikit-learn/doc/tutorial/machine_learning_map/ML_MAPS_README.txt => generated 240519 bytes in 50 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 231/1062] 203.208.60.77 () {38 vars in 742 bytes} [Sat Aug 25 05:32:40 2018] GET /files/?page=223 => generated 23365 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 232/1063] 203.208.60.15 () {38 vars in 913 bytes} [Sat Aug 25 05:32:42 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-global-avg-pool1-d.pbtxt => generated 2729035 bytes in 204 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 233/1064] 203.208.60.32 () {38 vars in 742 bytes} [Sat Aug 25 05:32:45 2018] GET /files/?page=225 => generated 23273 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 234/1065] 203.208.60.68 () {38 vars in 699 bytes} [Sat Aug 25 05:34:39 2018] GET /projects/tensorflow/tensorflow/contrib/metrics/README.md => generated 2729035 bytes in 240 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 235/1066] 203.208.60.11 () {38 vars in 742 bytes} [Sat Aug 25 05:35:14 2018] GET /files/?page=228 => generated 23064 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 236/1067] 203.208.60.49 () {38 vars in 742 bytes} [Sat Aug 25 05:35:36 2018] GET /files/?page=102 => generated 23287 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 237/1068] 203.208.60.8 () {38 vars in 728 bytes} [Sat Aug 25 05:38:19 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Imag.pbtxt => generated 2729035 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 177/1069] 203.208.60.32 () {38 vars in 742 bytes} [Sat Aug 25 05:38:25 2018] GET /files/?page=222 => generated 23111 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 178/1070] 203.208.60.76 () {38 vars in 871 bytes} [Sat Aug 25 05:39:32 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.gfile.-open.pbtxt => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 141/1071] 203.208.60.126 () {38 vars in 796 bytes} [Sat Aug 25 05:40:45 2018] GET /projects/scikit-learn/examples/README.txt => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 142/1072] 203.208.60.32 () {38 vars in 742 bytes} [Sat Aug 25 05:41:17 2018] GET /files/?page=221 => generated 23131 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 143/1073] 203.208.60.20 () {38 vars in 759 bytes} [Sat Aug 25 05:42:00 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/custom_plugin_examples/inc_op_kernel.h => generated 2729035 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19582|app: 0|req: 157/1074] 203.208.60.2 () {38 vars in 603 bytes} [Sat Aug 25 05:42:40 2018] GET /?page=344 => generated 9722 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 238/1075] 203.208.60.55 () {38 vars in 632 bytes} [Sat Aug 25 05:44:19 2018] GET /files/?sort=hot&page=67 => generated 23609 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 179/1076] 203.208.60.37 () {38 vars in 632 bytes} [Sat Aug 25 05:44:32 2018] GET /files/?sort=hot&page=68 => generated 23571 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 212/1077] 203.208.60.121 () {38 vars in 633 bytes} [Sat Aug 25 05:44:46 2018] GET /files/?sort=hot&page=66 => generated 23432 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 213/1078] 203.208.60.62 () {38 vars in 758 bytes} [Sat Aug 25 05:45:02 2018] GET /files/?sort=hot&page=73 => generated 23336 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 158/1079] 203.208.60.68 () {38 vars in 742 bytes} [Sat Aug 25 05:45:06 2018] GET /files/?page=103 => generated 23418 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 159/1080] 203.208.60.62 () {38 vars in 632 bytes} [Sat Aug 25 05:45:12 2018] GET /files/?sort=hot&page=70 => generated 23553 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 239/1081] 203.208.60.69 () {38 vars in 743 bytes} [Sat Aug 25 05:45:41 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_DecodeGif.pbtxt => generated 2729036 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 214/1082] 203.208.60.64 () {38 vars in 632 bytes} [Sat Aug 25 05:45:47 2018] GET /files/?sort=hot&page=69 => generated 23537 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 215/1083] 203.208.60.127 () {38 vars in 759 bytes} [Sat Aug 25 05:46:31 2018] GET /files/?sort=hot&page=72 => generated 23213 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 216/1084] 203.208.60.98 () {38 vars in 742 bytes} [Sat Aug 25 05:47:02 2018] GET /files/?page=100 => generated 23335 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 180/1085] 203.208.60.1 () {38 vars in 742 bytes} [Sat Aug 25 05:49:21 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_BesselI1e.pbtxt => generated 2729036 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19586|app: 0|req: 181/1086] 203.208.60.30 () {38 vars in 701 bytes} [Sat Aug 25 05:49:46 2018] GET /projects/tensorflow/tensorflow/python/framework/dtypes.py => generated 2729035 bytes in 231 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 240/1087] 203.208.60.88 () {38 vars in 742 bytes} [Sat Aug 25 05:51:01 2018] GET /files/?page=220 => generated 23128 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 241/1088] 203.208.60.68 () {38 vars in 811 bytes} [Sat Aug 25 05:51:21 2018] GET /projects/pytorch/.git/hooks/applypatch-msg.sample => generated 890014 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 160/1089] 203.208.60.11 () {38 vars in 801 bytes} [Sat Aug 25 05:52:16 2018] GET /projects/pytorch/binaries/speed_benchmark.cc => generated 890014 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 161/1090] 203.208.60.30 () {38 vars in 744 bytes} [Sat Aug 25 05:52:47 2018] GET /files/?page=2078 => generated 23234 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 162/1091] 203.208.60.30 () {38 vars in 761 bytes} [Sat Aug 25 05:53:01 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-aggregation-method.pbtxt => generated 2729035 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19586|app: 0|req: 182/1092] 203.208.60.109 () {38 vars in 745 bytes} [Sat Aug 25 05:55:08 2018] GET /files/?page=2074 => generated 23250 bytes in 137 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 183/1093] 203.208.60.68 () {38 vars in 744 bytes} [Sat Aug 25 05:55:53 2018] GET /files/?page=2083 => generated 22660 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 144/1094] 203.208.60.108 () {38 vars in 748 bytes} [Sat Aug 25 05:56:56 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ScalarSummary.pbtxt => generated 2729036 bytes in 252 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 242/1095] 203.208.60.28 () {38 vars in 744 bytes} [Sat Aug 25 05:58:32 2018] GET /files/?page=2077 => generated 23251 bytes in 120 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 145/1096] 203.208.60.12 () {38 vars in 733 bytes} [Sat Aug 25 06:00:22 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.image.pbtxt => generated 2729035 bytes in 257 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 146/1097] 203.208.60.126 () {38 vars in 605 bytes} [Sat Aug 25 06:01:17 2018] GET /?page=273 => generated 9722 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 243/1098] 203.208.60.103 () {38 vars in 745 bytes} [Sat Aug 25 06:01:24 2018] GET /files/?page=2080 => generated 22822 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 184/1099] 203.208.60.3 () {38 vars in 736 bytes} [Sat Aug 25 06:04:03 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_MapDefun.pbtxt => generated 2729036 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19584|app: 0|req: 244/1100] 203.208.60.123 () {38 vars in 745 bytes} [Sat Aug 25 06:05:33 2018] GET /files/?page=2079 => generated 23050 bytes in 128 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 147/1101] 203.208.60.62 () {38 vars in 744 bytes} [Sat Aug 25 06:07:09 2018] GET /files/?page=2082 => generated 22736 bytes in 141 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 149/1102] 203.208.60.31 () {38 vars in 733 bytes} [Sat Aug 25 06:07:43 2018] GET /projects/tensorflow/tensorflow/core/framework/unique_tensor_references.cc => generated 2729036 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19577|app: 0|req: 217/1103] 203.208.60.69 () {38 vars in 661 bytes} [Sat Aug 25 06:08:36 2018] GET /projects/pytorch/scripts/build_ios.sh => generated 890012 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 218/1104] 203.208.60.98 () {38 vars in 669 bytes} [Sat Aug 25 06:08:48 2018] GET /projects/tensorflow/tensorflow/go/test.sh => generated 2729036 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 163/1105] 203.208.60.70 () {38 vars in 701 bytes} [Sat Aug 25 06:09:01 2018] GET /projects/tensorflow/tensorflow/core/ops/state_ops_test.cc => generated 2729036 bytes in 209 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19578|app: 0|req: 148/1106] 203.208.60.70 () {38 vars in 713 bytes} [Sat Aug 25 06:09:25 2018] GET /projects/tensorflow/tensorflow/core/kernels/cwise_op_minimum.cc => generated 2729036 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19582|app: 0|req: 164/1107] 165.16.37.180 () {32 vars in 461 bytes} [Sat Aug 25 06:10:00 2018] GET / => generated 9722 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 245/1108] 203.208.60.28 () {38 vars in 744 bytes} [Sat Aug 25 06:10:29 2018] GET /files/?page=2076 => generated 23095 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 150/1109] 203.208.60.126 () {38 vars in 734 bytes} [Sat Aug 25 06:10:42 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/master_session.cc => generated 2729036 bytes in 222 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 149/1110] 203.208.60.37 () {38 vars in 729 bytes} [Sat Aug 25 06:11:24 2018] GET /projects/tensorflow/tensorflow/contrib/metrics/python/ops/metric_ops.py => generated 2729035 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19577|app: 0|req: 219/1111] 178.154.200.53 () {38 vars in 549 bytes} [Sat Aug 25 06:12:13 2018] GET /projects/pytorch/ => generated 890011 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 185/1112] 203.208.60.49 () {38 vars in 744 bytes} [Sat Aug 25 06:12:54 2018] GET /files/?page=2081 => generated 22934 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 220/1113] 203.208.60.116 () {38 vars in 708 bytes} [Sat Aug 25 06:14:23 2018] GET /projects/tensorflow/tensorflow/core/platform/default/mutex.h => generated 2729036 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 221/1114] 203.208.60.55 () {38 vars in 733 bytes} [Sat Aug 25 06:15:04 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/gumbel.py => generated 2729035 bytes in 209 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 150/1115] 203.208.60.108 () {38 vars in 745 bytes} [Sat Aug 25 06:15:46 2018] GET /files/?page=2075 => generated 23022 bytes in 126 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 165/1116] 203.208.60.97 () {38 vars in 687 bytes} [Sat Aug 25 06:18:03 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests => generated 2729035 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 186/1117] 203.208.60.30 () {38 vars in 746 bytes} [Sat Aug 25 06:18:38 2018] GET /?sort=hot&page=37 => generated 9722 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 187/1118] 203.208.60.13 () {38 vars in 713 bytes} [Sat Aug 25 06:18:45 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/train_test.py => generated 2729035 bytes in 189 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19577|app: 0|req: 222/1119] 203.208.60.123 () {38 vars in 747 bytes} [Sat Aug 25 06:21:30 2018] GET /?sort=hot&page=34 => generated 9722 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 188/1120] 62.197.197.138 () {32 vars in 463 bytes} [Sat Aug 25 06:21:46 2018] GET / => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 151/1121] 203.208.60.10 () {38 vars in 747 bytes} [Sat Aug 25 06:22:26 2018] GET /projects/scikit-learn/examples/covariance/plot_robust_vs_empirical_covariance.py => generated 240518 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 189/1122] 203.208.60.103 () {38 vars in 747 bytes} [Sat Aug 25 06:25:19 2018] GET /?sort=hot&page=35 => generated 9722 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 190/1123] 5.45.207.80 () {38 vars in 542 bytes} [Sat Aug 25 06:25:28 2018] GET /projects/Notes/ => generated 39375 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 166/1124] 203.208.60.8 () {38 vars in 776 bytes} [Sat Aug 25 06:26:07 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.errors.-unimplemented-error.pbtxt => generated 2729035 bytes in 271 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19577|app: 0|req: 223/1125] 203.208.60.32 () {38 vars in 752 bytes} [Sat Aug 25 06:27:15 2018] GET /?sort=latest&page=59 => generated 9705 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 191/1126] 203.208.60.69 () {38 vars in 717 bytes} [Sat Aug 25 06:29:47 2018] GET /projects/tensorflow/tensorflow/core/ops/remote_fused_graph_ops.cc => generated 2729036 bytes in 244 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 152/1127] 203.208.60.44 () {38 vars in 752 bytes} [Sat Aug 25 06:30:36 2018] GET /?sort=latest&page=56 => generated 9705 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 224/1128] 203.208.60.3 () {38 vars in 751 bytes} [Sat Aug 25 06:33:00 2018] GET /?sort=latest&page=57 => generated 9705 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 225/1129] 203.208.60.77 () {38 vars in 777 bytes} [Sat Aug 25 06:33:29 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.constraints.unit_norm.pbtxt => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19586|app: 0|req: 192/1130] 203.208.60.98 () {38 vars in 752 bytes} [Sat Aug 25 06:36:01 2018] GET /?sort=latest&page=55 => generated 9705 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 246/1131] 203.208.60.32 () {38 vars in 733 bytes} [Sat Aug 25 06:37:09 2018] GET /projects/tensorflow/tensorflow/core/common_runtime/step_stats_collector.h => generated 2729035 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19577|app: 0|req: 226/1132] 203.208.60.98 () {38 vars in 618 bytes} [Sat Aug 25 06:39:49 2018] GET /files/?page=2078 => generated 23234 bytes in 140 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 167/1133] 203.208.60.30 () {38 vars in 618 bytes} [Sat Aug 25 06:39:58 2018] GET /files/?page=2083 => generated 22660 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 168/1134] 203.208.60.32 () {38 vars in 618 bytes} [Sat Aug 25 06:40:07 2018] GET /files/?page=2077 => generated 23251 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 227/1135] 203.208.60.62 () {38 vars in 618 bytes} [Sat Aug 25 06:40:16 2018] GET /files/?page=2080 => generated 22822 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 247/1136] 203.208.60.80 () {38 vars in 618 bytes} [Sat Aug 25 06:40:25 2018] GET /files/?page=2079 => generated 23050 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 151/1137] 203.208.60.74 () {38 vars in 752 bytes} [Sat Aug 25 06:40:27 2018] GET /?sort=latest&page=58 => generated 9705 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 248/1138] 203.208.60.64 () {38 vars in 618 bytes} [Sat Aug 25 06:40:34 2018] GET /files/?page=2082 => generated 22736 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 152/1139] 203.208.60.126 () {38 vars in 704 bytes} [Sat Aug 25 06:40:50 2018] GET /projects/tensorflow/tensorflow/contrib/factorization/BUILD => generated 2729035 bytes in 271 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 169/1140] 203.208.60.74 () {38 vars in 756 bytes} [Sat Aug 25 06:41:37 2018] GET /?sort=latest&page=2060 => generated 9705 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 228/1141] 203.208.60.31 () {38 vars in 717 bytes} [Sat Aug 25 06:44:30 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tflite/import.cc => generated 2729035 bytes in 282 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 0) +[pid: 19580|app: 0|req: 153/1142] 203.208.60.11 () {38 vars in 618 bytes} [Sat Aug 25 06:44:34 2018] GET /files/?page=2075 => generated 23022 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 193/1143] 203.208.60.19 () {38 vars in 756 bytes} [Sat Aug 25 06:47:23 2018] GET /?sort=latest&page=2062 => generated 9705 bytes in 44 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 194/1144] 203.208.60.53 () {38 vars in 741 bytes} [Sat Aug 25 06:47:56 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.debugging.pbtxt => generated 2729035 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19577|app: 0|req: 229/1145] 203.208.60.64 () {38 vars in 743 bytes} [Sat Aug 25 06:48:11 2018] GET /projects/tensorflow/tensorflow/core/kernels/data/sql/sqlite_query_connection.h => generated 2729036 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 230/1146] 203.208.60.31 () {38 vars in 756 bytes} [Sat Aug 25 06:49:56 2018] GET /?sort=latest&page=2063 => generated 9705 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 153/1147] 203.208.60.44 () {38 vars in 756 bytes} [Sat Aug 25 06:51:02 2018] GET /?sort=latest&page=2061 => generated 9705 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 154/1148] 203.208.60.80 () {38 vars in 604 bytes} [Sat Aug 25 06:51:09 2018] GET /?page=263 => generated 9722 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Internal Server Error: /projects/45/files/3204/functions/19335/caller_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19578|app: 0|req: 155/1149] 203.208.60.87 () {38 vars in 697 bytes} [Sat Aug 25 06:51:51 2018] GET /projects/45/files/3204/functions/19335/caller_function/ => generated 77841 bytes in 89 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Not Found: /cache/global/img/gs.gif +[pid: 19578|app: 0|req: 156/1150] 80.82.78.50 () {32 vars in 428 bytes} [Sat Aug 25 06:53:16 2018] GET /cache/global/img/gs.gif => generated 3132 bytes in 27 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 195/1151] 203.208.60.97 () {38 vars in 765 bytes} [Sat Aug 25 06:55:00 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-softmax.pbtxt => generated 2729035 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 196/1152] 203.208.60.32 () {38 vars in 756 bytes} [Sat Aug 25 06:55:05 2018] GET /?sort=latest&page=2059 => generated 9705 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/tensorflow/tensorflow/examples/get_started/regression +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/examples/get_started/regression' +[pid: 19584|app: 0|req: 249/1153] 203.208.60.32 () {38 vars in 711 bytes} [Sat Aug 25 06:55:32 2018] GET /projects/tensorflow/tensorflow/examples/get_started/regression => generated 84507 bytes in 430 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 250/1154] 203.208.60.82 () {38 vars in 767 bytes} [Sat Aug 25 06:56:02 2018] GET /projects/pytorch/caffe2/opt => generated 890014 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19580|app: 0|req: 154/1155] 203.208.60.32 () {38 vars in 713 bytes} [Sat Aug 25 06:59:13 2018] GET /projects/pytorch/torch/lib/THD/base/data_channels/GlooCache.hpp => generated 890014 bytes in 138 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19577|app: 0|req: 231/1156] 203.208.60.64 () {38 vars in 606 bytes} [Sat Aug 25 07:00:45 2018] GET /?page=1962 => generated 9722 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 155/1157] 203.208.60.97 () {38 vars in 769 bytes} [Sat Aug 25 07:00:49 2018] GET /projects/pytorch/docs/caffe2 => generated 890014 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19580|app: 0|req: 156/1158] 203.208.60.32 () {38 vars in 769 bytes} [Sat Aug 25 07:01:46 2018] GET /projects/pytorch/.git/config => generated 890014 bytes in 140 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 157/1159] 203.208.60.126 () {38 vars in 756 bytes} [Sat Aug 25 07:02:53 2018] GET /projects/tensorflow/third_party/gpus/crosstool/windows/msvc_wrapper_for_nvcc.bat.tpl => generated 2729033 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19584|app: 0|req: 251/1160] 203.208.60.64 () {38 vars in 771 bytes} [Sat Aug 25 07:05:18 2018] GET /projects/pytorch/tools/docker => generated 890014 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 252/1161] 203.208.60.77 () {38 vars in 753 bytes} [Sat Aug 25 07:06:34 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/gumbel.py => generated 2729035 bytes in 258 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 232/1162] 203.208.60.69 () {38 vars in 771 bytes} [Sat Aug 25 07:07:32 2018] GET /projects/pytorch/torch/legacy => generated 890014 bytes in 135 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 233/1163] 203.208.60.28 () {38 vars in 703 bytes} [Sat Aug 25 07:10:15 2018] GET /projects/tensorflow/tensorflow/contrib/metrics/__init__.py => generated 2729035 bytes in 244 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 234/1164] 203.208.60.108 () {38 vars in 780 bytes} [Sat Aug 25 07:10:34 2018] GET /projects/pytorch/.jenkins/pytorch => generated 890014 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 197/1165] 203.208.60.32 () {38 vars in 781 bytes} [Sat Aug 25 07:13:17 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 261 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 157/1166] 203.208.60.32 () {38 vars in 715 bytes} [Sat Aug 25 07:13:56 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/convert/utils.cc => generated 2729035 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19582|app: 0|req: 170/1167] 203.208.60.49 () {38 vars in 604 bytes} [Sat Aug 25 07:14:42 2018] GET /?page=269 => generated 9722 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 171/1168] 203.208.60.19 () {38 vars in 789 bytes} [Sat Aug 25 07:16:09 2018] GET /projects/scikit-learn/examples/.flake8 => generated 240519 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 198/1169] 203.208.60.80 () {38 vars in 719 bytes} [Sat Aug 25 07:17:36 2018] GET /projects/tensorflow/tensorflow/core/framework/kernel_def_builder.h => generated 2729036 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 253/1170] 203.208.60.8 () {38 vars in 788 bytes} [Sat Aug 25 07:20:31 2018] GET /projects/scikit-learn/examples/mixture => generated 240518 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 254/1171] 203.208.60.64 () {38 vars in 673 bytes} [Sat Aug 25 07:21:17 2018] GET /projects/pytorch/aten/src/ATen/CUDAStream.h => generated 890013 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 199/1172] 203.208.60.13 () {38 vars in 789 bytes} [Sat Aug 25 07:21:54 2018] GET /projects/scikit-learn/sklearn/datasets => generated 240518 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 255/1173] 203.208.60.70 () {38 vars in 691 bytes} [Sat Aug 25 07:24:57 2018] GET /projects/pytorch/caffe2/ideep/utils/ideep_operator.h => generated 890014 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 256/1174] 203.208.60.121 () {38 vars in 792 bytes} [Sat Aug 25 07:25:50 2018] GET /projects/scikit-learn/examples/manifold => generated 240518 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 235/1175] 203.208.60.94 () {38 vars in 795 bytes} [Sat Aug 25 07:27:39 2018] GET /projects/pytorch/scripts/build_android.sh => generated 890012 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 257/1176] 203.208.60.98 () {38 vars in 657 bytes} [Sat Aug 25 07:28:38 2018] GET /projects/Notes/.git/logs/refs/heads => generated 39377 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 236/1177] 203.208.60.105 () {38 vars in 615 bytes} [Sat Aug 25 07:29:43 2018] GET /files/?page=79 => generated 23215 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 158/1178] 203.208.60.94 () {38 vars in 614 bytes} [Sat Aug 25 07:30:00 2018] GET /files/?page=78 => generated 23279 bytes in 128 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 237/1179] 203.208.60.82 () {38 vars in 614 bytes} [Sat Aug 25 07:30:03 2018] GET /files/?page=76 => generated 23293 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 238/1180] 203.208.60.26 () {38 vars in 614 bytes} [Sat Aug 25 07:30:06 2018] GET /files/?page=77 => generated 23325 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 239/1181] 203.208.60.44 () {38 vars in 614 bytes} [Sat Aug 25 07:30:10 2018] GET /files/?page=80 => generated 23187 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 240/1182] 203.208.60.98 () {38 vars in 725 bytes} [Sat Aug 25 07:30:13 2018] GET /projects/tensorflow/tensorflow/core/platform/default/device_tracer.cc => generated 2729036 bytes in 226 msecs (HTTP/1.1 200) 4 headers in 127 bytes (8 switches on core 0) +[pid: 19582|app: 0|req: 172/1183] 203.208.60.19 () {38 vars in 795 bytes} [Sat Aug 25 07:30:34 2018] GET /projects/pytorch/scripts/fbcode-dev-setup => generated 890012 bytes in 122 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +Internal Server Error: /projects/45/files/3204/functions/19335/callee_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 258/1184] 203.208.60.105 () {38 vars in 698 bytes} [Sat Aug 25 07:32:19 2018] GET /projects/45/files/3204/functions/19335/callee_function/ => generated 77842 bytes in 85 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 241/1185] 203.208.60.98 () {38 vars in 797 bytes} [Sat Aug 25 07:33:24 2018] GET /projects/tensorflow/third_party/nasm.BUILD => generated 2729034 bytes in 272 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 259/1186] 203.208.60.8 () {38 vars in 718 bytes} [Sat Aug 25 07:35:38 2018] GET /projects/scikit-learn/sklearn/metrics/cluster/tests/test_common.py => generated 240518 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 159/1187] 203.208.60.77 () {38 vars in 661 bytes} [Sat Aug 25 07:35:41 2018] GET /projects/pytorch/caffe2/opt/passes.cc => generated 890014 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 160/1188] 203.208.60.31 () {38 vars in 717 bytes} [Sat Aug 25 07:35:59 2018] GET /projects/tensorflow/tensorflow/contrib/legacy_seq2seq/__init__.py => generated 2729035 bytes in 237 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 242/1189] 203.208.60.109 () {38 vars in 798 bytes} [Sat Aug 25 07:36:16 2018] GET /projects/scikit-learn/examples/multioutput => generated 240518 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 200/1190] 203.208.60.69 () {38 vars in 723 bytes} [Sat Aug 25 07:39:30 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/losses/__init__.py => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 158/1191] 203.208.60.108 () {38 vars in 696 bytes} [Sat Aug 25 07:39:40 2018] GET /projects/tensorflow/tensorflow/core/framework/types.cc => generated 2729036 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 260/1192] 203.208.60.127 () {38 vars in 800 bytes} [Sat Aug 25 07:39:55 2018] GET /projects/scikit-learn/examples/linear_model => generated 240518 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 261/1193] 203.208.60.116 () {38 vars in 802 bytes} [Sat Aug 25 07:42:01 2018] GET /projects/pytorch/binaries/benchmark_helper.h => generated 890014 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 262/1194] 203.208.60.30 () {38 vars in 614 bytes} [Sat Aug 25 07:42:38 2018] GET /files/?page=50 => generated 23216 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 201/1195] 203.208.60.123 () {38 vars in 674 bytes} [Sat Aug 25 07:43:20 2018] GET /projects/pytorch/caffe2/python/layers/fc.py => generated 890014 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 202/1196] 203.208.60.115 () {38 vars in 802 bytes} [Sat Aug 25 07:45:59 2018] GET /projects/scikit-learn/examples/preprocessing => generated 240518 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 203/1197] 203.208.60.76 () {38 vars in 749 bytes} [Sat Aug 25 07:47:01 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ApplyAdagradDA.pbtxt => generated 2729036 bytes in 237 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 173/1198] 203.208.60.37 () {38 vars in 671 bytes} [Sat Aug 25 07:47:35 2018] GET /projects/pytorch/torch/csrc/jit/tracer.cpp => generated 890014 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 126 bytes (4 switches on core 1) +[pid: 19586|app: 0|req: 204/1199] 203.208.60.108 () {38 vars in 802 bytes} [Sat Aug 25 07:47:46 2018] GET /projects/scikit-learn/examples/decomposition => generated 240518 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19584|app: 0|req: 263/1200] 203.208.60.49 () {38 vars in 606 bytes} [Sat Aug 25 07:49:59 2018] GET /?page=1965 => generated 9722 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 174/1201] 203.208.60.103 () {38 vars in 804 bytes} [Sat Aug 25 07:50:41 2018] GET /projects/pytorch/scripts/diagnose_protobuf.py => generated 890012 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 175/1202] 203.208.60.97 () {38 vars in 717 bytes} [Sat Aug 25 07:50:41 2018] GET /projects/scikit-learn/doc/tutorial/machine_learning_map/index.rst => generated 240519 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19582|app: 0|req: 176/1203] 203.208.60.82 () {38 vars in 803 bytes} [Sat Aug 25 07:53:31 2018] GET /projects/scikit-learn/examples/classification => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 205/1204] 203.208.60.31 () {38 vars in 699 bytes} [Sat Aug 25 07:54:22 2018] GET /projects/scikit-learn/doc/themes/scikit-learn/theme.conf => generated 240519 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 206/1205] 203.208.60.95 () {38 vars in 626 bytes} [Sat Aug 25 07:55:51 2018] GET /?sort=latest&page=59 => generated 9705 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 207/1206] 203.208.60.92 () {38 vars in 807 bytes} [Sat Aug 25 07:56:23 2018] GET /projects/pytorch/scripts/read_conda_versions.sh => generated 890012 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 264/1207] 203.208.60.76 () {38 vars in 725 bytes} [Sat Aug 25 07:58:03 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tflite/types_test.cc => generated 2729035 bytes in 267 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 243/1208] 203.208.60.8 () {38 vars in 605 bytes} [Sat Aug 25 07:58:21 2018] GET /?page=1966 => generated 9722 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 208/1209] 117.136.89.112 () {44 vars in 960 bytes} [Sat Aug 25 07:58:49 2018] GET /projects/ => generated 9722 bytes in 48 msecs (HTTP/1.1 200) 4 headers in 195 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 244/1210] 117.136.89.112 () {44 vars in 961 bytes} [Sat Aug 25 07:58:52 2018] GET /projects/tensorflow/ => generated 2729032 bytes in 199 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 177/1211] 117.136.89.112 () {52 vars in 1225 bytes} [Sat Aug 25 07:58:58 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 11 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 265/1212] 117.136.89.112 () {52 vars in 1222 bytes} [Sat Aug 25 07:58:58 2018] POST /operations/show_navigation/ => generated 35 bytes in 71 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +, , , ]> +2 +1 +1 +1 +[pid: 19578|app: 0|req: 159/1213] 117.136.89.112 () {52 vars in 1239 bytes} [Sat Aug 25 07:58:58 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 117 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 245/1214] 117.136.89.112 () {52 vars in 1202 bytes} [Sat Aug 25 07:58:58 2018] POST /operations/right/ => generated 5260 bytes in 124 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 161/1215] 203.208.60.108 () {38 vars in 830 bytes} [Sat Aug 25 08:00:49 2018] GET /projects/scikit-learn/examples/plot_isotonic_regression.py => generated 240519 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 209/1216] 203.208.60.126 () {38 vars in 712 bytes} [Sat Aug 25 08:01:43 2018] GET /projects/tensorflow/tensorflow/python/eager/imperative_grad.py => generated 2729035 bytes in 230 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 246/1217] 203.208.60.8 () {38 vars in 844 bytes} [Sat Aug 25 08:02:08 2018] GET /projects/scikit-learn/examples/plot_johnson_lindenstrauss_bound.py => generated 240519 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 178/1218] 203.208.60.108 () {38 vars in 742 bytes} [Sat Aug 25 08:05:24 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_CudnnRNN.pbtxt => generated 2729036 bytes in 258 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 19582|app: 0|req: 179/1219] 203.208.60.127 () {38 vars in 738 bytes} [Sat Aug 25 08:05:34 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/mvn_diag.py => generated 2729035 bytes in 186 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 266/1220] 203.208.60.32 () {38 vars in 616 bytes} [Sat Aug 25 08:05:36 2018] GET /files/?page=109 => generated 23362 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 267/1221] 203.208.60.116 () {38 vars in 778 bytes} [Sat Aug 25 08:05:46 2018] GET /projects/pytorch/.git/refs/heads => generated 890014 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 180/1222] 203.208.60.92 () {38 vars in 783 bytes} [Sat Aug 25 08:07:53 2018] GET /projects/pytorch/caffe2/opt/sink.cc => generated 890014 bytes in 136 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 160/1223] 203.208.60.32 () {38 vars in 616 bytes} [Sat Aug 25 08:08:23 2018] GET /files/?page=107 => generated 23177 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 268/1224] 203.208.60.32 () {38 vars in 711 bytes} [Sat Aug 25 08:09:04 2018] GET /projects/tensorflow/tensorflow/core/framework/kernel_def.proto => generated 2729036 bytes in 261 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 162/1225] 203.208.60.13 () {38 vars in 791 bytes} [Sat Aug 25 08:10:45 2018] GET /projects/tensorflow/tensorflow/go/genop => generated 2729036 bytes in 283 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 210/1226] 203.208.60.62 () {38 vars in 717 bytes} [Sat Aug 25 08:12:45 2018] GET /projects/tensorflow/tensorflow/core/platform/default/build_config => generated 2729036 bytes in 260 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 247/1227] 203.208.60.26 () {38 vars in 791 bytes} [Sat Aug 25 08:13:37 2018] GET /projects/tensorflow/tensorflow/core/lib => generated 2729035 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 211/1228] 203.208.60.108 () {38 vars in 708 bytes} [Sat Aug 25 08:16:25 2018] GET /projects/pytorch/caffe2/python/operator_test/adagrad_test.py => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 163/1229] 203.208.60.127 () {38 vars in 794 bytes} [Sat Aug 25 08:16:29 2018] GET /projects/pytorch/docs/caffe2/header.html => generated 890014 bytes in 103 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 212/1230] 200.58.220.218 () {32 vars in 469 bytes} [Sat Aug 25 08:19:09 2018] GET / => generated 9722 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 269/1231] 203.208.60.19 () {38 vars in 741 bytes} [Sat Aug 25 08:20:06 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_FloorMod.pbtxt => generated 2729036 bytes in 273 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 270/1232] 137.74.198.181 () {30 vars in 435 bytes} [Sat Aug 25 08:20:19 2018] GET / => generated 9722 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 213/1233] 203.208.60.103 () {38 vars in 794 bytes} [Sat Aug 25 08:20:37 2018] GET /projects/Notes/res/drawable/new_note.xml => generated 39375 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 271/1234] 203.208.60.116 () {38 vars in 794 bytes} [Sat Aug 25 08:22:14 2018] GET /projects/pytorch/tools/amd_build/patches => generated 890014 bytes in 126 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 272/1235] 203.208.60.64 () {38 vars in 689 bytes} [Sat Aug 25 08:23:46 2018] GET /projects/tensorflow/tensorflow/core/ops/sdca_ops.cc => generated 2729036 bytes in 260 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 214/1236] 203.208.60.78 () {38 vars in 795 bytes} [Sat Aug 25 08:25:38 2018] GET /projects/pytorch/caffe2/operators/top_k.h => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 215/1237] 203.208.60.69 () {38 vars in 620 bytes} [Sat Aug 25 08:25:52 2018] GET /?sort=hot&page=34 => generated 9722 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 248/1238] 203.208.60.8 () {38 vars in 712 bytes} [Sat Aug 25 08:27:26 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/db/loader.cc => generated 2729035 bytes in 256 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 273/1239] 203.208.60.95 () {38 vars in 797 bytes} [Sat Aug 25 08:27:59 2018] GET /projects/pytorch/caffe2/operators/cos_op.h => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 274/1240] 203.208.60.115 () {38 vars in 798 bytes} [Sat Aug 25 08:30:59 2018] GET /projects/pytorch/caffe2/core/tensor_int8.h => generated 890014 bytes in 122 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 216/1241] 203.208.60.78 () {38 vars in 733 bytes} [Sat Aug 25 08:31:07 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_Mean.pbtxt => generated 2729036 bytes in 211 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 217/1242] 203.208.60.127 () {38 vars in 633 bytes} [Sat Aug 25 08:31:45 2018] GET /files/?sort=hot&page=13 => generated 23550 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 249/1243] 203.208.60.32 () {38 vars in 632 bytes} [Sat Aug 25 08:32:22 2018] GET /files/?sort=hot&page=11 => generated 23480 bytes in 93 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 161/1244] 203.208.60.98 () {38 vars in 632 bytes} [Sat Aug 25 08:33:01 2018] GET /files/?sort=hot&page=21 => generated 23539 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 275/1245] 203.208.60.76 () {38 vars in 632 bytes} [Sat Aug 25 08:33:58 2018] GET /files/?sort=hot&page=12 => generated 23465 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 276/1246] 203.208.60.12 () {38 vars in 632 bytes} [Sat Aug 25 08:34:39 2018] GET /files/?sort=hot&page=24 => generated 23247 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 164/1247] 203.208.60.8 () {38 vars in 756 bytes} [Sat Aug 25 08:34:47 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_DataFormatDimMap.pbtxt => generated 2729036 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 277/1248] 203.208.60.3 () {38 vars in 674 bytes} [Sat Aug 25 08:35:19 2018] GET /projects/pytorch/binaries/speed_benchmark.cc => generated 890014 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19580|app: 0|req: 165/1249] 203.208.60.98 () {38 vars in 799 bytes} [Sat Aug 25 08:35:32 2018] GET /projects/tensorflow/tensorflow/compiler/aot => generated 2729035 bytes in 287 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 218/1250] 203.208.60.32 () {38 vars in 799 bytes} [Sat Aug 25 08:36:36 2018] GET /projects/pytorch/caffe2/python/visualize.py => generated 890014 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 219/1251] 203.208.60.74 () {38 vars in 632 bytes} [Sat Aug 25 08:37:48 2018] GET /files/?sort=hot&page=22 => generated 23356 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 220/1252] 203.208.60.31 () {38 vars in 735 bytes} [Sat Aug 25 08:38:28 2018] GET /projects/tensorflow/tensorflow/examples/get_started/regression/__init__.py => generated 2729034 bytes in 207 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 221/1253] 203.208.60.17 () {38 vars in 799 bytes} [Sat Aug 25 08:40:10 2018] GET /projects/pytorch/caffe2/python/optimizer.py => generated 890014 bytes in 141 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 222/1254] 203.208.60.78 () {38 vars in 757 bytes} [Sat Aug 25 08:42:09 2018] GET /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/res/drawable-xhdpi => generated 2729035 bytes in 234 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 250/1255] 203.208.60.64 () {38 vars in 799 bytes} [Sat Aug 25 08:42:22 2018] GET /projects/pytorch/caffe2/python/muji_test.py => generated 890014 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 278/1256] 203.208.60.44 () {38 vars in 799 bytes} [Sat Aug 25 08:45:24 2018] GET /projects/pytorch/caffe2/operators/elu_op.cc => generated 890014 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 181/1257] 203.208.60.28 () {38 vars in 743 bytes} [Sat Aug 25 08:45:49 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/control_flow_ops_py_test.py => generated 2729035 bytes in 275 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 166/1258] 203.208.60.44 () {38 vars in 801 bytes} [Sat Aug 25 08:48:07 2018] GET /projects/Notes/res/values-zh-rTW/strings.xml => generated 39375 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 279/1259] 203.208.60.62 () {38 vars in 761 bytes} [Sat Aug 25 08:49:30 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/features/python/random_tensor_pool.py => generated 2729035 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 280/1260] 203.208.60.97 () {38 vars in 636 bytes} [Sat Aug 25 08:50:34 2018] GET /files/?sort=hot&page=2072 => generated 23555 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 223/1261] 203.208.60.50 () {38 vars in 801 bytes} [Sat Aug 25 08:51:03 2018] GET /projects/pytorch/caffe2/operators/prelu_op.h => generated 890014 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19582|app: 0|req: 182/1262] 203.208.60.80 () {38 vars in 737 bytes} [Sat Aug 25 08:53:11 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/utils/multiple_dispatch.py => generated 2729035 bytes in 239 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 167/1263] 203.208.60.88 () {38 vars in 803 bytes} [Sat Aug 25 08:55:05 2018] GET /projects/tensorflow/tensorflow/contrib/lookup => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 162/1264] 203.208.60.44 () {38 vars in 803 bytes} [Sat Aug 25 08:56:44 2018] GET /projects/pytorch/caffe2/operators/floor_op.cc => generated 890014 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 281/1265] 203.208.60.77 () {38 vars in 757 bytes} [Sat Aug 25 08:56:51 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_PaddingFIFOQueue.pbtxt => generated 2729036 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 282/1266] 203.208.60.32 () {38 vars in 614 bytes} [Sat Aug 25 08:58:57 2018] GET /files/?page=20 => generated 23317 bytes in 212 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 183/1267] 203.208.60.17 () {38 vars in 614 bytes} [Sat Aug 25 08:59:07 2018] GET /files/?page=22 => generated 23135 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 251/1268] 203.208.60.88 () {38 vars in 614 bytes} [Sat Aug 25 08:59:18 2018] GET /files/?page=23 => generated 23039 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 252/1269] 203.208.60.32 () {38 vars in 614 bytes} [Sat Aug 25 08:59:31 2018] GET /files/?page=26 => generated 23393 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 184/1270] 203.208.60.37 () {38 vars in 803 bytes} [Sat Aug 25 09:00:23 2018] GET /projects/pytorch/caffe2/operators/resize_op.h => generated 890014 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19578|app: 0|req: 163/1271] 203.208.60.28 () {38 vars in 614 bytes} [Sat Aug 25 09:00:30 2018] GET /files/?page=28 => generated 23320 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 253/1272] 203.208.60.76 () {38 vars in 709 bytes} [Sat Aug 25 09:00:32 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/__init__.py => generated 2729035 bytes in 204 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 283/1273] 203.208.60.82 () {38 vars in 803 bytes} [Sat Aug 25 09:02:30 2018] GET /projects/pytorch/caffe2/operators/slice_op.cu => generated 890014 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 284/1274] 203.208.60.10 () {38 vars in 614 bytes} [Sat Aug 25 09:03:32 2018] GET /files/?page=27 => generated 23262 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 285/1275] 203.208.60.44 () {38 vars in 741 bytes} [Sat Aug 25 09:04:12 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_StackPopV2.pbtxt => generated 2729036 bytes in 243 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19584|app: 0|req: 286/1276] 203.208.60.82 () {38 vars in 803 bytes} [Sat Aug 25 09:05:36 2018] GET /projects/tensorflow/third_party/llvm/llvm.bzl => generated 2729034 bytes in 295 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 287/1277] 203.208.60.105 () {38 vars in 637 bytes} [Sat Aug 25 09:07:13 2018] GET /files/?sort=hot&page=2071 => generated 23489 bytes in 126 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 288/1278] 203.208.60.78 () {38 vars in 711 bytes} [Sat Aug 25 09:07:52 2018] GET /projects/tensorflow/tensorflow/core/kernels/broadcast_to_op.cc => generated 2729036 bytes in 302 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 289/1279] 203.208.60.95 () {38 vars in 803 bytes} [Sat Aug 25 09:08:15 2018] GET /projects/pytorch/torch/distributions/gamma.py => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19584|app: 0|req: 290/1280] 203.208.60.13 () {38 vars in 740 bytes} [Sat Aug 25 09:08:40 2018] GET /files/?page=31 => generated 23034 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 291/1281] 203.208.60.94 () {38 vars in 740 bytes} [Sat Aug 25 09:10:33 2018] GET /files/?page=30 => generated 23217 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 292/1282] 203.208.60.28 () {38 vars in 614 bytes} [Sat Aug 25 09:11:02 2018] GET /files/?page=33 => generated 23095 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 293/1283] 203.208.60.30 () {38 vars in 803 bytes} [Sat Aug 25 09:11:07 2018] GET /projects/pytorch/caffe2/operators/matmul_op.h => generated 890014 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 294/1284] 203.208.60.74 () {38 vars in 751 bytes} [Sat Aug 25 09:11:32 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_ScatterUpdate.pbtxt => generated 2729036 bytes in 292 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 185/1285] 203.208.60.78 () {38 vars in 740 bytes} [Sat Aug 25 09:11:48 2018] GET /files/?page=32 => generated 23078 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 186/1286] 203.208.60.12 () {38 vars in 803 bytes} [Sat Aug 25 09:15:05 2018] GET /projects/tensorflow/tensorflow/examples/learn => generated 2729034 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 168/1287] 203.208.60.35 () {38 vars in 749 bytes} [Sat Aug 25 09:15:13 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_ApplyAdagrad.pbtxt => generated 2729036 bytes in 182 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 295/1288] 203.208.60.32 () {38 vars in 803 bytes} [Sat Aug 25 09:16:52 2018] GET /projects/tensorflow/tensorflow/contrib/layers => generated 2729035 bytes in 259 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 296/1289] 203.208.60.116 () {38 vars in 741 bytes} [Sat Aug 25 09:18:16 2018] GET /files/?page=34 => generated 23370 bytes in 103 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 297/1290] 203.208.60.105 () {38 vars in 760 bytes} [Sat Aug 25 09:18:53 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_TensorArrayReadV2.pbtxt => generated 2729036 bytes in 252 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19578|app: 0|req: 164/1291] 203.208.60.64 () {38 vars in 740 bytes} [Sat Aug 25 09:19:06 2018] GET /files/?page=37 => generated 23255 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 254/1292] 203.208.60.44 () {38 vars in 740 bytes} [Sat Aug 25 09:20:06 2018] GET /files/?page=35 => generated 23217 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 187/1293] 203.208.60.35 () {38 vars in 805 bytes} [Sat Aug 25 09:20:19 2018] GET /projects/pytorch/caffe2/operators/sigmoid_op.h => generated 890014 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 255/1294] 203.208.60.127 () {38 vars in 741 bytes} [Sat Aug 25 09:20:52 2018] GET /files/?page=36 => generated 23352 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 256/1295] 203.208.60.37 () {38 vars in 740 bytes} [Sat Aug 25 09:20:57 2018] GET /files/?page=38 => generated 23369 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 188/1296] 203.208.60.3 () {38 vars in 739 bytes} [Sat Aug 25 09:21:03 2018] GET /files/?page=39 => generated 23092 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 189/1297] 203.208.60.95 () {38 vars in 740 bytes} [Sat Aug 25 09:21:08 2018] GET /files/?page=33 => generated 23095 bytes in 89 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 190/1298] 203.208.60.105 () {38 vars in 741 bytes} [Sat Aug 25 09:21:32 2018] GET /files/?page=40 => generated 23040 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 165/1299] 203.208.60.26 () {38 vars in 740 bytes} [Sat Aug 25 09:22:14 2018] GET /files/?page=41 => generated 23075 bytes in 103 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 298/1300] 203.208.60.64 () {38 vars in 642 bytes} [Sat Aug 25 09:22:50 2018] GET /files/?sort=latest&page=2069 => generated 23011 bytes in 136 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 169/1301] 203.208.60.32 () {38 vars in 805 bytes} [Sat Aug 25 09:22:50 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/examples/notebooks/graph_vs_ag_vs_eager_sum_speed_test.ipynb => generated 2729035 bytes in 256 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19580|app: 0|req: 170/1302] 203.208.60.37 () {38 vars in 851 bytes} [Sat Aug 25 09:22:58 2018] GET /projects/tensorflow/tensorflow/compiler/aot/tests/make_test_graphs.py => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 191/1303] 203.208.60.116 () {38 vars in 806 bytes} [Sat Aug 25 09:23:04 2018] GET /projects/pytorch/torch/distributions/gumbel.py => generated 890014 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 224/1304] 203.208.60.116 () {38 vars in 741 bytes} [Sat Aug 25 09:23:10 2018] GET /files/?page=43 => generated 23249 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 225/1305] 203.208.60.82 () {38 vars in 740 bytes} [Sat Aug 25 09:23:15 2018] GET /files/?page=44 => generated 23302 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 226/1306] 203.208.60.37 () {38 vars in 614 bytes} [Sat Aug 25 09:23:19 2018] GET /files/?page=43 => generated 23249 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 257/1307] 203.208.60.32 () {38 vars in 740 bytes} [Sat Aug 25 09:23:56 2018] GET /files/?page=46 => generated 23284 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 258/1308] 203.208.60.108 () {38 vars in 741 bytes} [Sat Aug 25 09:25:02 2018] GET /files/?page=45 => generated 23200 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 166/1309] 203.208.60.87 () {38 vars in 733 bytes} [Sat Aug 25 09:25:05 2018] GET /projects/pytorch/caffe2/contrib/cuda-convnet2/make-data/pyext/__init__.py => generated 890014 bytes in 85 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 192/1310] 203.208.60.13 () {38 vars in 768 bytes} [Sat Aug 25 09:25:19 2018] GET /files/?sort=latest&page=2065 => generated 23368 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 259/1311] 203.208.60.8 () {38 vars in 804 bytes} [Sat Aug 25 09:25:29 2018] GET /projects/pytorch/tools/jit/gen_jit_dispatch.py => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 167/1312] 203.208.60.64 () {38 vars in 768 bytes} [Sat Aug 25 09:25:35 2018] GET /files/?sort=latest&page=2066 => generated 23473 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 168/1313] 203.208.60.64 () {38 vars in 653 bytes} [Sat Aug 25 09:25:37 2018] GET /projects/pytorch/caffe2/core/db.h => generated 890014 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 260/1314] 203.208.60.13 () {38 vars in 768 bytes} [Sat Aug 25 09:25:52 2018] GET /files/?sort=latest&page=2064 => generated 23269 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 171/1315] 203.208.60.70 () {38 vars in 768 bytes} [Sat Aug 25 09:26:09 2018] GET /files/?sort=latest&page=2067 => generated 23431 bytes in 149 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 261/1316] 203.208.60.10 () {38 vars in 768 bytes} [Sat Aug 25 09:26:13 2018] GET /files/?sort=latest&page=2068 => generated 23333 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 169/1317] 203.208.60.116 () {38 vars in 830 bytes} [Sat Aug 25 09:26:14 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.estimator.export.-classification-output.__metaclass__.pbtxt => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19580|app: 0|req: 172/1318] 203.208.60.97 () {38 vars in 768 bytes} [Sat Aug 25 09:26:44 2018] GET /files/?sort=latest&page=2062 => generated 23388 bytes in 153 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 262/1319] 203.208.60.49 () {38 vars in 768 bytes} [Sat Aug 25 09:26:52 2018] GET /files/?sort=latest&page=2063 => generated 23113 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 299/1320] 203.208.60.97 () {38 vars in 768 bytes} [Sat Aug 25 09:27:00 2018] GET /files/?sort=latest&page=2061 => generated 23345 bytes in 114 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 300/1321] 203.208.60.32 () {38 vars in 873 bytes} [Sat Aug 25 09:27:53 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/convert/trt_optimization_pass.cc => generated 2729035 bytes in 285 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 193/1322] 203.208.60.105 () {38 vars in 848 bytes} [Sat Aug 25 09:27:54 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/examples/notebooks => generated 2729035 bytes in 175 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 263/1323] 203.208.60.69 () {38 vars in 897 bytes} [Sat Aug 25 09:28:01 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/features/python/random_tensor_pool_test.py => generated 2729035 bytes in 197 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 301/1324] 203.208.60.32 () {38 vars in 768 bytes} [Sat Aug 25 09:28:07 2018] GET /files/?sort=latest&page=2060 => generated 23245 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 302/1325] 203.208.60.26 () {38 vars in 855 bytes} [Sat Aug 25 09:28:13 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/aggregate_ops.cc => generated 2729035 bytes in 530 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 264/1326] 203.208.60.44 () {38 vars in 805 bytes} [Sat Aug 25 09:28:21 2018] GET /projects/scikit-learn/sklearn/datasets/base.py => generated 240518 bytes in 51 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19582|app: 0|req: 194/1327] 203.208.60.32 () {38 vars in 768 bytes} [Sat Aug 25 09:28:37 2018] GET /files/?sort=latest&page=2059 => generated 23261 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 170/1328] 203.208.60.69 () {38 vars in 768 bytes} [Sat Aug 25 09:28:49 2018] GET /files/?sort=latest&page=2058 => generated 23293 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 265/1329] 203.208.60.35 () {38 vars in 768 bytes} [Sat Aug 25 09:29:09 2018] GET /files/?sort=latest&page=2057 => generated 23365 bytes in 131 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 171/1330] 203.208.60.26 () {38 vars in 643 bytes} [Sat Aug 25 09:29:16 2018] GET /projects/pytorch/.git/config => generated 890014 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19586|app: 0|req: 227/1331] 203.208.60.32 () {38 vars in 768 bytes} [Sat Aug 25 09:29:32 2018] GET /files/?sort=latest&page=2056 => generated 23245 bytes in 114 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 228/1332] 203.208.60.94 () {38 vars in 795 bytes} [Sat Aug 25 09:29:54 2018] GET /projects/tensorflow/third_party/gpus/cuda => generated 2729033 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 195/1333] 203.208.60.108 () {38 vars in 824 bytes} [Sat Aug 25 09:30:16 2018] GET /projects/tensorflow/tensorflow/stream_executor/kernel.h => generated 2729035 bytes in 275 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 303/1334] 203.208.60.103 () {38 vars in 812 bytes} [Sat Aug 25 09:30:39 2018] GET /projects/tensorflow/third_party/gpus/cuda/LICENSE => generated 2729033 bytes in 259 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 229/1335] 203.208.60.88 () {38 vars in 833 bytes} [Sat Aug 25 09:30:49 2018] GET /projects/tensorflow/third_party/gpus/cuda/build_defs.bzl.tpl => generated 2729033 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19584|app: 0|req: 304/1336] 203.208.60.10 () {38 vars in 829 bytes} [Sat Aug 25 09:31:03 2018] GET /projects/tensorflow/third_party/gpus/cuda/remote.BUILD.tpl => generated 2729033 bytes in 288 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19580|app: 0|req: 173/1337] 203.208.60.123 () {38 vars in 816 bytes} [Sat Aug 25 09:31:12 2018] GET /projects/tensorflow/third_party/gpus/cuda/BUILD.tpl => generated 2729033 bytes in 214 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 266/1338] 203.208.60.108 () {38 vars in 806 bytes} [Sat Aug 25 09:31:14 2018] GET /projects/tensorflow/tensorflow/contrib/metrics => generated 2729035 bytes in 195 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 230/1339] 203.208.60.31 () {38 vars in 807 bytes} [Sat Aug 25 09:31:15 2018] GET /projects/tensorflow/third_party/gpus/cuda/BUILD => generated 2729033 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 196/1340] 203.208.60.64 () {38 vars in 831 bytes} [Sat Aug 25 09:31:19 2018] GET /projects/tensorflow/third_party/gpus/cuda/cuda_config.h.tpl => generated 2729033 bytes in 178 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 305/1341] 203.208.60.13 () {38 vars in 787 bytes} [Sat Aug 25 09:31:24 2018] GET /projects/tensorflow/third_party/fft2d => generated 2729033 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 231/1342] 203.208.60.116 () {38 vars in 798 bytes} [Sat Aug 25 09:31:30 2018] GET /projects/tensorflow/third_party/systemlibs => generated 2729033 bytes in 240 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19580|app: 0|req: 174/1343] 203.208.60.92 () {38 vars in 807 bytes} [Sat Aug 25 09:31:36 2018] GET /projects/tensorflow/third_party/clang_toolchain => generated 2729033 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 267/1344] 203.208.60.105 () {38 vars in 769 bytes} [Sat Aug 25 09:31:42 2018] GET /files/?sort=latest&page=2052 => generated 23717 bytes in 120 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 172/1345] 203.208.60.97 () {38 vars in 768 bytes} [Sat Aug 25 09:31:47 2018] GET /files/?sort=latest&page=2054 => generated 23178 bytes in 116 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 173/1346] 203.208.60.78 () {38 vars in 768 bytes} [Sat Aug 25 09:31:53 2018] GET /files/?sort=latest&page=2053 => generated 23364 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 268/1347] 203.208.60.3 () {38 vars in 767 bytes} [Sat Aug 25 09:31:59 2018] GET /files/?sort=latest&page=2051 => generated 23267 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 174/1348] 203.208.60.31 () {38 vars in 768 bytes} [Sat Aug 25 09:32:05 2018] GET /files/?sort=latest&page=2055 => generated 23272 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 269/1349] 203.208.60.103 () {38 vars in 800 bytes} [Sat Aug 25 09:32:10 2018] GET /projects/tensorflow/third_party/fft2d/BUILD => generated 2729033 bytes in 237 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19584|app: 0|req: 306/1350] 203.208.60.21 () {38 vars in 799 bytes} [Sat Aug 25 09:32:16 2018] GET /projects/tensorflow/third_party/fft2d/fft.h => generated 2729033 bytes in 232 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 175/1351] 203.208.60.64 () {38 vars in 803 bytes} [Sat Aug 25 09:32:32 2018] GET /projects/tensorflow/third_party/fft2d/LICENSE => generated 2729033 bytes in 266 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 175/1352] 203.208.60.17 () {38 vars in 811 bytes} [Sat Aug 25 09:32:33 2018] GET /projects/tensorflow/third_party/fft2d/fft2d.BUILD => generated 2729033 bytes in 166 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 1) +[pid: 19582|app: 0|req: 197/1353] 203.208.60.37 () {38 vars in 819 bytes} [Sat Aug 25 09:32:36 2018] GET /projects/tensorflow/third_party/clang_toolchain/BUILD => generated 2729033 bytes in 182 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 198/1354] 203.208.60.62 () {38 vars in 845 bytes} [Sat Aug 25 09:32:38 2018] GET /projects/tensorflow/third_party/clang_toolchain/download_clang.bzl => generated 2729033 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (8 switches on core 1) +[pid: 19584|app: 0|req: 307/1355] 203.208.60.55 () {38 vars in 642 bytes} [Sat Aug 25 09:32:56 2018] GET /files/?sort=latest&page=2060 => generated 23245 bytes in 122 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 308/1356] 203.208.60.30 () {38 vars in 768 bytes} [Sat Aug 25 09:33:16 2018] GET /files/?sort=latest&page=2048 => generated 23302 bytes in 147 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 199/1357] 203.208.60.37 () {38 vars in 663 bytes} [Sat Aug 25 09:33:19 2018] GET /projects/Notes/src/net/micode/notes/ui => generated 39377 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 176/1358] 203.208.60.44 () {38 vars in 755 bytes} [Sat Aug 25 09:33:35 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_CompareAndBitpack.pbtxt => generated 2729035 bytes in 259 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 232/1359] 203.208.60.53 () {38 vars in 768 bytes} [Sat Aug 25 09:33:51 2018] GET /files/?sort=latest&page=2050 => generated 23278 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 309/1360] 203.208.60.28 () {38 vars in 768 bytes} [Sat Aug 25 09:34:40 2018] GET /files/?sort=latest&page=2046 => generated 23289 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 176/1361] 203.208.60.94 () {38 vars in 807 bytes} [Sat Aug 25 09:35:06 2018] GET /projects/scikit-learn/sklearn/utils/__init__.py => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19586|app: 0|req: 233/1362] 203.208.60.62 () {38 vars in 665 bytes} [Sat Aug 25 09:36:36 2018] GET /projects/tensorflow/third_party/android => generated 2729034 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 200/1363] 203.208.60.76 () {38 vars in 783 bytes} [Sat Aug 25 09:36:53 2018] GET /projects/tensorflow/ACKNOWLEDGMENTS => generated 2729036 bytes in 206 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 234/1364] 203.208.60.115 () {38 vars in 808 bytes} [Sat Aug 25 09:36:58 2018] GET /projects/tensorflow/tensorflow/contrib/training => generated 2729035 bytes in 163 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 1) +Internal Server Error: /projects/21/files/1500/find_function/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19582|app: 0|req: 201/1365] 203.208.60.30 () {38 vars in 661 bytes} [Sat Aug 25 09:37:15 2018] GET /projects/21/files/1500/find_function/ => generated 77463 bytes in 64 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 310/1366] 203.208.60.77 () {38 vars in 669 bytes} [Sat Aug 25 09:40:16 2018] GET /projects/tensorflow/third_party/cub.BUILD => generated 2729034 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19584|app: 0|req: 311/1367] 203.208.60.12 () {38 vars in 807 bytes} [Sat Aug 25 09:40:26 2018] GET /projects/pytorch/caffe2/core/operator_schema.cc => generated 890014 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19584|app: 0|req: 312/1368] 203.208.60.94 () {38 vars in 779 bytes} [Sat Aug 25 09:41:23 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-convolution1-d.pbtxt => generated 2729035 bytes in 273 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 313/1369] 203.208.60.32 () {38 vars in 807 bytes} [Sat Aug 25 09:42:43 2018] GET /projects/tensorflow/tensorflow/contrib/quantize => generated 2729035 bytes in 289 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 314/1370] 203.208.60.64 () {38 vars in 655 bytes} [Sat Aug 25 09:43:56 2018] GET /projects/tensorflow/third_party/py => generated 2729033 bytes in 264 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 235/1371] 203.208.60.126 () {38 vars in 704 bytes} [Sat Aug 25 09:44:37 2018] GET /projects/pytorch/caffe2/ideep/operators/concat_split_op.cc => generated 890014 bytes in 113 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 202/1372] 203.208.60.98 () {38 vars in 807 bytes} [Sat Aug 25 09:45:46 2018] GET /projects/pytorch/caffe2/core/net_simple_async.h => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 203/1373] 203.208.60.21 () {38 vars in 659 bytes} [Sat Aug 25 09:47:36 2018] GET /projects/tensorflow/third_party/grpc => generated 2729033 bytes in 305 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 270/1374] 203.208.60.3 () {38 vars in 806 bytes} [Sat Aug 25 09:48:28 2018] GET /projects/pytorch/.jenkins/pytorch/build-asan.sh => generated 890014 bytes in 143 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 271/1375] 203.208.60.50 () {38 vars in 795 bytes} [Sat Aug 25 09:49:28 2018] GET /projects/tensorflow/third_party/cub.BUILD => generated 2729034 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 236/1376] 203.208.60.98 () {38 vars in 791 bytes} [Sat Aug 25 09:49:54 2018] GET /projects/tensorflow/third_party/android => generated 2729034 bytes in 195 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19577|app: 0|req: 272/1377] 203.208.60.50 () {38 vars in 795 bytes} [Sat Aug 25 09:50:32 2018] GET /projects/tensorflow/third_party/boringssl => generated 2729034 bytes in 200 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19584|app: 0|req: 315/1378] 203.208.60.127 () {38 vars in 798 bytes} [Sat Aug 25 09:51:12 2018] GET /projects/tensorflow/third_party/zlib.BUILD => generated 2729034 bytes in 267 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 273/1379] 203.208.60.69 () {38 vars in 807 bytes} [Sat Aug 25 09:51:20 2018] GET /projects/tensorflow/third_party/mkl_dnn/LICENSE => generated 2729033 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 177/1380] 203.208.60.21 () {38 vars in 749 bytes} [Sat Aug 25 09:51:57 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/examples/integration_tests/BUILD => generated 2729035 bytes in 235 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19580|app: 0|req: 178/1381] 203.208.60.31 () {38 vars in 735 bytes} [Sat Aug 25 09:51:58 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_AvgPool.pbtxt => generated 2729035 bytes in 193 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19580|app: 0|req: 179/1382] 203.208.60.78 () {38 vars in 809 bytes} [Sat Aug 25 09:55:35 2018] GET /projects/pytorch/caffe2/operators/roi_pool_op.cc => generated 890014 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19577|app: 0|req: 274/1383] 203.208.60.64 () {38 vars in 717 bytes} [Sat Aug 25 09:56:51 2018] GET /projects/tensorflow/tensorflow/contrib/framework/python/framework => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 237/1384] 203.208.60.8 () {38 vars in 808 bytes} [Sat Aug 25 09:57:05 2018] GET /projects/pytorch/caffe2/operators/softplus_op.cu => generated 890014 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 316/1385] 203.208.60.10 () {38 vars in 731 bytes} [Sat Aug 25 09:59:46 2018] GET /projects/tensorflow/tensorflow/python/keras/applications/mobilenet_v2.py => generated 2729035 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 204/1386] 203.208.60.103 () {38 vars in 617 bytes} [Sat Aug 25 09:59:51 2018] GET /files/?page=121 => generated 23170 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 317/1387] 203.208.60.55 () {38 vars in 659 bytes} [Sat Aug 25 09:59:56 2018] GET /projects/scikit-learn/.git/refs/tags => generated 240519 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 318/1388] 203.208.60.31 () {38 vars in 809 bytes} [Sat Aug 25 10:00:18 2018] GET /projects/pytorch/tools/setup_helpers/__init__.py => generated 890014 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 319/1389] 203.208.60.8 () {38 vars in 708 bytes} [Sat Aug 25 10:00:53 2018] GET /projects/pytorch/aten/src/THCUNN/generic/ClassNLLCriterion.cu => generated 890013 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19578|app: 0|req: 177/1390] 203.208.60.64 () {38 vars in 809 bytes} [Sat Aug 25 10:02:50 2018] GET /projects/tensorflow/.git/hooks/pre-rebase.sample => generated 2729036 bytes in 270 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 238/1391] 203.208.60.64 () {38 vars in 755 bytes} [Sat Aug 25 10:03:00 2018] GET /projects/tensorflow/tensorflow/contrib/framework/python/framework/graph_util_test.py => generated 2729035 bytes in 222 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19584|app: 0|req: 320/1392] 203.208.60.64 () {38 vars in 809 bytes} [Sat Aug 25 10:05:42 2018] GET /projects/scikit-learn/sklearn/datasets/mlcomp.py => generated 240518 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 321/1393] 203.208.60.116 () {38 vars in 714 bytes} [Sat Aug 25 10:06:41 2018] GET /projects/tensorflow/tensorflow/core/kernels/quantized_mul_op.cc => generated 2729036 bytes in 298 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 322/1394] 203.208.60.116 () {38 vars in 812 bytes} [Sat Aug 25 10:08:34 2018] GET /projects/scikit-learn/sklearn/utils/fast_dict.pxd => generated 240518 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 239/1395] 203.208.60.53 () {38 vars in 761 bytes} [Sat Aug 25 10:10:21 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.train.-cluster-spec.pbtxt => generated 2729035 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 240/1396] 203.208.60.87 () {38 vars in 811 bytes} [Sat Aug 25 10:11:26 2018] GET /projects/scikit-learn/sklearn/utils/multiclass.py => generated 240518 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 323/1397] 203.208.60.31 () {38 vars in 709 bytes} [Sat Aug 25 10:14:01 2018] GET /projects/tensorflow/tensorflow/examples/tutorials/mnist/BUILD => generated 2729034 bytes in 284 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 205/1398] 203.208.60.50 () {38 vars in 811 bytes} [Sat Aug 25 10:15:07 2018] GET /projects/pytorch/caffe2/python/transformations.py => generated 890014 bytes in 112 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 324/1399] 203.208.60.64 () {38 vars in 811 bytes} [Sat Aug 25 10:17:11 2018] GET /projects/pytorch/caffe2/operators/sequence_ops.cu => generated 890014 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19577|app: 0|req: 275/1400] 203.208.60.126 () {38 vars in 758 bytes} [Sat Aug 25 10:17:42 2018] GET /projects/tensorflow/tensorflow/contrib/legacy_seq2seq/python/kernel_tests/__init__.py => generated 2729035 bytes in 282 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 276/1401] 203.208.60.121 () {38 vars in 633 bytes} [Sat Aug 25 10:18:52 2018] GET /files/?sort=hot&page=47 => generated 23329 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 178/1402] 203.208.60.12 () {38 vars in 632 bytes} [Sat Aug 25 10:19:35 2018] GET /files/?sort=hot&page=45 => generated 23421 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 277/1403] 203.208.60.95 () {38 vars in 632 bytes} [Sat Aug 25 10:19:58 2018] GET /files/?sort=hot&page=46 => generated 23505 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 325/1404] 203.208.60.103 () {38 vars in 812 bytes} [Sat Aug 25 10:20:37 2018] GET /projects/scikit-learn/examples/mixture/README.txt => generated 240518 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 241/1405] 203.208.60.92 () {38 vars in 632 bytes} [Sat Aug 25 10:20:49 2018] GET /files/?sort=hot&page=44 => generated 23523 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 242/1406] 203.208.60.108 () {38 vars in 716 bytes} [Sat Aug 25 10:21:22 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/trt_conversion.i => generated 2729035 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 0) +[pid: 19584|app: 0|req: 326/1407] 203.208.60.80 () {38 vars in 587 bytes} [Sat Aug 25 10:22:09 2018] GET / => generated 9722 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +Not Found: /favicon.ico +[pid: 19578|app: 0|req: 179/1408] 203.208.60.64 () {38 vars in 496 bytes} [Sat Aug 25 10:22:13 2018] GET /favicon.ico => generated 3104 bytes in 17 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 206/1409] 203.208.60.116 () {38 vars in 812 bytes} [Sat Aug 25 10:22:56 2018] GET /projects/scikit-learn/sklearn/tree/_criterion.pxd => generated 240516 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 278/1410] 203.208.60.98 () {38 vars in 632 bytes} [Sat Aug 25 10:24:22 2018] GET /files/?sort=hot&page=39 => generated 23313 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 180/1411] 203.208.60.115 () {38 vars in 708 bytes} [Sat Aug 25 10:25:03 2018] GET /projects/Notes/src/net/micode/notes/tool/ResourceParser.java => generated 39377 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 243/1412] 203.208.60.32 () {38 vars in 813 bytes} [Sat Aug 25 10:25:59 2018] GET /projects/pytorch/.jenkins/pytorch/multigpu-test.sh => generated 890014 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19586|app: 0|req: 244/1413] 203.208.60.64 () {38 vars in 787 bytes} [Sat Aug 25 10:28:43 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-global-max-pool1-d.pbtxt => generated 2729035 bytes in 273 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 0) +[pid: 19578|app: 0|req: 180/1414] 203.208.60.127 () {38 vars in 814 bytes} [Sat Aug 25 10:29:45 2018] GET /projects/scikit-learn/examples/manifold/README.txt => generated 240518 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 181/1415] 203.208.60.64 () {38 vars in 813 bytes} [Sat Aug 25 10:31:33 2018] GET /projects/scikit-learn/examples/mixture/plot_gmm.py => generated 240518 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 182/1416] 203.208.60.123 () {38 vars in 770 bytes} [Sat Aug 25 10:32:23 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/utils/saved_model_export_utils.py => generated 2729035 bytes in 285 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 245/1417] 203.208.60.108 () {38 vars in 814 bytes} [Sat Aug 25 10:35:28 2018] GET /projects/scikit-learn/examples/datasets/README.txt => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19577|app: 0|req: 279/1418] 203.208.60.53 () {38 vars in 719 bytes} [Sat Aug 25 10:36:04 2018] GET /projects/tensorflow/tensorflow/core/lib/monitoring/sampler_test.cc => generated 2729035 bytes in 260 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 207/1419] 203.208.60.88 () {38 vars in 813 bytes} [Sat Aug 25 10:37:19 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 181/1420] 203.208.60.3 () {38 vars in 788 bytes} [Sat Aug 25 10:39:45 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-config-proto.-device-count-entry.pbtxt => generated 2729035 bytes in 296 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 183/1421] 203.208.60.31 () {38 vars in 813 bytes} [Sat Aug 25 10:40:11 2018] GET /projects/pytorch/caffe2/operators/index_hash_ops.h => generated 890014 bytes in 159 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 280/1422] 203.208.60.35 () {38 vars in 636 bytes} [Sat Aug 25 10:40:22 2018] GET /files/?sort=hot&page=2058 => generated 23343 bytes in 131 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 184/1423] 203.208.60.92 () {38 vars in 762 bytes} [Sat Aug 25 10:41:09 2018] GET /files/?sort=hot&page=2053 => generated 23554 bytes in 147 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 185/1424] 203.208.60.123 () {38 vars in 763 bytes} [Sat Aug 25 10:41:28 2018] GET /files/?sort=hot&page=2054 => generated 23491 bytes in 120 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 186/1425] 203.208.60.103 () {38 vars in 763 bytes} [Sat Aug 25 10:41:35 2018] GET /files/?sort=hot&page=2050 => generated 23367 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 281/1426] 203.208.60.32 () {38 vars in 762 bytes} [Sat Aug 25 10:41:42 2018] GET /files/?sort=hot&page=2048 => generated 23462 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 182/1427] 203.208.60.55 () {38 vars in 762 bytes} [Sat Aug 25 10:41:50 2018] GET /files/?sort=hot&page=2052 => generated 23316 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 187/1428] 203.208.60.88 () {38 vars in 762 bytes} [Sat Aug 25 10:41:54 2018] GET /files/?sort=hot&page=2051 => generated 23409 bytes in 87 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 188/1429] 203.208.60.64 () {38 vars in 762 bytes} [Sat Aug 25 10:42:03 2018] GET /files/?sort=hot&page=2049 => generated 23621 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 183/1430] 203.208.60.123 () {38 vars in 763 bytes} [Sat Aug 25 10:43:16 2018] GET /files/?sort=hot&page=2044 => generated 23263 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 282/1431] 203.208.60.64 () {38 vars in 762 bytes} [Sat Aug 25 10:43:16 2018] GET /files/?sort=hot&page=2047 => generated 23475 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 184/1432] 203.208.60.95 () {38 vars in 762 bytes} [Sat Aug 25 10:43:17 2018] GET /files/?sort=hot&page=2043 => generated 23311 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 283/1433] 203.208.60.70 () {38 vars in 762 bytes} [Sat Aug 25 10:43:18 2018] GET /files/?sort=hot&page=2046 => generated 23650 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 246/1434] 203.208.60.74 () {38 vars in 813 bytes} [Sat Aug 25 10:43:19 2018] GET /projects/pytorch/caffe2/python/net_printer_test.py => generated 890014 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 284/1435] 203.208.60.32 () {38 vars in 689 bytes} [Sat Aug 25 10:43:25 2018] GET /projects/tensorflow/tensorflow/core/lib/io/format.h => generated 2729035 bytes in 230 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 185/1436] 203.208.60.53 () {38 vars in 762 bytes} [Sat Aug 25 10:43:30 2018] GET /files/?sort=hot&page=2038 => generated 23604 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 285/1437] 203.208.60.87 () {38 vars in 762 bytes} [Sat Aug 25 10:43:36 2018] GET /files/?sort=hot&page=2039 => generated 23487 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 286/1438] 203.208.60.94 () {38 vars in 636 bytes} [Sat Aug 25 10:44:07 2018] GET /files/?sort=hot&page=2059 => generated 23313 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 189/1439] 203.208.60.35 () {38 vars in 762 bytes} [Sat Aug 25 10:44:07 2018] GET /files/?sort=hot&page=2040 => generated 23543 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 327/1440] 203.208.60.44 () {38 vars in 636 bytes} [Sat Aug 25 10:44:24 2018] GET /files/?sort=hot&page=2050 => generated 23367 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 328/1441] 203.208.60.28 () {38 vars in 636 bytes} [Sat Aug 25 10:44:47 2018] GET /files/?sort=hot&page=2045 => generated 23784 bytes in 149 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 190/1442] 203.208.60.105 () {38 vars in 763 bytes} [Sat Aug 25 10:44:53 2018] GET /files/?sort=hot&page=2041 => generated 23543 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 247/1443] 203.208.60.98 () {38 vars in 636 bytes} [Sat Aug 25 10:45:41 2018] GET /files/?sort=hot&page=2048 => generated 23462 bytes in 131 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 287/1444] 203.208.60.94 () {38 vars in 815 bytes} [Sat Aug 25 10:45:59 2018] GET /projects/scikit-learn/examples/manifold/plot_mds.py => generated 240518 bytes in 44 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 288/1445] 203.208.60.108 () {38 vars in 672 bytes} [Sat Aug 25 10:46:26 2018] GET /projects/pytorch/torch/distributions/kl.py => generated 890014 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 186/1446] 203.208.60.97 () {38 vars in 715 bytes} [Sat Aug 25 10:47:06 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tflite/import.h => generated 2729035 bytes in 214 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +Not Found: /robots.txt +[pid: 19578|app: 0|req: 187/1447] 203.208.60.31 () {36 vars in 529 bytes} [Sat Aug 25 10:47:18 2018] GET /robots.txt => generated 3101 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 329/1448] 203.208.60.17 () {38 vars in 762 bytes} [Sat Aug 25 10:47:33 2018] GET /files/?sort=hot&page=2042 => generated 23452 bytes in 103 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 330/1449] 203.208.60.121 () {38 vars in 816 bytes} [Sat Aug 25 10:49:59 2018] GET /projects/pytorch/caffe2/operators/normalize_l1_op.h => generated 890014 bytes in 161 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 188/1450] 203.208.60.126 () {38 vars in 686 bytes} [Sat Aug 25 10:51:03 2018] GET /projects/pytorch/caffe2/python/checkpoint_test.py => generated 890014 bytes in 122 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 191/1451] 203.208.60.64 () {38 vars in 719 bytes} [Sat Aug 25 10:51:04 2018] GET /projects/tensorflow/tensorflow/python/eager/execution_callbacks.py => generated 2729035 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 248/1452] 203.208.60.103 () {38 vars in 816 bytes} [Sat Aug 25 10:51:40 2018] GET /projects/pytorch/caffe2/operators/rmac_regions_op.h => generated 890014 bytes in 128 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19580|app: 0|req: 192/1453] 203.208.60.88 () {38 vars in 801 bytes} [Sat Aug 25 10:54:26 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-global-average-pooling1-d.pbtxt => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 193/1454] 203.208.60.98 () {38 vars in 815 bytes} [Sat Aug 25 10:54:53 2018] GET /projects/pytorch/torch/distributions/constraints.py => generated 890014 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19580|app: 0|req: 194/1455] 203.208.60.35 () {38 vars in 815 bytes} [Sat Aug 25 10:57:26 2018] GET /projects/pytorch/caffe2/operators/conv_op_shared.cc => generated 890014 bytes in 126 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 208/1456] 203.208.60.12 () {38 vars in 709 bytes} [Sat Aug 25 10:58:07 2018] GET /projects/tensorflow/tensorflow/core/lib/monitoring/sampler.cc => generated 2729035 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 331/1457] 203.208.60.115 () {38 vars in 682 bytes} [Sat Aug 25 10:58:12 2018] GET /projects/tensorflow/tensorflow/contrib/training => generated 2729035 bytes in 257 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19582|app: 0|req: 209/1458] 203.208.60.53 () {38 vars in 737 bytes} [Sat Aug 25 11:00:10 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/string_length_op_test.py => generated 2729035 bytes in 296 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 210/1459] 203.208.60.126 () {38 vars in 818 bytes} [Sat Aug 25 11:00:18 2018] GET /projects/scikit-learn/sklearn/covariance/__init__.py => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 289/1460] 203.208.60.95 () {38 vars in 747 bytes} [Sat Aug 25 11:01:48 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_ApplyAdadelta.pbtxt => generated 2729036 bytes in 257 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 332/1461] 203.208.60.77 () {38 vars in 819 bytes} [Sat Aug 25 11:03:10 2018] GET /projects/scikit-learn/examples/multioutput/README.txt => generated 240518 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 333/1462] 203.208.60.103 () {38 vars in 774 bytes} [Sat Aug 25 11:05:28 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.nn.rnn_cell.-l-s-t-m-cell.pbtxt => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 334/1463] 203.208.60.116 () {38 vars in 639 bytes} [Sat Aug 25 11:05:35 2018] GET /files/?sort=latest&page=30 => generated 23303 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 290/1464] 203.208.60.19 () {38 vars in 819 bytes} [Sat Aug 25 11:06:02 2018] GET /projects/scikit-learn/sklearn/gaussian_process/gpr.py => generated 240518 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 249/1465] 139.162.106.181 () {32 vars in 368 bytes} [Sat Aug 25 11:07:55 2018] GET / => generated 9722 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 250/1466] 203.208.60.12 () {38 vars in 673 bytes} [Sat Aug 25 11:09:06 2018] GET /projects/tensorflow/third_party/fft2d/fft.h => generated 2729033 bytes in 258 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 251/1467] 203.208.60.108 () {38 vars in 722 bytes} [Sat Aug 25 11:09:09 2018] GET /projects/tensorflow/tensorflow/tools/lib_package/concat_licenses.sh => generated 2729035 bytes in 161 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 252/1468] 203.208.60.3 () {38 vars in 660 bytes} [Sat Aug 25 11:09:35 2018] GET /projects/tensorflow/third_party/fft2d => generated 2729033 bytes in 234 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 335/1469] 203.208.60.94 () {38 vars in 821 bytes} [Sat Aug 25 11:10:17 2018] GET /projects/scikit-learn/examples/linear_model/README.txt => generated 240518 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 291/1470] 203.208.60.115 () {38 vars in 822 bytes} [Sat Aug 25 11:11:47 2018] GET /projects/scikit-learn/examples/mixture/plot_gmm_sin.py => generated 240518 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 253/1471] 203.208.60.19 () {38 vars in 671 bytes} [Sat Aug 25 11:12:11 2018] GET /projects/tensorflow/third_party/systemlibs => generated 2729033 bytes in 219 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 336/1472] 203.208.60.17 () {38 vars in 637 bytes} [Sat Aug 25 11:12:50 2018] GET /projects/Notes/.gitignore => generated 39377 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Method Not Allowed (PROPFIND): / +[pid: 19584|app: 0|req: 337/1473] 134.175.180.218 () {34 vars in 2470 bytes} [Sat Aug 25 11:14:28 2018] PROPFIND / => generated 0 bytes in 17 msecs (HTTP/1.1 405) 4 headers in 150 bytes (1 switches on core 0) +Not Found: /webdav/ +[pid: 19580|app: 0|req: 195/1474] 134.175.180.218 () {32 vars in 378 bytes} [Sat Aug 25 11:14:28 2018] GET /webdav/ => generated 3089 bytes in 27 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /help.php +[pid: 19577|app: 0|req: 292/1475] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:29 2018] GET /help.php => generated 3089 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /java.php +[pid: 19580|app: 0|req: 196/1476] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:29 2018] GET /java.php => generated 3089 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /_query.php +[pid: 19586|app: 0|req: 254/1477] 134.175.180.218 () {34 vars in 416 bytes} [Sat Aug 25 11:14:29 2018] GET /_query.php => generated 3095 bytes in 10 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /test.php +[pid: 19578|app: 0|req: 189/1478] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:29 2018] GET /test.php => generated 3089 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /db_cts.php +[pid: 19577|app: 0|req: 293/1479] 134.175.180.218 () {34 vars in 416 bytes} [Sat Aug 25 11:14:29 2018] GET /db_cts.php => generated 3095 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /db_pma.php +[pid: 19582|app: 0|req: 211/1480] 134.175.180.218 () {34 vars in 416 bytes} [Sat Aug 25 11:14:29 2018] GET /db_pma.php => generated 3095 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /logon.php +[pid: 19582|app: 0|req: 212/1481] 134.175.180.218 () {34 vars in 414 bytes} [Sat Aug 25 11:14:29 2018] GET /logon.php => generated 3092 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /license.php +[pid: 19578|app: 0|req: 190/1482] 134.175.180.218 () {34 vars in 418 bytes} [Sat Aug 25 11:14:33 2018] GET /license.php => generated 3098 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /log.php +[pid: 19577|app: 0|req: 294/1483] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:33 2018] GET /log.php => generated 3086 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /hell.php +[pid: 19586|app: 0|req: 255/1484] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:33 2018] GET /hell.php => generated 3089 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pmd_online.php +[pid: 19578|app: 0|req: 191/1485] 134.175.180.218 () {34 vars in 424 bytes} [Sat Aug 25 11:14:33 2018] GET /pmd_online.php => generated 3107 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /x.php +[pid: 19584|app: 0|req: 338/1486] 134.175.180.218 () {34 vars in 406 bytes} [Sat Aug 25 11:14:33 2018] GET /x.php => generated 3080 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /shell.php +[pid: 19584|app: 0|req: 339/1487] 134.175.180.218 () {34 vars in 414 bytes} [Sat Aug 25 11:14:33 2018] GET /shell.php => generated 3092 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /desktop.ini.php +[pid: 19582|app: 0|req: 213/1488] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:33 2018] GET /desktop.ini.php => generated 3110 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /z.php +[pid: 19584|app: 0|req: 340/1489] 134.175.180.218 () {34 vars in 406 bytes} [Sat Aug 25 11:14:33 2018] GET /z.php => generated 3080 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /lala.php +[pid: 19582|app: 0|req: 214/1490] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:33 2018] GET /lala.php => generated 3089 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /lala-dpr.php +[pid: 19582|app: 0|req: 215/1491] 134.175.180.218 () {34 vars in 420 bytes} [Sat Aug 25 11:14:33 2018] GET /lala-dpr.php => generated 3101 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /wpo.php +[pid: 19577|app: 0|req: 295/1492] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:34 2018] GET /wpo.php => generated 3086 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /text.php +[pid: 19584|app: 0|req: 341/1493] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:34 2018] GET /text.php => generated 3089 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /wp-config.php +[pid: 19584|app: 0|req: 342/1494] 134.175.180.218 () {34 vars in 422 bytes} [Sat Aug 25 11:14:34 2018] GET /wp-config.php => generated 3104 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /muhstik.php +[pid: 19584|app: 0|req: 343/1495] 134.175.180.218 () {34 vars in 418 bytes} [Sat Aug 25 11:14:34 2018] GET /muhstik.php => generated 3098 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /muhstik2.php +[pid: 19584|app: 0|req: 344/1496] 134.175.180.218 () {34 vars in 420 bytes} [Sat Aug 25 11:14:34 2018] GET /muhstik2.php => generated 3101 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /muhstiks.php +[pid: 19584|app: 0|req: 345/1497] 134.175.180.218 () {34 vars in 420 bytes} [Sat Aug 25 11:14:34 2018] GET /muhstiks.php => generated 3101 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /muhstik-dpr.php +[pid: 19584|app: 0|req: 346/1498] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:34 2018] GET /muhstik-dpr.php => generated 3110 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /lol.php +[pid: 19584|app: 0|req: 347/1499] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:34 2018] GET /lol.php => generated 3086 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /uploader.php +[pid: 19584|app: 0|req: 348/1500] 134.175.180.218 () {34 vars in 420 bytes} [Sat Aug 25 11:14:34 2018] GET /uploader.php => generated 3101 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /cmx.php +[pid: 19577|app: 0|req: 296/1501] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:37 2018] GET /cmx.php => generated 3086 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +Not Found: /cmv.php +[pid: 19578|app: 0|req: 192/1502] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:37 2018] GET /cmv.php => generated 3086 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /cmdd.php +[pid: 19584|app: 0|req: 349/1503] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:37 2018] GET /cmdd.php => generated 3089 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /knal.php +[pid: 19578|app: 0|req: 193/1504] 134.175.180.218 () {34 vars in 412 bytes} [Sat Aug 25 11:14:37 2018] GET /knal.php => generated 3089 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /cmd.php +[pid: 19586|app: 0|req: 256/1505] 134.175.180.218 () {34 vars in 410 bytes} [Sat Aug 25 11:14:37 2018] GET /cmd.php => generated 3086 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /shell.php +[pid: 19586|app: 0|req: 257/1506] 134.175.180.218 () {34 vars in 414 bytes} [Sat Aug 25 11:14:37 2018] GET /shell.php => generated 3092 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /appserv.php +[pid: 19586|app: 0|req: 258/1507] 134.175.180.218 () {34 vars in 418 bytes} [Sat Aug 25 11:14:37 2018] GET /appserv.php => generated 3098 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /wuwu11.php +[pid: 19584|app: 0|req: 350/1508] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:37 2018] POST /wuwu11.php => generated 3096 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /xw.php +[pid: 19578|app: 0|req: 194/1509] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:37 2018] POST /xw.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /xw1.php +[pid: 19580|app: 0|req: 197/1510] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:37 2018] POST /xw1.php => generated 3087 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /9678.php +[pid: 19582|app: 0|req: 216/1511] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:38 2018] POST /9678.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /wc.php +[pid: 19577|app: 0|req: 297/1512] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:38 2018] POST /wc.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /xx.php +[pid: 19582|app: 0|req: 217/1513] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:38 2018] POST /xx.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /s.php +[pid: 19577|app: 0|req: 298/1514] 134.175.180.218 () {38 vars in 587 bytes} [Sat Aug 25 11:14:38 2018] POST /s.php => generated 3081 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /sheep.php +[pid: 19578|app: 0|req: 195/1515] 134.175.180.218 () {38 vars in 595 bytes} [Sat Aug 25 11:14:41 2018] POST /sheep.php => generated 3093 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /db.init.php +[pid: 19580|app: 0|req: 198/1516] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:41 2018] POST /db.init.php => generated 3099 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /db_session.init.php +[pid: 19586|app: 0|req: 259/1517] 134.175.180.218 () {38 vars in 615 bytes} [Sat Aug 25 11:14:41 2018] POST /db_session.init.php => generated 3123 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /db__.init.php +[pid: 19582|app: 0|req: 218/1518] 134.175.180.218 () {38 vars in 603 bytes} [Sat Aug 25 11:14:41 2018] POST /db__.init.php => generated 3105 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /wp-admins.php +[pid: 19577|app: 0|req: 299/1519] 134.175.180.218 () {38 vars in 603 bytes} [Sat Aug 25 11:14:41 2018] POST /wp-admins.php => generated 3105 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /m.php +[pid: 19577|app: 0|req: 300/1520] 134.175.180.218 () {38 vars in 606 bytes} [Sat Aug 25 11:14:41 2018] POST /m.php?pbid=open => generated 3091 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /db_dataml.php +[pid: 19582|app: 0|req: 219/1521] 134.175.180.218 () {38 vars in 603 bytes} [Sat Aug 25 11:14:41 2018] POST /db_dataml.php => generated 3105 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /db_desql.php +[pid: 19578|app: 0|req: 196/1522] 134.175.180.218 () {38 vars in 601 bytes} [Sat Aug 25 11:14:41 2018] POST /db_desql.php => generated 3102 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /mx.php +[pid: 19582|app: 0|req: 220/1523] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:41 2018] POST /mx.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /wshell.php +[pid: 19582|app: 0|req: 221/1524] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:41 2018] POST /wshell.php => generated 3096 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xshell.php +[pid: 19580|app: 0|req: 199/1525] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:42 2018] POST /xshell.php => generated 3096 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /qq.php +[pid: 19580|app: 0|req: 200/1526] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:42 2018] POST /qq.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /conflg.php +[pid: 19578|app: 0|req: 197/1527] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:42 2018] POST /conflg.php => generated 3096 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /lindex.php +[pid: 19584|app: 0|req: 351/1528] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:42 2018] POST /lindex.php => generated 3096 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpstudy.php +[pid: 19586|app: 0|req: 260/1529] 134.175.180.218 () {38 vars in 601 bytes} [Sat Aug 25 11:14:42 2018] POST /phpstudy.php => generated 3102 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpStudy.php +[pid: 19584|app: 0|req: 352/1530] 134.175.180.218 () {38 vars in 601 bytes} [Sat Aug 25 11:14:42 2018] POST /phpStudy.php => generated 3102 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /weixiao.php +[pid: 19584|app: 0|req: 353/1531] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:42 2018] POST /weixiao.php => generated 3099 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /feixiang.php +[pid: 19578|app: 0|req: 198/1532] 134.175.180.218 () {38 vars in 601 bytes} [Sat Aug 25 11:14:42 2018] POST /feixiang.php => generated 3102 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /ak47.php +[pid: 19578|app: 0|req: 199/1533] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:42 2018] POST /ak47.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /ak48.php +[pid: 19577|app: 0|req: 301/1534] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:42 2018] POST /ak48.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xiao.php +[pid: 19577|app: 0|req: 302/1535] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:42 2018] POST /xiao.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /yao.php +[pid: 19582|app: 0|req: 222/1536] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:43 2018] POST /yao.php => generated 3087 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /defect.php +[pid: 19580|app: 0|req: 201/1537] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:43 2018] POST /defect.php => generated 3096 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /webslee.php +[pid: 19584|app: 0|req: 354/1538] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:43 2018] POST /webslee.php => generated 3099 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /q.php +[pid: 19580|app: 0|req: 202/1539] 134.175.180.218 () {38 vars in 587 bytes} [Sat Aug 25 11:14:43 2018] POST /q.php => generated 3081 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pe.php +[pid: 19586|app: 0|req: 261/1540] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:43 2018] POST /pe.php => generated 3084 bytes in 10 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /hm.php +[pid: 19582|app: 0|req: 223/1541] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:43 2018] POST /hm.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /cainiao.php +[pid: 19584|app: 0|req: 355/1542] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:43 2018] POST /cainiao.php => generated 3099 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /zuoshou.php +[pid: 19582|app: 0|req: 224/1543] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:43 2018] POST /zuoshou.php => generated 3099 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /aotu.php +[pid: 19578|app: 0|req: 200/1544] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:45 2018] POST /aotu.php => generated 3090 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /cmd.php +[pid: 19578|app: 0|req: 201/1545] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:45 2018] POST /cmd.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /bak.php +[pid: 19582|app: 0|req: 225/1546] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:45 2018] POST /bak.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /system.php +[pid: 19586|app: 0|req: 262/1547] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:45 2018] POST /system.php => generated 3096 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /l7.php +[pid: 19577|app: 0|req: 303/1548] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:45 2018] POST /l7.php => generated 3084 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /l8.php +[pid: 19586|app: 0|req: 263/1549] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:45 2018] POST /l8.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /qaq.php +[pid: 19577|app: 0|req: 304/1550] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:45 2018] POST /qaq.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /q.php +[pid: 19582|app: 0|req: 226/1551] 134.175.180.218 () {38 vars in 587 bytes} [Sat Aug 25 11:14:45 2018] POST /q.php => generated 3081 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /56.php +[pid: 19577|app: 0|req: 305/1552] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:45 2018] POST /56.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /mz.php +[pid: 19577|app: 0|req: 306/1553] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:45 2018] POST /mz.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /xx.php +[pid: 19586|app: 0|req: 264/1554] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:46 2018] POST /xx.php => generated 3084 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /qaq.php +[pid: 19578|app: 0|req: 202/1555] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:46 2018] POST /qaq.php => generated 3087 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /qaq.php +[pid: 19578|app: 0|req: 203/1556] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:46 2018] POST /qaq.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /yumo.php +[pid: 19586|app: 0|req: 265/1557] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:46 2018] POST /yumo.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /min.php +[pid: 19586|app: 0|req: 266/1558] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:46 2018] POST /min.php => generated 3087 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /wan.php +[pid: 19578|app: 0|req: 204/1559] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:46 2018] POST /wan.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /wanan.php +[pid: 19580|app: 0|req: 203/1560] 134.175.180.218 () {38 vars in 595 bytes} [Sat Aug 25 11:14:46 2018] POST /wanan.php => generated 3093 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /ssaa.php +[pid: 19584|app: 0|req: 356/1561] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:46 2018] POST /ssaa.php => generated 3090 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /qq.php +[pid: 19584|app: 0|req: 357/1562] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:46 2018] POST /qq.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /aw.php +[pid: 19584|app: 0|req: 358/1563] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:46 2018] POST /aw.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /12.php +[pid: 19584|app: 0|req: 359/1564] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:46 2018] POST /12.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /hh.php +[pid: 19584|app: 0|req: 360/1565] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:47 2018] POST /hh.php => generated 3084 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /ak.php +[pid: 19580|app: 0|req: 204/1566] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:47 2018] POST /ak.php => generated 3084 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /ip.php +[pid: 19580|app: 0|req: 205/1567] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:47 2018] POST /ip.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /infoo.php +[pid: 19584|app: 0|req: 361/1568] 134.175.180.218 () {38 vars in 595 bytes} [Sat Aug 25 11:14:47 2018] POST /infoo.php => generated 3093 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /qq.php +[pid: 19586|app: 0|req: 267/1569] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:47 2018] POST /qq.php => generated 3084 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /qwe.php +[pid: 19586|app: 0|req: 268/1570] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:47 2018] POST /qwe.php => generated 3087 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /1213.php +[pid: 19582|app: 0|req: 227/1571] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:47 2018] POST /1213.php => generated 3090 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /post.php +[pid: 19582|app: 0|req: 228/1572] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:47 2018] POST /post.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /cache/global/img/gs.gif +[pid: 19577|app: 0|req: 307/1573] 80.82.70.187 () {32 vars in 429 bytes} [Sat Aug 25 11:14:48 2018] GET /cache/global/img/gs.gif => generated 3132 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /h1.php +[pid: 19584|app: 0|req: 362/1574] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:49 2018] POST /h1.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /test.php +[pid: 19584|app: 0|req: 363/1575] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:49 2018] POST /test.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /3.php +[pid: 19582|app: 0|req: 229/1576] 134.175.180.218 () {38 vars in 587 bytes} [Sat Aug 25 11:14:49 2018] POST /3.php => generated 3081 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpinfi.php +[pid: 19577|app: 0|req: 308/1577] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:49 2018] POST /phpinfi.php => generated 3099 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /aaaa.php +[pid: 19584|app: 0|req: 364/1578] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:49 2018] POST /aaaa.php => generated 3090 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /9510.php +[pid: 19578|app: 0|req: 205/1579] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:49 2018] POST /9510.php => generated 3090 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xiaoma.php +[pid: 19578|app: 0|req: 206/1580] 134.175.180.218 () {38 vars in 597 bytes} [Sat Aug 25 11:14:49 2018] POST /xiaoma.php => generated 3096 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /xiaomae.php +[pid: 19586|app: 0|req: 269/1581] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:49 2018] POST /xiaomae.php => generated 3099 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xiaomar.php +[pid: 19586|app: 0|req: 270/1582] 134.175.180.218 () {38 vars in 599 bytes} [Sat Aug 25 11:14:49 2018] POST /xiaomar.php => generated 3099 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /qq.php +[pid: 19582|app: 0|req: 230/1583] 134.175.180.218 () {38 vars in 589 bytes} [Sat Aug 25 11:14:50 2018] POST /qq.php => generated 3084 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /data.php +[pid: 19582|app: 0|req: 231/1584] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:50 2018] POST /data.php => generated 3090 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /log.php +[pid: 19580|app: 0|req: 206/1585] 134.175.180.218 () {38 vars in 591 bytes} [Sat Aug 25 11:14:50 2018] POST /log.php => generated 3087 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /fack.php +[pid: 19586|app: 0|req: 271/1586] 134.175.180.218 () {38 vars in 593 bytes} [Sat Aug 25 11:14:50 2018] POST /fack.php => generated 3090 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /angge.php +[pid: 19580|app: 0|req: 207/1587] 134.175.180.218 () {38 vars in 595 bytes} [Sat Aug 25 11:14:50 2018] POST /angge.php => generated 3093 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /index.php +[pid: 19580|app: 0|req: 208/1588] 134.175.180.218 () {34 vars in 414 bytes} [Sat Aug 25 11:14:50 2018] GET /index.php => generated 3092 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin/index.php +[pid: 19578|app: 0|req: 207/1589] 134.175.180.218 () {34 vars in 436 bytes} [Sat Aug 25 11:14:50 2018] GET /phpmyadmin/index.php => generated 3125 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpMyAdmin/index.php +[pid: 19584|app: 0|req: 365/1590] 134.175.180.218 () {34 vars in 436 bytes} [Sat Aug 25 11:14:50 2018] GET /phpMyAdmin/index.php => generated 3125 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pmd/index.php +[pid: 19577|app: 0|req: 309/1591] 134.175.180.218 () {34 vars in 422 bytes} [Sat Aug 25 11:14:50 2018] GET /pmd/index.php => generated 3104 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pma/index.php +[pid: 19584|app: 0|req: 366/1592] 134.175.180.218 () {34 vars in 422 bytes} [Sat Aug 25 11:14:50 2018] GET /pma/index.php => generated 3104 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /PMA/index.php +[pid: 19577|app: 0|req: 310/1593] 134.175.180.218 () {34 vars in 422 bytes} [Sat Aug 25 11:14:50 2018] GET /PMA/index.php => generated 3104 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /PMA2/index.php +[pid: 19580|app: 0|req: 209/1594] 134.175.180.218 () {34 vars in 424 bytes} [Sat Aug 25 11:14:50 2018] GET /PMA2/index.php => generated 3107 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pmamy/index.php +[pid: 19584|app: 0|req: 367/1595] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:51 2018] GET /pmamy/index.php => generated 3110 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /pmamy2/index.php +[pid: 19584|app: 0|req: 368/1596] 134.175.180.218 () {34 vars in 428 bytes} [Sat Aug 25 11:14:51 2018] GET /pmamy2/index.php => generated 3113 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /mysql/index.php +[pid: 19584|app: 0|req: 369/1597] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:51 2018] GET /mysql/index.php => generated 3110 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/index.php +[pid: 19584|app: 0|req: 370/1598] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:51 2018] GET /admin/index.php => generated 5582 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /db/index.php +[pid: 19584|app: 0|req: 371/1599] 134.175.180.218 () {34 vars in 420 bytes} [Sat Aug 25 11:14:51 2018] GET /db/index.php => generated 3101 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /dbadmin/index.php +[pid: 19584|app: 0|req: 372/1600] 134.175.180.218 () {34 vars in 430 bytes} [Sat Aug 25 11:14:51 2018] GET /dbadmin/index.php => generated 3116 bytes in 3 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /web/phpMyAdmin/index.php +[pid: 19582|app: 0|req: 232/1601] 134.175.180.218 () {34 vars in 444 bytes} [Sat Aug 25 11:14:51 2018] GET /web/phpMyAdmin/index.php => generated 3137 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/pma/index.php +[pid: 19584|app: 0|req: 373/1602] 134.175.180.218 () {34 vars in 434 bytes} [Sat Aug 25 11:14:51 2018] GET /admin/pma/index.php => generated 5594 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/PMA/index.php +[pid: 19586|app: 0|req: 272/1603] 134.175.180.218 () {34 vars in 434 bytes} [Sat Aug 25 11:14:51 2018] GET /admin/PMA/index.php => generated 5594 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/mysql/index.php +[pid: 19580|app: 0|req: 210/1604] 134.175.180.218 () {34 vars in 438 bytes} [Sat Aug 25 11:14:53 2018] GET /admin/mysql/index.php => generated 5600 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/mysql2/index.php +[pid: 19580|app: 0|req: 211/1605] 134.175.180.218 () {34 vars in 440 bytes} [Sat Aug 25 11:14:53 2018] GET /admin/mysql2/index.php => generated 5603 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /admin/phpmyadmin/index.php +[pid: 19582|app: 0|req: 233/1606] 134.175.180.218 () {34 vars in 448 bytes} [Sat Aug 25 11:14:53 2018] GET /admin/phpmyadmin/index.php => generated 5615 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /admin/phpMyAdmin/index.php +[pid: 19586|app: 0|req: 273/1607] 134.175.180.218 () {34 vars in 448 bytes} [Sat Aug 25 11:14:53 2018] GET /admin/phpMyAdmin/index.php => generated 5615 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /admin/phpmyadmin2/index.php +[pid: 19586|app: 0|req: 274/1608] 134.175.180.218 () {34 vars in 450 bytes} [Sat Aug 25 11:14:53 2018] GET /admin/phpmyadmin2/index.php => generated 5618 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /mysqladmin/index.php +[pid: 19578|app: 0|req: 208/1609] 134.175.180.218 () {34 vars in 436 bytes} [Sat Aug 25 11:14:53 2018] GET /mysqladmin/index.php => generated 3125 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /mysql-admin/index.php +[pid: 19577|app: 0|req: 311/1610] 134.175.180.218 () {34 vars in 438 bytes} [Sat Aug 25 11:14:53 2018] GET /mysql-admin/index.php => generated 3128 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpadmin/index.php +[pid: 19578|app: 0|req: 209/1611] 134.175.180.218 () {34 vars in 432 bytes} [Sat Aug 25 11:14:53 2018] GET /phpadmin/index.php => generated 3119 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpmyadmin0/index.php +[pid: 19577|app: 0|req: 312/1612] 134.175.180.218 () {34 vars in 438 bytes} [Sat Aug 25 11:14:53 2018] GET /phpmyadmin0/index.php => generated 3128 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin1/index.php +[pid: 19580|app: 0|req: 212/1613] 134.175.180.218 () {34 vars in 438 bytes} [Sat Aug 25 11:14:53 2018] GET /phpmyadmin1/index.php => generated 3128 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin2/index.php +[pid: 19582|app: 0|req: 234/1614] 134.175.180.218 () {34 vars in 438 bytes} [Sat Aug 25 11:14:53 2018] GET /phpmyadmin2/index.php => generated 3128 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /myadmin/index.php +[pid: 19582|app: 0|req: 235/1615] 134.175.180.218 () {34 vars in 430 bytes} [Sat Aug 25 11:14:54 2018] GET /myadmin/index.php => generated 3116 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /myadmin2/index.php +[pid: 19582|app: 0|req: 236/1616] 134.175.180.218 () {34 vars in 432 bytes} [Sat Aug 25 11:14:54 2018] GET /myadmin2/index.php => generated 3119 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /xampp/phpmyadmin/index.php +[pid: 19578|app: 0|req: 210/1617] 134.175.180.218 () {34 vars in 448 bytes} [Sat Aug 25 11:14:54 2018] GET /xampp/phpmyadmin/index.php => generated 3143 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpMyadmin_bak/index.php +[pid: 19580|app: 0|req: 213/1618] 134.175.180.218 () {34 vars in 444 bytes} [Sat Aug 25 11:14:54 2018] GET /phpMyadmin_bak/index.php => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /www/phpMyAdmin/index.php +[pid: 19578|app: 0|req: 211/1619] 134.175.180.218 () {34 vars in 444 bytes} [Sat Aug 25 11:14:54 2018] GET /www/phpMyAdmin/index.php => generated 3137 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /tools/phpMyAdmin/index.php +[pid: 19580|app: 0|req: 214/1620] 134.175.180.218 () {34 vars in 448 bytes} [Sat Aug 25 11:14:54 2018] GET /tools/phpMyAdmin/index.php => generated 3143 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpmyadmin-old/index.php +[pid: 19578|app: 0|req: 212/1621] 134.175.180.218 () {34 vars in 444 bytes} [Sat Aug 25 11:14:54 2018] GET /phpmyadmin-old/index.php => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpMyAdminold/index.php +[pid: 19582|app: 0|req: 237/1622] 134.175.180.218 () {34 vars in 442 bytes} [Sat Aug 25 11:14:54 2018] GET /phpMyAdminold/index.php => generated 3134 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /phpMyAdmin.old/index.php +[pid: 19582|app: 0|req: 238/1623] 134.175.180.218 () {34 vars in 444 bytes} [Sat Aug 25 11:14:54 2018] GET /phpMyAdmin.old/index.php => generated 3137 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /pma-old/index.php +[pid: 19582|app: 0|req: 239/1624] 134.175.180.218 () {34 vars in 430 bytes} [Sat Aug 25 11:14:54 2018] GET /pma-old/index.php => generated 3116 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /claroline/phpMyAdmin/index.php +[pid: 19584|app: 0|req: 374/1625] 134.175.180.218 () {34 vars in 456 bytes} [Sat Aug 25 11:14:54 2018] GET /claroline/phpMyAdmin/index.php => generated 3155 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /typo3/phpmyadmin/index.php +[pid: 19586|app: 0|req: 275/1626] 134.175.180.218 () {34 vars in 448 bytes} [Sat Aug 25 11:14:55 2018] GET /typo3/phpmyadmin/index.php => generated 3143 bytes in 4 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpma/index.php +[pid: 19577|app: 0|req: 313/1627] 134.175.180.218 () {34 vars in 426 bytes} [Sat Aug 25 11:14:55 2018] GET /phpma/index.php => generated 3110 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +Not Found: /phpmyadmin/phpmyadmin/index.php +[pid: 19577|app: 0|req: 314/1628] 134.175.180.218 () {34 vars in 458 bytes} [Sat Aug 25 11:14:55 2018] GET /phpmyadmin/phpmyadmin/index.php => generated 3158 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /phpMyAdmin/phpMyAdmin/index.php +[pid: 19584|app: 0|req: 375/1629] 134.175.180.218 () {34 vars in 458 bytes} [Sat Aug 25 11:14:55 2018] GET /phpMyAdmin/phpMyAdmin/index.php => generated 3158 bytes in 8 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 215/1630] 203.208.60.30 () {38 vars in 821 bytes} [Sat Aug 25 11:15:31 2018] GET /projects/pytorch/.jenkins/pytorch/print_sccache_log.py => generated 890014 bytes in 154 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 276/1631] 203.208.60.108 () {38 vars in 639 bytes} [Sat Aug 25 11:15:52 2018] GET /files/?sort=latest&page=16 => generated 23264 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 277/1632] 203.208.60.77 () {38 vars in 655 bytes} [Sat Aug 25 11:16:34 2018] GET /projects/Notes/AndroidManifest.xml => generated 39377 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 216/1633] 203.208.60.64 () {38 vars in 799 bytes} [Sat Aug 25 11:17:50 2018] GET /projects/pytorch/tools/setup_helpers/env.py => generated 890014 bytes in 143 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 315/1634] 203.208.60.126 () {38 vars in 625 bytes} [Sat Aug 25 11:20:12 2018] GET /?sort=hot&page=2015 => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 316/1635] 203.208.60.26 () {38 vars in 799 bytes} [Sat Aug 25 11:21:29 2018] GET /projects/tensorflow/tensorflow/go/README.md => generated 2729036 bytes in 264 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 376/1636] 203.208.60.21 () {38 vars in 801 bytes} [Sat Aug 25 11:22:21 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.estimator.export.-classification-output.pbtxt => generated 2729035 bytes in 275 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 317/1637] 111.231.236.170 () {26 vars in 279 bytes} [Sat Aug 25 11:22:48 2018] GET / => generated 9722 bytes in 75 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 278/1638] 111.231.236.170 () {26 vars in 279 bytes} [Sat Aug 25 11:22:49 2018] GET / => generated 9722 bytes in 30 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 279/1639] 203.208.60.77 () {38 vars in 677 bytes} [Sat Aug 25 11:23:12 2018] GET /projects/tensorflow/tensorflow/examples/learn => generated 2729034 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 377/1640] 203.208.60.37 () {38 vars in 809 bytes} [Sat Aug 25 11:23:17 2018] GET /projects/pytorch/scripts/onnx/install-develop.sh => generated 890012 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 378/1641] 203.208.60.109 () {38 vars in 625 bytes} [Sat Aug 25 11:23:51 2018] GET /?sort=hot&page=2012 => generated 9722 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 318/1642] 203.208.60.88 () {38 vars in 809 bytes} [Sat Aug 25 11:26:20 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/proto => generated 2729035 bytes in 289 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 379/1643] 203.208.60.123 () {38 vars in 642 bytes} [Sat Aug 25 11:27:33 2018] GET /projects/tensorflow/LICENSE => generated 2729036 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 213/1644] 203.208.60.13 () {38 vars in 873 bytes} [Sat Aug 25 11:30:10 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/_sklearn.py => generated 2729035 bytes in 266 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 240/1645] 203.208.60.28 () {38 vars in 867 bytes} [Sat Aug 25 11:31:54 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/python/python_state_test.py => generated 2729035 bytes in 291 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 380/1646] 203.208.60.49 () {38 vars in 713 bytes} [Sat Aug 25 11:32:10 2018] GET / => generated 9722 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19582|app: 0|req: 241/1647] 203.208.60.80 () {38 vars in 496 bytes} [Sat Aug 25 11:32:14 2018] GET /favicon.ico => generated 3104 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 381/1648] 203.208.60.116 () {38 vars in 617 bytes} [Sat Aug 25 11:34:53 2018] GET /files/?page=110 => generated 23202 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 280/1649] 203.208.60.1 () {38 vars in 623 bytes} [Sat Aug 25 11:34:54 2018] GET /?sort=hot&page=2013 => generated 9722 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 242/1650] 203.208.60.69 () {38 vars in 883 bytes} [Sat Aug 25 11:36:03 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/onehot_categorical.py => generated 2729035 bytes in 289 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 214/1651] 203.208.60.55 () {38 vars in 857 bytes} [Sat Aug 25 11:37:40 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/python/python_state.py => generated 2729035 bytes in 294 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 217/1652] 203.208.60.12 () {38 vars in 638 bytes} [Sat Aug 25 11:38:26 2018] GET /files/?sort=latest&page=36 => generated 23473 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 243/1653] 203.208.60.30 () {38 vars in 624 bytes} [Sat Aug 25 11:38:33 2018] GET /?sort=hot&page=2009 => generated 9722 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 218/1654] 203.208.60.121 () {38 vars in 765 bytes} [Sat Aug 25 11:39:29 2018] GET /files/?sort=latest&page=41 => generated 23469 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 215/1655] 203.208.60.37 () {38 vars in 764 bytes} [Sat Aug 25 11:39:43 2018] GET /files/?sort=latest&page=43 => generated 23341 bytes in 112 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 219/1656] 203.208.60.12 () {38 vars in 764 bytes} [Sat Aug 25 11:40:11 2018] GET /files/?sort=latest&page=42 => generated 23449 bytes in 120 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 281/1657] 203.208.60.19 () {38 vars in 764 bytes} [Sat Aug 25 11:40:45 2018] GET /files/?sort=latest&page=44 => generated 23487 bytes in 127 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 382/1658] 203.208.60.82 () {38 vars in 624 bytes} [Sat Aug 25 11:40:47 2018] GET /?sort=hot&page=2034 => generated 9722 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 383/1659] 203.208.60.53 () {38 vars in 624 bytes} [Sat Aug 25 11:40:50 2018] GET /?sort=hot&page=2033 => generated 9722 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 282/1660] 203.208.60.97 () {38 vars in 624 bytes} [Sat Aug 25 11:40:58 2018] GET /?sort=hot&page=2035 => generated 9722 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 216/1661] 203.208.60.64 () {38 vars in 764 bytes} [Sat Aug 25 11:41:03 2018] GET /files/?sort=latest&page=46 => generated 23433 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 217/1662] 203.208.60.126 () {38 vars in 866 bytes} [Sat Aug 25 11:41:07 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/plugin/trt_plugin_factory.cc => generated 2729035 bytes in 188 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19584|app: 0|req: 384/1663] 203.208.60.92 () {38 vars in 764 bytes} [Sat Aug 25 11:41:18 2018] GET /files/?sort=latest&page=45 => generated 23615 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 385/1664] 203.208.60.1 () {38 vars in 792 bytes} [Sat Aug 25 11:41:21 2018] GET /projects/scikit-learn/examples/bicluster => generated 240518 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 386/1665] 203.208.60.77 () {38 vars in 805 bytes} [Sat Aug 25 11:41:25 2018] GET /projects/scikit-learn/examples/model_selection => generated 240518 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 244/1666] 203.208.60.92 () {38 vars in 837 bytes} [Sat Aug 25 11:41:31 2018] GET /projects/scikit-learn/examples/plot_kernel_ridge_regression.py => generated 240519 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 387/1667] 203.208.60.35 () {38 vars in 764 bytes} [Sat Aug 25 11:41:38 2018] GET /files/?sort=latest&page=47 => generated 23581 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 283/1668] 203.208.60.74 () {38 vars in 764 bytes} [Sat Aug 25 11:41:46 2018] GET /files/?sort=latest&page=51 => generated 23447 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 284/1669] 203.208.60.64 () {38 vars in 764 bytes} [Sat Aug 25 11:41:53 2018] GET /files/?sort=latest&page=49 => generated 23419 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 319/1670] 203.208.60.44 () {38 vars in 764 bytes} [Sat Aug 25 11:42:00 2018] GET /files/?sort=latest&page=50 => generated 23581 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 320/1671] 203.208.60.78 () {38 vars in 764 bytes} [Sat Aug 25 11:42:07 2018] GET /files/?sort=latest&page=48 => generated 23609 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 321/1672] 203.208.60.3 () {38 vars in 623 bytes} [Sat Aug 25 11:42:14 2018] GET /?sort=hot&page=2010 => generated 9722 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 285/1673] 203.208.60.126 () {38 vars in 816 bytes} [Sat Aug 25 11:42:15 2018] GET /projects/scikit-learn/examples/bicluster/README.txt => generated 240518 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 286/1674] 203.208.60.19 () {38 vars in 827 bytes} [Sat Aug 25 11:42:22 2018] GET /projects/scikit-learn/examples/model_selection/README.txt => generated 240518 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 287/1675] 203.208.60.31 () {38 vars in 843 bytes} [Sat Aug 25 11:42:29 2018] GET /projects/scikit-learn/examples/ensemble/plot_adaboost_twoclass.py => generated 240518 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 388/1676] 203.208.60.32 () {38 vars in 707 bytes} [Sat Aug 25 11:42:46 2018] GET /projects/scikit-learn/examples/datasets/plot_iris_dataset.py => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 288/1677] 203.208.60.127 () {38 vars in 810 bytes} [Sat Aug 25 11:43:10 2018] GET /projects/scikit-learn/examples/feature_selection => generated 240518 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 289/1678] 203.208.60.87 () {38 vars in 851 bytes} [Sat Aug 25 11:43:25 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/tooling_util_test.cc => generated 2729035 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 245/1679] 203.208.60.32 () {38 vars in 813 bytes} [Sat Aug 25 11:44:13 2018] GET /projects/scikit-learn/examples/cross_decomposition => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 290/1680] 203.208.60.30 () {38 vars in 665 bytes} [Sat Aug 25 11:45:16 2018] GET /projects/scikit-learn/examples/datasets => generated 240518 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 389/1681] 203.208.60.64 () {38 vars in 831 bytes} [Sat Aug 25 11:45:51 2018] GET /projects/scikit-learn/examples/feature_selection/README.txt => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 390/1682] 203.208.60.105 () {38 vars in 625 bytes} [Sat Aug 25 11:45:54 2018] GET /?sort=hot&page=2014 => generated 9722 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 322/1683] 203.208.60.53 () {38 vars in 875 bytes} [Sat Aug 25 11:46:17 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/plugin/trt_plugin_factory_test.cc => generated 2729035 bytes in 264 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 323/1684] 203.208.60.94 () {38 vars in 847 bytes} [Sat Aug 25 11:47:21 2018] GET /projects/scikit-learn/examples/feature_selection/plot_rfe_digits.py => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 218/1685] 203.208.60.35 () {38 vars in 624 bytes} [Sat Aug 25 11:49:35 2018] GET /?sort=hot&page=2016 => generated 9722 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 219/1686] 203.208.60.44 () {38 vars in 881 bytes} [Sat Aug 25 11:50:09 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_LookupTableExport.pbtxt => generated 2729036 bytes in 278 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 220/1687] 203.208.60.70 () {38 vars in 887 bytes} [Sat Aug 25 11:52:02 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_UnsortedSegmentMin.pbtxt => generated 2729036 bytes in 261 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +Internal Server Error: /projects/45/files/3312/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19577|app: 0|req: 324/1688] 203.208.60.78 () {38 vars in 759 bytes} [Sat Aug 25 11:52:41 2018] GET /projects/45/files/3312/ => generated 77321 bytes in 94 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 221/1689] 203.208.60.127 () {38 vars in 625 bytes} [Sat Aug 25 11:53:15 2018] GET /?sort=hot&page=2017 => generated 9722 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 391/1690] 203.208.60.1 () {38 vars in 613 bytes} [Sat Aug 25 11:55:04 2018] GET /files/?page=11 => generated 23259 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 291/1691] 203.208.60.95 () {38 vars in 604 bytes} [Sat Aug 25 11:55:27 2018] GET /?page=342 => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 325/1692] 203.208.60.69 () {38 vars in 865 bytes} [Sat Aug 25 11:55:55 2018] GET /projects/tensorflow/tensorflow/contrib/mpi_collectives/mpi_allreduce_test.py => generated 2729035 bytes in 272 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 392/1693] 203.208.60.105 () {38 vars in 625 bytes} [Sat Aug 25 11:56:56 2018] GET /?sort=hot&page=2030 => generated 9722 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 222/1694] 203.208.60.64 () {38 vars in 851 bytes} [Sat Aug 25 11:57:47 2018] GET /projects/tensorflow/tensorflow/contrib/lite/toco/export_tensorflow.cc => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 220/1695] 203.208.60.109 () {38 vars in 605 bytes} [Sat Aug 25 11:58:48 2018] GET /?page=243 => generated 9722 bytes in 81 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 393/1696] 203.208.60.74 () {38 vars in 614 bytes} [Sat Aug 25 11:59:59 2018] GET /files/?page=12 => generated 23244 bytes in 103 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 246/1697] 203.208.60.35 () {38 vars in 630 bytes} [Sat Aug 25 12:00:36 2018] GET /?sort=latest&page=2031 => generated 9705 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 326/1698] 203.208.60.17 () {38 vars in 845 bytes} [Sat Aug 25 12:00:39 2018] GET /projects/tensorflow/tensorflow/core/platform/default/fingerprint.h => generated 2729036 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 394/1699] 203.208.60.105 () {38 vars in 996 bytes} [Sat Aug 25 12:03:31 2018] GET /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs => generated 2729035 bytes in 238 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 292/1700] 203.208.60.76 () {38 vars in 630 bytes} [Sat Aug 25 12:04:17 2018] GET /?sort=latest&page=2028 => generated 9705 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 395/1701] 78.30.230.82 () {26 vars in 276 bytes} [Sat Aug 25 12:05:26 2018] GET / => generated 9722 bytes in 68 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 396/1702] 203.208.60.28 () {38 vars in 881 bytes} [Sat Aug 25 12:06:23 2018] GET /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/res/drawable-mdpi => generated 2729035 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 327/1703] 203.208.60.97 () {38 vars in 661 bytes} [Sat Aug 25 12:06:24 2018] GET /projects/pytorch/binaries/run_plan.cc => generated 890014 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19584|app: 0|req: 397/1704] 203.208.60.32 () {38 vars in 616 bytes} [Sat Aug 25 12:07:19 2018] GET /files/?page=233 => generated 23302 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 398/1705] 203.208.60.26 () {38 vars in 849 bytes} [Sat Aug 25 12:07:53 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/pyct/parser_test.py => generated 2729035 bytes in 220 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 221/1706] 203.208.60.105 () {38 vars in 743 bytes} [Sat Aug 25 12:07:54 2018] GET /files/?page=237 => generated 23009 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 399/1707] 203.208.60.126 () {38 vars in 743 bytes} [Sat Aug 25 12:07:55 2018] GET /files/?page=236 => generated 23084 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 400/1708] 203.208.60.80 () {38 vars in 742 bytes} [Sat Aug 25 12:07:56 2018] GET /files/?page=234 => generated 23417 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 223/1709] 203.208.60.97 () {38 vars in 871 bytes} [Sat Aug 25 12:07:57 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python/head_impl.py => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 0) +[pid: 19578|app: 0|req: 224/1710] 203.208.60.31 () {38 vars in 630 bytes} [Sat Aug 25 12:07:59 2018] GET /?sort=latest&page=2040 => generated 9705 bytes in 23 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 247/1711] 203.208.60.1 () {38 vars in 868 bytes} [Sat Aug 25 12:08:00 2018] GET /projects/tensorflow/tensorflow/compiler/tf2xla/kernels/stateless_random_ops.cc => generated 2729035 bytes in 179 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 248/1712] 203.208.60.64 () {38 vars in 887 bytes} [Sat Aug 25 12:08:00 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/estimators_test.py => generated 2729035 bytes in 153 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 328/1713] 203.208.60.53 () {38 vars in 895 bytes} [Sat Aug 25 12:10:28 2018] GET /projects/tensorflow/tensorflow/contrib/distributions/python/ops/vector_sinh_arcsinh_diag.py => generated 2729035 bytes in 261 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 401/1714] 203.208.60.126 () {38 vars in 864 bytes} [Sat Aug 25 12:11:09 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/layout_optimizer.cc => generated 2729036 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19584|app: 0|req: 402/1715] 203.208.60.1 () {38 vars in 623 bytes} [Sat Aug 25 12:11:38 2018] GET /?sort=hot&page=2026 => generated 9722 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 403/1716] 5.233.157.186 () {32 vars in 461 bytes} [Sat Aug 25 12:12:07 2018] GET / => generated 9722 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 329/1717] 203.208.60.44 () {38 vars in 845 bytes} [Sat Aug 25 12:12:08 2018] GET /projects/tensorflow/tensorflow/core/kernels/spectrogram_op_test.cc => generated 2729036 bytes in 220 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 1) +[pid: 19586|app: 0|req: 293/1718] 203.208.60.37 () {38 vars in 845 bytes} [Sat Aug 25 12:12:23 2018] GET /projects/tensorflow/tensorflow/compiler/aot/test_graph_tfadd.pbtxt => generated 2729035 bytes in 205 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19577|app: 0|req: 330/1719] 203.208.60.98 () {38 vars in 630 bytes} [Sat Aug 25 12:15:18 2018] GET /?sort=latest&page=2027 => generated 9705 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Internal Server Error: /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tensorflow/contrib/gan/python/estimator/python' +[pid: 19577|app: 0|req: 331/1720] 203.208.60.82 () {38 vars in 845 bytes} [Sat Aug 25 12:16:05 2018] GET /projects/tensorflow/tensorflow/contrib/gan/python/estimator/python => generated 84763 bytes in 423 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 294/1721] 203.208.60.82 () {38 vars in 859 bytes} [Sat Aug 25 12:17:53 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/pyct/transformer_test.py => generated 2729035 bytes in 237 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19584|app: 0|req: 404/1722] 203.208.60.32 () {38 vars in 624 bytes} [Sat Aug 25 12:18:58 2018] GET /?sort=hot&page=2021 => generated 9722 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19584|app: 0|req: 405/1723] 203.208.60.98 () {38 vars in 496 bytes} [Sat Aug 25 12:19:02 2018] GET /favicon.ico => generated 3104 bytes in 9 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 295/1724] 203.208.60.64 () {38 vars in 895 bytes} [Sat Aug 25 12:20:45 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/projector_config.proto => generated 2729035 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19582|app: 0|req: 249/1725] 203.208.60.21 () {38 vars in 624 bytes} [Sat Aug 25 12:22:39 2018] GET /?sort=hot&page=2019 => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 222/1726] 203.208.60.50 () {38 vars in 869 bytes} [Sat Aug 25 12:23:37 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/linear.py => generated 2729035 bytes in 288 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 296/1727] 203.208.60.95 () {38 vars in 630 bytes} [Sat Aug 25 12:26:20 2018] GET /?sort=latest&page=2038 => generated 9705 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 406/1728] 203.208.60.87 () {38 vars in 837 bytes} [Sat Aug 25 12:26:29 2018] GET /projects/tensorflow/tensorflow/contrib/mpi_collectives/ring.cc => generated 2729035 bytes in 245 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19580|app: 0|req: 223/1729] 203.208.60.76 () {38 vars in 624 bytes} [Sat Aug 25 12:30:00 2018] GET /?sort=hot&page=2029 => generated 9722 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 332/1730] 203.208.60.127 () {38 vars in 820 bytes} [Sat Aug 25 12:31:04 2018] GET /projects/pytorch/aten/src/ATen/test/test_parallel.cpp => generated 890013 bytes in 137 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 19584|app: 0|req: 407/1731] 203.208.60.116 () {38 vars in 888 bytes} [Sat Aug 25 12:32:14 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_MutableHashTableV2.pbtxt => generated 2729036 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 408/1732] 203.208.60.95 () {38 vars in 624 bytes} [Sat Aug 25 12:33:41 2018] GET /?sort=hot&page=2011 => generated 9722 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 297/1733] 203.208.60.92 () {38 vars in 859 bytes} [Sat Aug 25 12:35:06 2018] GET /projects/tensorflow/tensorflow/contrib/framework/testdata/keyword_new.txt => generated 2729035 bytes in 224 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 224/1734] 203.208.60.87 () {38 vars in 715 bytes} [Sat Aug 25 12:35:37 2018] GET /projects/scikit-learn/examples/ensemble/plot_isolation_forest.py => generated 240518 bytes in 93 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 333/1735] 203.208.60.74 () {38 vars in 638 bytes} [Sat Aug 25 12:35:40 2018] GET /files/?sort=latest&page=51 => generated 23447 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 334/1736] 203.208.60.94 () {38 vars in 638 bytes} [Sat Aug 25 12:35:43 2018] GET /files/?sort=latest&page=50 => generated 23581 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 225/1737] 203.208.60.50 () {38 vars in 638 bytes} [Sat Aug 25 12:35:46 2018] GET /files/?sort=latest&page=52 => generated 23485 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 409/1738] 203.208.60.55 () {38 vars in 705 bytes} [Sat Aug 25 12:35:49 2018] GET /projects/scikit-learn/examples/ensemble/plot_forest_iris.py => generated 240518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 298/1739] 203.208.60.103 () {38 vars in 710 bytes} [Sat Aug 25 12:35:53 2018] GET /projects/scikit-learn/examples/ensemble/plot_bias_variance.py => generated 240518 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 225/1740] 203.208.60.115 () {38 vars in 710 bytes} [Sat Aug 25 12:35:56 2018] GET /projects/scikit-learn/examples/ensemble/plot_voting_probas.py => generated 240518 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 410/1741] 203.208.60.97 () {38 vars in 764 bytes} [Sat Aug 25 12:36:04 2018] GET /files/?sort=latest&page=57 => generated 23467 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 335/1742] 203.208.60.127 () {38 vars in 790 bytes} [Sat Aug 25 12:36:51 2018] GET /projects/scikit-learn/examples/cluster => generated 240518 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 299/1743] 203.208.60.123 () {38 vars in 844 bytes} [Sat Aug 25 12:36:51 2018] GET /projects/scikit-learn/examples/cluster/plot_kmeans_assumptions.py => generated 240518 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 300/1744] 203.208.60.30 () {38 vars in 764 bytes} [Sat Aug 25 12:36:55 2018] GET /files/?sort=latest&page=59 => generated 23593 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 301/1745] 203.208.60.13 () {38 vars in 764 bytes} [Sat Aug 25 12:37:01 2018] GET /files/?sort=latest&page=60 => generated 23407 bytes in 78 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 302/1746] 203.208.60.30 () {38 vars in 764 bytes} [Sat Aug 25 12:37:06 2018] GET /files/?sort=latest&page=62 => generated 23415 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 226/1747] 203.208.60.76 () {38 vars in 624 bytes} [Sat Aug 25 12:37:21 2018] GET /?sort=hot&page=2022 => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 411/1748] 203.208.60.64 () {38 vars in 764 bytes} [Sat Aug 25 12:37:23 2018] GET /files/?sort=latest&page=58 => generated 23503 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 412/1749] 203.208.60.30 () {38 vars in 859 bytes} [Sat Aug 25 12:37:58 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_Zeta.pbtxt => generated 2729036 bytes in 266 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 336/1750] 203.208.60.44 () {38 vars in 797 bytes} [Sat Aug 25 12:38:07 2018] GET /projects/scikit-learn/examples/calibration => generated 240518 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 337/1751] 203.208.60.64 () {38 vars in 729 bytes} [Sat Aug 25 12:38:25 2018] GET /projects/scikit-learn/examples/ensemble/plot_random_forest_embedding.py => generated 240518 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 338/1752] 203.208.60.55 () {38 vars in 755 bytes} [Sat Aug 25 12:40:26 2018] GET /projects/scikit-learn/examples/ensemble/plot_random_forest_regression_multioutput.py => generated 240518 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 339/1753] 203.208.60.76 () {38 vars in 799 bytes} [Sat Aug 25 12:40:29 2018] GET /projects/scikit-learn/examples/applications => generated 240518 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 340/1754] 203.208.60.82 () {38 vars in 630 bytes} [Sat Aug 25 12:41:01 2018] GET /?sort=latest&page=2053 => generated 9705 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 341/1755] 203.208.60.78 () {38 vars in 839 bytes} [Sat Aug 25 12:41:17 2018] GET /projects/tensorflow/tensorflow/core/ops/stateless_random_ops.cc => generated 2729036 bytes in 202 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 342/1756] 203.208.60.64 () {38 vars in 805 bytes} [Sat Aug 25 12:41:51 2018] GET /projects/scikit-learn/examples/neural_networks => generated 240518 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 303/1757] 203.208.60.37 () {38 vars in 624 bytes} [Sat Aug 25 12:44:42 2018] GET /?sort=hot&page=2027 => generated 9722 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 413/1758] 203.208.60.37 () {38 vars in 901 bytes} [Sat Aug 25 12:45:05 2018] GET /projects/tensorflow/tensorflow/contrib/framework/testdata/bundle_checkpoint_vocab_with_oov.txt => generated 2729035 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19582|app: 0|req: 250/1759] 203.208.60.82 () {38 vars in 825 bytes} [Sat Aug 25 12:46:35 2018] GET /projects/pytorch/aten/src/THCUNN/MultiMarginCriterion.cu => generated 890013 bytes in 131 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 19582|app: 0|req: 251/1760] 203.208.60.88 () {38 vars in 630 bytes} [Sat Aug 25 12:48:23 2018] GET /?sort=latest&page=2060 => generated 9705 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 304/1761] 203.208.60.32 () {38 vars in 875 bytes} [Sat Aug 25 12:50:59 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_QuantizedRelu6.pbtxt => generated 2729036 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 343/1762] 203.208.60.10 () {38 vars in 630 bytes} [Sat Aug 25 12:52:03 2018] GET /?sort=latest&page=2045 => generated 9705 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 344/1763] 203.208.60.62 () {38 vars in 857 bytes} [Sat Aug 25 12:52:21 2018] GET /projects/tensorflow/tensorflow/core/api_def/base_api/api_def_Where.pbtxt => generated 2729035 bytes in 250 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 345/1764] 203.208.60.78 () {38 vars in 843 bytes} [Sat Aug 25 12:55:13 2018] GET /projects/tensorflow/tensorflow/contrib/autograph/pyct/ast_util.py => generated 2729035 bytes in 282 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 227/1765] 203.208.60.92 () {38 vars in 630 bytes} [Sat Aug 25 12:55:44 2018] GET /?sort=latest&page=2025 => generated 9705 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 252/1766] 203.208.60.77 () {38 vars in 681 bytes} [Sat Aug 25 12:55:57 2018] GET /projects/scikit-learn/examples/svm/plot_iris.py => generated 240518 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 253/1767] 203.208.60.8 () {38 vars in 672 bytes} [Sat Aug 25 12:55:58 2018] GET /projects/scikit-learn/examples/applications => generated 240518 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 226/1768] 203.208.60.87 () {38 vars in 705 bytes} [Sat Aug 25 12:55:59 2018] GET /projects/scikit-learn/examples/plot_kernel_approximation.py => generated 240518 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 414/1769] 203.208.60.50 () {38 vars in 638 bytes} [Sat Aug 25 12:56:00 2018] GET /files/?sort=latest&page=63 => generated 23358 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 305/1770] 203.208.60.32 () {38 vars in 783 bytes} [Sat Aug 25 12:58:03 2018] GET /projects/scikit-learn/examples/tree => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 227/1771] 203.208.60.55 () {38 vars in 793 bytes} [Sat Aug 25 12:58:03 2018] GET /projects/scikit-learn/examples/neighbors => generated 240518 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 228/1772] 203.208.60.121 () {38 vars in 765 bytes} [Sat Aug 25 12:58:04 2018] GET /files/?sort=latest&page=66 => generated 23328 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 229/1773] 203.208.60.121 () {38 vars in 765 bytes} [Sat Aug 25 12:58:05 2018] GET /files/?sort=latest&page=67 => generated 23473 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 306/1774] 203.208.60.37 () {38 vars in 764 bytes} [Sat Aug 25 12:58:06 2018] GET /files/?sort=latest&page=68 => generated 23312 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 307/1775] 203.208.60.64 () {38 vars in 857 bytes} [Sat Aug 25 12:58:08 2018] GET /projects/tensorflow/tensorflow/core/framework/unique_tensor_references.h => generated 2729036 bytes in 181 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 230/1776] 203.208.60.82 () {38 vars in 638 bytes} [Sat Aug 25 12:58:49 2018] GET /files/?sort=latest&page=64 => generated 23167 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 415/1777] 203.208.60.95 () {38 vars in 630 bytes} [Sat Aug 25 12:59:24 2018] GET /?sort=latest&page=2029 => generated 9705 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 416/1778] 203.208.60.70 () {38 vars in 773 bytes} [Sat Aug 25 13:00:18 2018] GET /projects/scikit-learn/site.cfg => generated 240519 bytes in 62 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 417/1779] 203.208.60.92 () {38 vars in 875 bytes} [Sat Aug 25 13:01:18 2018] GET /projects/tensorflow/tensorflow/core/distributed_runtime/rpc/grpc_remote_worker.cc => generated 2729036 bytes in 270 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 231/1780] 203.208.60.13 () {38 vars in 773 bytes} [Sat Aug 25 13:01:21 2018] GET /projects/scikit-learn/examples => generated 240518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 254/1781] 203.208.60.44 () {38 vars in 631 bytes} [Sat Aug 25 13:03:05 2018] GET /projects/Notes/res/raw => generated 39375 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 232/1782] 203.208.60.64 () {38 vars in 849 bytes} [Sat Aug 25 13:05:06 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/plugins/projector => generated 2729035 bytes in 275 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 346/1783] 203.208.60.82 () {38 vars in 849 bytes} [Sat Aug 25 13:06:42 2018] GET /projects/pytorch/aten/src/THC/generated/THCTensorMathCompareShort.cu => generated 890013 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19577|app: 0|req: 347/1784] 203.208.60.77 () {38 vars in 630 bytes} [Sat Aug 25 13:06:45 2018] GET /?sort=latest&page=2021 => generated 9705 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 233/1785] 196.52.43.121 () {30 vars in 373 bytes} [Sat Aug 25 13:09:18 2018] GET / => generated 9722 bytes in 75 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 418/1786] 203.208.60.32 () {38 vars in 630 bytes} [Sat Aug 25 13:10:28 2018] GET /?sort=latest&page=2024 => generated 9705 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 228/1787] 203.208.60.1 () {38 vars in 741 bytes} [Sat Aug 25 13:10:35 2018] GET /files/?page=344 => generated 23063 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 419/1788] 203.208.60.49 () {38 vars in 783 bytes} [Sat Aug 25 13:11:36 2018] GET /projects/pytorch/caffe2/core/net.cc => generated 890014 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 234/1789] 203.208.60.78 () {38 vars in 742 bytes} [Sat Aug 25 13:11:40 2018] GET /files/?page=347 => generated 23337 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 235/1790] 203.208.60.32 () {38 vars in 742 bytes} [Sat Aug 25 13:11:47 2018] GET /files/?page=348 => generated 23280 bytes in 69 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 420/1791] 203.208.60.32 () {38 vars in 743 bytes} [Sat Aug 25 13:11:58 2018] GET /projects/scikit-learn/examples/applications/wikipedia_principal_eigenvector.py => generated 240518 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19586|app: 0|req: 308/1792] 203.208.60.10 () {38 vars in 663 bytes} [Sat Aug 25 13:12:10 2018] GET /projects/scikit-learn/examples/cluster => generated 240518 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19586|app: 0|req: 309/1793] 203.208.60.94 () {38 vars in 671 bytes} [Sat Aug 25 13:12:22 2018] GET /projects/scikit-learn/examples/calibration => generated 240518 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19580|app: 0|req: 229/1794] 203.208.60.97 () {38 vars in 742 bytes} [Sat Aug 25 13:12:28 2018] GET /files/?page=204 => generated 22982 bytes in 82 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 421/1795] 203.208.60.49 () {38 vars in 742 bytes} [Sat Aug 25 13:13:09 2018] GET /files/?page=353 => generated 23148 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 422/1796] 203.208.60.80 () {38 vars in 616 bytes} [Sat Aug 25 13:13:31 2018] GET /files/?page=344 => generated 23063 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 423/1797] 203.208.60.94 () {38 vars in 630 bytes} [Sat Aug 25 13:14:05 2018] GET /?sort=latest&page=2033 => generated 9705 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 424/1798] 203.208.60.35 () {38 vars in 742 bytes} [Sat Aug 25 13:15:38 2018] GET /files/?page=104 => generated 23165 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 425/1799] 203.208.60.26 () {38 vars in 742 bytes} [Sat Aug 25 13:15:44 2018] GET /files/?page=341 => generated 23430 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 255/1800] 203.208.60.32 () {38 vars in 616 bytes} [Sat Aug 25 13:17:11 2018] GET /files/?page=356 => generated 23215 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 426/1801] 203.208.60.70 () {38 vars in 630 bytes} [Sat Aug 25 13:17:46 2018] GET /?sort=latest&page=2041 => generated 9705 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 310/1802] 203.208.60.64 () {38 vars in 742 bytes} [Sat Aug 25 13:18:12 2018] GET /files/?page=335 => generated 22999 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 348/1803] 203.208.60.97 () {38 vars in 742 bytes} [Sat Aug 25 13:18:37 2018] GET /files/?page=334 => generated 23043 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 427/1804] 203.208.60.64 () {38 vars in 616 bytes} [Sat Aug 25 13:20:51 2018] GET /files/?page=101 => generated 23460 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 428/1805] 203.208.60.116 () {38 vars in 743 bytes} [Sat Aug 25 13:21:16 2018] GET /files/?page=346 => generated 23392 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 236/1806] 203.208.60.26 () {38 vars in 915 bytes} [Sat Aug 25 13:21:29 2018] GET /projects/tensorflow/tensorflow/contrib/lite/java/demo/app/src/main/res/values-v11/template-styles.xml => generated 2729035 bytes in 268 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 429/1807] 203.208.60.10 () {38 vars in 630 bytes} [Sat Aug 25 13:21:30 2018] GET /?sort=latest&page=2052 => generated 9705 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 430/1808] 203.208.60.44 () {38 vars in 616 bytes} [Sat Aug 25 13:24:31 2018] GET /files/?page=334 => generated 23043 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 237/1809] 203.208.60.97 () {38 vars in 630 bytes} [Sat Aug 25 13:25:08 2018] GET /?sort=latest&page=2065 => generated 9705 bytes in 73 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 431/1810] 203.208.60.32 () {38 vars in 742 bytes} [Sat Aug 25 13:25:23 2018] GET /files/?page=342 => generated 23159 bytes in 107 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 432/1811] 203.208.60.32 () {38 vars in 833 bytes} [Sat Aug 25 13:26:07 2018] GET /projects/tensorflow/tensorflow/core/util/stats_calculator.cc => generated 2729036 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 230/1812] 203.208.60.97 () {38 vars in 742 bytes} [Sat Aug 25 13:26:50 2018] GET /files/?page=200 => generated 23228 bytes in 113 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 256/1813] 203.208.60.62 () {38 vars in 799 bytes} [Sat Aug 25 13:27:14 2018] GET /projects/pytorch/aten/tools/test_install.sh => generated 890012 bytes in 94 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19586|app: 0|req: 311/1814] 203.208.60.32 () {38 vars in 673 bytes} [Sat Aug 25 13:28:11 2018] GET /projects/pytorch/aten/tools/test_install.sh => generated 890012 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 231/1815] 203.208.60.53 () {38 vars in 630 bytes} [Sat Aug 25 13:28:48 2018] GET /?sort=latest&page=2023 => generated 9705 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 257/1816] 203.208.60.109 () {38 vars in 743 bytes} [Sat Aug 25 13:30:14 2018] GET /files/?page=203 => generated 23156 bytes in 101 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 238/1817] 203.208.60.31 () {38 vars in 817 bytes} [Sat Aug 25 13:31:20 2018] GET /projects/tensorflow/tensorflow/contrib/tpu/README.md => generated 2729035 bytes in 240 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 232/1818] 203.208.60.105 () {38 vars in 702 bytes} [Sat Aug 25 13:32:14 2018] GET /projects/tensorflow/tensorflow/contrib/framework/testdata => generated 2729035 bytes in 240 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19580|app: 0|req: 233/1819] 203.208.60.76 () {38 vars in 630 bytes} [Sat Aug 25 13:32:28 2018] GET /?sort=latest&page=2046 => generated 9705 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 312/1820] 203.208.60.108 () {38 vars in 743 bytes} [Sat Aug 25 13:32:36 2018] GET /files/?page=224 => generated 23397 bytes in 98 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 433/1821] 203.208.60.92 () {38 vars in 857 bytes} [Sat Aug 25 13:32:59 2018] GET /projects/tensorflow/tensorflow/contrib/integrate/python/ops/odes_test.py => generated 2729035 bytes in 274 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 434/1822] 203.208.60.105 () {38 vars in 617 bytes} [Sat Aug 25 13:35:31 2018] GET /files/?page=198 => generated 23352 bytes in 114 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 258/1823] 203.208.60.82 () {38 vars in 843 bytes} [Sat Aug 25 13:35:51 2018] GET /projects/tensorflow/tensorflow/contrib/lite/arena_planner_test.cc => generated 2729035 bytes in 247 msecs (HTTP/1.1 200) 4 headers in 127 bytes (12 switches on core 1) +[pid: 19578|app: 0|req: 239/1824] 203.208.60.127 () {38 vars in 743 bytes} [Sat Aug 25 13:36:03 2018] GET /files/?page=343 => generated 23015 bytes in 124 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +Internal Server Error: /projects/Notes/src/net +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/src/net' +[pid: 19582|app: 0|req: 259/1825] 203.208.60.78 () {38 vars in 631 bytes} [Sat Aug 25 13:36:09 2018] GET /projects/Notes/src/net => generated 83682 bytes in 72 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 240/1826] 203.208.60.17 () {38 vars in 742 bytes} [Sat Aug 25 13:38:21 2018] GET /files/?page=337 => generated 23291 bytes in 111 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 260/1827] 203.208.60.121 () {38 vars in 870 bytes} [Sat Aug 25 13:38:43 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/self_adjoint_eig_op_test.py => generated 2729035 bytes in 264 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19586|app: 0|req: 313/1828] 203.208.60.55 () {38 vars in 751 bytes} [Sat Aug 25 13:39:12 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/metric_key.py => generated 2729035 bytes in 283 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 314/1829] 203.208.60.13 () {38 vars in 630 bytes} [Sat Aug 25 13:39:49 2018] GET /?sort=latest&page=2061 => generated 9705 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 241/1830] 203.208.60.77 () {38 vars in 742 bytes} [Sat Aug 25 13:41:13 2018] GET /files/?page=339 => generated 23271 bytes in 113 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 349/1831] 203.208.60.21 () {38 vars in 913 bytes} [Sat Aug 25 13:42:05 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.nn.rnn_cell.-l-s-t-m-state-tuple.pbtxt => generated 2729035 bytes in 213 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19577|app: 0|req: 350/1832] 203.208.60.30 () {38 vars in 773 bytes} [Sat Aug 25 13:43:30 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-max-pool1-d.pbtxt => generated 2729035 bytes in 254 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 242/1833] 203.208.60.49 () {38 vars in 630 bytes} [Sat Aug 25 13:43:31 2018] GET /?sort=latest&page=2022 => generated 9705 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 234/1834] 203.208.60.62 () {38 vars in 742 bytes} [Sat Aug 25 13:44:05 2018] GET /files/?page=206 => generated 23340 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 351/1835] 203.208.60.55 () {38 vars in 742 bytes} [Sat Aug 25 13:46:57 2018] GET /files/?page=336 => generated 23059 bytes in 111 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 315/1836] 203.208.60.70 () {38 vars in 630 bytes} [Sat Aug 25 13:47:11 2018] GET /?sort=latest&page=2032 => generated 9705 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 435/1837] 203.208.60.30 () {38 vars in 835 bytes} [Sat Aug 25 13:47:59 2018] GET /projects/pytorch/caffe2/mobile/contrib/opengl/core/GLImage.cc => generated 890014 bytes in 153 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 243/1838] 203.208.60.26 () {38 vars in 742 bytes} [Sat Aug 25 13:50:13 2018] GET /files/?page=105 => generated 23141 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 436/1839] 203.208.60.32 () {38 vars in 807 bytes} [Sat Aug 25 13:50:38 2018] GET /projects/pytorch/binaries/predictor_verifier.cc => generated 890014 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 352/1840] 203.208.60.116 () {38 vars in 640 bytes} [Sat Aug 25 13:50:51 2018] GET /projects/Notes/.git/config => generated 39377 bytes in 24 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 261/1841] 203.208.60.70 () {38 vars in 801 bytes} [Sat Aug 25 13:51:02 2018] GET /projects/pytorch/tools/build_pytorch_libs.sh => generated 890014 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19582|app: 0|req: 262/1842] 203.208.60.95 () {38 vars in 742 bytes} [Sat Aug 25 13:52:42 2018] GET /files/?page=198 => generated 23352 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 235/1843] 203.208.60.87 () {38 vars in 879 bytes} [Sat Aug 25 13:53:08 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.-l-m-d-b-reader.pbtxt => generated 2729035 bytes in 285 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 437/1844] 203.208.60.44 () {38 vars in 649 bytes} [Sat Aug 25 13:54:32 2018] GET /projects/Notes/.git/packed-refs => generated 39377 bytes in 59 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 353/1845] 203.208.60.37 () {38 vars in 742 bytes} [Sat Aug 25 13:55:34 2018] GET /files/?page=340 => generated 23218 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 438/1846] 203.208.60.126 () {38 vars in 900 bytes} [Sat Aug 25 13:55:59 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.keras.layers.-avg-pool3-d.pbtxt => generated 2729035 bytes in 246 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 354/1847] 203.208.60.127 () {38 vars in 656 bytes} [Sat Aug 25 13:58:12 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 355/1848] 203.208.60.77 () {38 vars in 742 bytes} [Sat Aug 25 13:58:26 2018] GET /files/?page=202 => generated 23284 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 316/1849] 203.208.60.35 () {38 vars in 745 bytes} [Sat Aug 25 13:59:19 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_SqlDataset.pbtxt => generated 2729036 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 317/1850] 203.208.60.98 () {38 vars in 729 bytes} [Sat Aug 25 13:59:28 2018] GET /projects/tensorflow/tensorflow/core/kernels/reduction_ops_gpu_int.cu.cc => generated 2729036 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19584|app: 0|req: 439/1851] 203.208.60.37 () {38 vars in 735 bytes} [Sat Aug 25 13:59:42 2018] GET /projects/tensorflow/tensorflow/core/grappler/optimizers/shape_optimizer.cc => generated 2729036 bytes in 277 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19580|app: 0|req: 236/1852] 203.208.60.55 () {38 vars in 749 bytes} [Sat Aug 25 13:59:56 2018] GET /projects/tensorflow/tensorflow/core/api_def/python_api/api_def_RegexReplace.pbtxt => generated 2729036 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 244/1853] 203.208.60.28 () {38 vars in 742 bytes} [Sat Aug 25 14:01:18 2018] GET /files/?page=199 => generated 23386 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 245/1854] 203.208.60.64 () {38 vars in 633 bytes} [Sat Aug 25 14:01:53 2018] GET /projects/Notes/res/menu => generated 39376 bytes in 56 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 246/1855] 203.208.60.44 () {38 vars in 975 bytes} [Sat Aug 25 14:02:00 2018] GET /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/SDK/Scripts.meta => generated 2729035 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19577|app: 0|req: 356/1856] 203.208.60.64 () {38 vars in 809 bytes} [Sat Aug 25 14:02:04 2018] GET /projects/tensorflow/tensorflow/contrib/integrate => generated 2729035 bytes in 199 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 357/1857] 203.208.60.64 () {38 vars in 707 bytes} [Sat Aug 25 14:03:10 2018] GET /projects/tensorflow/tensorflow/python/ops/linalg_ops_impl.py => generated 2729035 bytes in 242 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 247/1858] 203.208.60.105 () {38 vars in 684 bytes} [Sat Aug 25 14:04:56 2018] GET /projects/tensorflow/tensorflow/contrib/integrate => generated 2729035 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 358/1859] 203.208.60.62 () {38 vars in 742 bytes} [Sat Aug 25 14:05:03 2018] GET /files/?page=201 => generated 23335 bytes in 72 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 263/1860] 203.208.60.13 () {38 vars in 637 bytes} [Sat Aug 25 14:05:34 2018] GET /projects/Notes/.git/index => generated 39377 bytes in 31 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 264/1861] 203.208.60.12 () {38 vars in 742 bytes} [Sat Aug 25 14:07:03 2018] GET /files/?page=345 => generated 23227 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 359/1862] 203.208.60.82 () {38 vars in 829 bytes} [Sat Aug 25 14:07:19 2018] GET /projects/tensorflow/tensorflow/tools/ci_build/remote/BUILD => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 248/1863] 203.208.60.121 () {38 vars in 956 bytes} [Sat Aug 25 14:07:30 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.linalg.-linear-operator-low-rank-update.__metaclass__.pbtxt => generated 2729035 bytes in 228 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 440/1864] 203.208.60.62 () {38 vars in 667 bytes} [Sat Aug 25 14:09:14 2018] GET /projects/tensorflow/third_party/tensorrt => generated 2729034 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 1) +[pid: 19584|app: 0|req: 441/1865] 203.208.60.62 () {38 vars in 742 bytes} [Sat Aug 25 14:11:01 2018] GET /files/?page=338 => generated 23258 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 442/1866] 203.208.60.69 () {38 vars in 843 bytes} [Sat Aug 25 14:11:27 2018] GET /projects/tensorflow/tensorflow/stream_executor/cuda/cuda_driver.h => generated 2729035 bytes in 216 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19584|app: 0|req: 443/1867] 203.208.60.77 () {38 vars in 727 bytes} [Sat Aug 25 14:11:54 2018] GET /projects/tensorflow/tensorflow/python/feature_column/feature_column.py => generated 2729035 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 265/1868] 203.208.60.88 () {38 vars in 709 bytes} [Sat Aug 25 14:12:25 2018] GET /projects/tensorflow/tensorflow/python/eager/pywrap_tfe_src.cc => generated 2729035 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 0) +[pid: 19578|app: 0|req: 249/1869] 203.208.60.95 () {38 vars in 787 bytes} [Sat Aug 25 14:12:49 2018] GET /projects/tensorflow/third_party/kafka => generated 2729034 bytes in 297 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 250/1870] 203.208.60.94 () {38 vars in 789 bytes} [Sat Aug 25 14:15:41 2018] GET /projects/tensorflow/third_party/hadoop => generated 2729034 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19578|app: 0|req: 251/1871] 203.208.60.70 () {38 vars in 671 bytes} [Sat Aug 25 14:16:35 2018] GET /projects/tensorflow/third_party/common.bzl => generated 2729034 bytes in 303 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 252/1872] 203.208.60.50 () {38 vars in 791 bytes} [Sat Aug 25 14:18:33 2018] GET /projects/pytorch/scripts/build_local.sh => generated 890012 bytes in 139 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19577|app: 0|req: 360/1873] 203.208.60.64 () {38 vars in 671 bytes} [Sat Aug 25 14:20:16 2018] GET /projects/tensorflow/third_party/swig.BUILD => generated 2729034 bytes in 268 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 318/1874] 203.208.60.26 () {38 vars in 705 bytes} [Sat Aug 25 14:21:11 2018] GET /projects/tensorflow/tensorflow/tools/ci_build/windows/bazel => generated 2729035 bytes in 234 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19578|app: 0|req: 253/1875] 203.208.60.88 () {38 vars in 793 bytes} [Sat Aug 25 14:21:25 2018] GET /projects/pytorch/binaries/CMakeLists.txt => generated 890014 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19578|app: 0|req: 254/1876] 203.208.60.69 () {38 vars in 743 bytes} [Sat Aug 25 14:21:35 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/self_adjoint_eig_op_test.py => generated 2729035 bytes in 191 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 444/1877] 203.208.60.105 () {38 vars in 788 bytes} [Sat Aug 25 14:23:20 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.nn.rnn_cell.-l-s-t-m-state-tuple.pbtxt => generated 2729035 bytes in 235 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 445/1878] 203.208.60.69 () {38 vars in 645 bytes} [Sat Aug 25 14:23:56 2018] GET /projects/tensorflow/.git/logs => generated 2729036 bytes in 251 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19586|app: 0|req: 319/1879] 203.208.60.80 () {38 vars in 795 bytes} [Sat Aug 25 14:26:01 2018] GET /projects/tensorflow/third_party/aws.BUILD => generated 2729034 bytes in 266 msecs (HTTP/1.1 200) 4 headers in 127 bytes (11 switches on core 0) +[pid: 19584|app: 0|req: 446/1880] 203.208.60.80 () {38 vars in 753 bytes} [Sat Aug 25 14:27:00 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.-l-m-d-b-reader.pbtxt => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 320/1881] 203.208.60.64 () {38 vars in 797 bytes} [Sat Aug 25 14:27:10 2018] GET /projects/tensorflow/third_party/gast.BUILD => generated 2729034 bytes in 180 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 321/1882] 203.208.60.37 () {38 vars in 679 bytes} [Sat Aug 25 14:27:37 2018] GET /projects/tensorflow/third_party/python_runtime => generated 2729033 bytes in 227 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19584|app: 0|req: 447/1883] 203.208.60.78 () {38 vars in 797 bytes} [Sat Aug 25 14:30:02 2018] GET /projects/tensorflow/third_party/curl.BUILD => generated 2729034 bytes in 296 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 361/1884] 203.208.60.95 () {38 vars in 745 bytes} [Sat Aug 25 14:30:40 2018] GET /projects/tensorflow/tensorflow/tools/graph_transforms/add_default_attributes.cc => generated 2729034 bytes in 260 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 322/1885] 203.208.60.64 () {38 vars in 645 bytes} [Sat Aug 25 14:31:17 2018] GET /projects/Notes/res/raw-zh-rCN => generated 39376 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 448/1886] 203.208.60.28 () {38 vars in 803 bytes} [Sat Aug 25 14:32:54 2018] GET /projects/tensorflow/third_party/libxsmm.BUILD => generated 2729034 bytes in 244 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 323/1887] 203.208.60.50 () {38 vars in 805 bytes} [Sat Aug 25 14:36:25 2018] GET /projects/tensorflow/third_party/farmhash.BUILD => generated 2729034 bytes in 272 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 255/1888] 60.191.52.254 () {36 vars in 580 bytes} [Sat Aug 25 14:38:12 2018] HEAD / => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 362/1889] 203.208.60.98 () {38 vars in 671 bytes} [Sat Aug 25 14:38:38 2018] GET /projects/tensorflow/third_party/toolchains => generated 2729034 bytes in 277 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 266/1890] 203.208.60.77 () {38 vars in 807 bytes} [Sat Aug 25 14:41:13 2018] GET /projects/tensorflow/third_party/termcolor.BUILD => generated 2729034 bytes in 239 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19584|app: 0|req: 449/1891] 203.208.60.78 () {38 vars in 675 bytes} [Sat Aug 25 14:42:19 2018] GET /projects/tensorflow/third_party/sqlite.BUILD => generated 2729034 bytes in 279 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 19578|app: 0|req: 256/1892] 203.208.60.98 () {38 vars in 807 bytes} [Sat Aug 25 14:43:14 2018] GET /projects/tensorflow/third_party/linenoise.BUILD => generated 2729034 bytes in 283 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 267/1893] 203.208.60.32 () {38 vars in 821 bytes} [Sat Aug 25 14:45:11 2018] GET /projects/tensorflow/third_party/tflite_mobilenet.BUILD => generated 2729034 bytes in 287 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 450/1894] 203.208.60.32 () {38 vars in 681 bytes} [Sat Aug 25 14:46:00 2018] GET /projects/pytorch/binaries/predictor_verifier.cc => generated 890014 bytes in 129 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 19580|app: 0|req: 237/1895] 203.208.60.62 () {38 vars in 823 bytes} [Sat Aug 25 14:47:16 2018] GET /projects/tensorflow/third_party/double_conversion.BUILD => generated 2729034 bytes in 244 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 238/1896] 203.208.60.94 () {38 vars in 675 bytes} [Sat Aug 25 14:49:40 2018] GET /projects/tensorflow/third_party/cython.BUILD => generated 2729034 bytes in 263 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 363/1897] 203.208.60.8 () {38 vars in 822 bytes} [Sat Aug 25 14:50:17 2018] GET /projects/tensorflow/third_party/backports_weakref.BUILD => generated 2729034 bytes in 289 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19582|app: 0|req: 268/1898] 78.146.127.238 () {32 vars in 463 bytes} [Sat Aug 25 14:51:05 2018] GET / => generated 9722 bytes in 58 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +Internal Server Error: /projects/45/files/2140/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 451/1899] 203.208.60.17 () {38 vars in 759 bytes} [Sat Aug 25 14:52:42 2018] GET /projects/45/files/2140/ => generated 77321 bytes in 82 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 239/1900] 203.208.60.62 () {38 vars in 758 bytes} [Sat Aug 25 14:53:02 2018] GET /files/?sort=hot&page=11 => generated 23480 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 240/1901] 203.208.60.32 () {38 vars in 675 bytes} [Sat Aug 25 14:53:21 2018] GET /projects/pytorch/tools/build_pytorch_libs.sh => generated 890014 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 19582|app: 0|req: 269/1902] 203.208.60.44 () {38 vars in 758 bytes} [Sat Aug 25 14:56:14 2018] GET /files/?sort=hot&page=13 => generated 23550 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 270/1903] 203.208.60.13 () {38 vars in 693 bytes} [Sat Aug 25 14:57:00 2018] GET /projects/tensorflow/third_party/com_google_absl.BUILD => generated 2729034 bytes in 273 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 364/1904] 203.208.60.88 () {38 vars in 758 bytes} [Sat Aug 25 15:00:24 2018] GET /files/?sort=hot&page=12 => generated 23465 bytes in 112 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 241/1905] 203.208.60.53 () {38 vars in 677 bytes} [Sat Aug 25 15:00:41 2018] GET /projects/tensorflow/third_party/codegen.BUILD => generated 2729034 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19586|app: 0|req: 324/1906] 203.208.60.116 () {38 vars in 763 bytes} [Sat Aug 25 15:01:39 2018] GET /files/?sort=hot&page=2080 => generated 23017 bytes in 127 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +Internal Server Error: /projects/Notes/src/net/micode +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/src/net/micode' +[pid: 19577|app: 0|req: 365/1907] 203.208.60.64 () {38 vars in 645 bytes} [Sat Aug 25 15:04:22 2018] GET /projects/Notes/src/net/micode => generated 83857 bytes in 92 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 242/1908] 117.136.89.112 () {42 vars in 867 bytes} [Sat Aug 25 15:05:14 2018] GET / => generated 9722 bytes in 77 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 243/1909] 117.136.89.112 () {44 vars in 942 bytes} [Sat Aug 25 15:05:17 2018] GET /users/register/ => generated 5053 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 257/1910] 117.136.89.112 () {42 vars in 956 bytes} [Sat Aug 25 15:05:17 2018] GET /captcha/image/767b6dfc024f928cbd80236d6935854024b48456/ => generated 4216 bytes in 24 msecs (HTTP/1.1 200) 3 headers in 95 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 271/1911] 117.136.89.112 () {44 vars in 951 bytes} [Sat Aug 25 15:05:19 2018] GET /users/login/ => generated 4861 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 325/1912] 203.208.60.64 () {38 vars in 762 bytes} [Sat Aug 25 15:05:22 2018] GET /files/?sort=hot&page=2076 => generated 23316 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +{'status': 1, 'user_id': 24759, 'message': '登陆成功!'} +[pid: 19580|app: 0|req: 244/1913] 117.136.89.112 () {52 vars in 1139 bytes} [Sat Aug 25 15:05:26 2018] POST /users/login/ => generated 0 bytes in 2708 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 245/1914] 117.136.89.112 () {46 vars in 999 bytes} [Sat Aug 25 15:05:28 2018] GET / => generated 11508 bytes in 28 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 326/1915] 117.136.89.112 () {44 vars in 996 bytes} [Sat Aug 25 15:05:30 2018] GET /projects/tensorflow/ => generated 2732034 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 327/1916] 117.136.89.112 () {52 vars in 1269 bytes} [Sat Aug 25 15:05:35 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 18 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 273/1917] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:05:35 2018] POST /operations/show_navigation/ => generated 35 bytes in 60 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +, , , ]> +2 +1 +1 +1 +[pid: 19586|app: 0|req: 328/1918] 117.136.89.112 () {52 vars in 1283 bytes} [Sat Aug 25 15:05:35 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 103 msecs (HTTP/1.1 200) 3 headers in 102 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 273/1919] 117.136.89.112 () {52 vars in 1246 bytes} [Sat Aug 25 15:05:35 2018] POST /operations/right/ => generated 5260 bytes in 114 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 452/1920] 117.136.89.112 () {52 vars in 1274 bytes} [Sat Aug 25 15:05:45 2018] POST /operations/show_issue_question/ => generated 486 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 123 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 453/1921] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:05:48 2018] POST /operations/show_annotation/ => generated 310 bytes in 391 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 258/1922] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:05:53 2018] POST /operations/show_navigation/ => generated 35 bytes in 104 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 274/1923] 117.136.89.112 () {52 vars in 1282 bytes} [Sat Aug 25 15:05:53 2018] POST /operations/get_codereading_content/ => generated 3772 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 366/1924] 117.136.89.112 () {52 vars in 1261 bytes} [Sat Aug 25 15:05:53 2018] POST /operations/right/ => generated 37 bytes in 132 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 329/1925] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:05:57 2018] POST /operations/show_annotation/ => generated 310 bytes in 417 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 330/1926] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:05:59 2018] POST /operations/show_annotation/ => generated 310 bytes in 641 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 454/1927] 117.136.89.112 () {44 vars in 1016 bytes} [Sat Aug 25 15:06:47 2018] GET /users/logout/ => generated 0 bytes in 64 msecs (HTTP/1.1 302) 5 headers in 208 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 455/1928] 117.136.89.112 () {44 vars in 946 bytes} [Sat Aug 25 15:06:47 2018] GET / => generated 9722 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 367/1929] 117.136.89.112 () {44 vars in 936 bytes} [Sat Aug 25 15:06:49 2018] GET /users/login/ => generated 4861 bytes in 18 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +[pid: 19582|app: 0|req: 275/1930] 117.136.89.112 () {52 vars in 1139 bytes} [Sat Aug 25 15:06:55 2018] POST /users/login/ => generated 0 bytes in 834 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 368/1931] 117.136.89.112 () {46 vars in 999 bytes} [Sat Aug 25 15:06:56 2018] GET / => generated 11552 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 276/1932] 117.136.89.112 () {44 vars in 996 bytes} [Sat Aug 25 15:06:57 2018] GET /projects/tensorflow/ => generated 2732040 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 369/1933] 117.136.89.112 () {52 vars in 1269 bytes} [Sat Aug 25 15:07:02 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 30 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +, , , ]> +2 +1 +1 +1 +[pid: 19580|app: 0|req: 246/1934] 117.136.89.112 () {52 vars in 1283 bytes} [Sat Aug 25 15:07:02 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 131 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 371/1935] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:07:02 2018] POST /operations/show_navigation/ => generated 35 bytes in 95 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 371/1936] 117.136.89.112 () {52 vars in 1246 bytes} [Sat Aug 25 15:07:02 2018] POST /operations/right/ => generated 5260 bytes in 117 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 248/1937] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:07:10 2018] POST /operations/show_navigation/ => generated 35 bytes in 70 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 372/1938] 117.136.89.112 () {52 vars in 1282 bytes} [Sat Aug 25 15:07:10 2018] POST /operations/get_codereading_content/ => generated 3819 bytes in 102 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 248/1939] 117.136.89.112 () {52 vars in 1261 bytes} [Sat Aug 25 15:07:10 2018] POST /operations/right/ => generated 37 bytes in 116 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 259/1940] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:07:14 2018] POST /operations/show_annotation/ => generated 310 bytes in 422 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 373/1941] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:07:15 2018] POST /operations/show_annotation/ => generated 310 bytes in 402 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 374/1942] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:07:19 2018] POST /operations/show_annotation/ => generated 310 bytes in 405 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 331/1943] 203.208.60.76 () {38 vars in 762 bytes} [Sat Aug 25 15:07:25 2018] GET /files/?sort=hot&page=2077 => generated 23472 bytes in 119 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 456/1944] 117.136.89.112 () {44 vars in 1016 bytes} [Sat Aug 25 15:07:54 2018] GET /users/logout/ => generated 0 bytes in 58 msecs (HTTP/1.1 302) 5 headers in 208 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 332/1945] 117.136.89.112 () {44 vars in 946 bytes} [Sat Aug 25 15:07:54 2018] GET / => generated 9722 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 260/1946] 117.136.89.112 () {44 vars in 936 bytes} [Sat Aug 25 15:07:56 2018] GET /users/login/ => generated 4861 bytes in 16 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 333/1947] 203.208.60.1 () {38 vars in 650 bytes} [Sat Aug 25 15:08:03 2018] GET /projects/Notes/.git/refs/remotes => generated 39377 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +{'status': 1, 'user_id': 24761, 'message': '登陆成功!'} +[pid: 19582|app: 0|req: 277/1948] 117.136.89.112 () {52 vars in 1139 bytes} [Sat Aug 25 15:08:26 2018] POST /users/login/ => generated 0 bytes in 508 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 278/1949] 117.136.89.112 () {46 vars in 999 bytes} [Sat Aug 25 15:08:27 2018] GET / => generated 11521 bytes in 27 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 261/1950] 117.136.89.112 () {44 vars in 996 bytes} [Sat Aug 25 15:08:32 2018] GET /projects/tensorflow/ => generated 2732041 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 375/1951] 117.136.89.112 () {52 vars in 1269 bytes} [Sat Aug 25 15:08:36 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 26 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +, , , ]> +2 +1 +1 +1 +[pid: 19578|app: 0|req: 263/1952] 117.136.89.112 () {52 vars in 1283 bytes} [Sat Aug 25 15:08:36 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 102 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 263/1953] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:08:36 2018] POST /operations/show_navigation/ => generated 35 bytes in 66 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 376/1954] 117.136.89.112 () {52 vars in 1246 bytes} [Sat Aug 25 15:08:36 2018] POST /operations/right/ => generated 5260 bytes in 101 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 280/1955] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:08:41 2018] POST /operations/show_navigation/ => generated 35 bytes in 106 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 280/1956] 117.136.89.112 () {52 vars in 1261 bytes} [Sat Aug 25 15:08:41 2018] POST /operations/right/ => generated 37 bytes in 132 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 249/1957] 117.136.89.112 () {52 vars in 1282 bytes} [Sat Aug 25 15:08:41 2018] POST /operations/get_codereading_content/ => generated 3858 bytes in 151 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 250/1958] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:08:43 2018] POST /operations/show_annotation/ => generated 2296 bytes in 481 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 281/1959] 203.208.60.53 () {38 vars in 762 bytes} [Sat Aug 25 15:10:42 2018] GET /files/?sort=hot&page=2079 => generated 23258 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 377/1960] 117.136.89.112 () {52 vars in 1279 bytes} [Sat Aug 25 15:11:05 2018] POST /operations/add_annotation/ => generated 100 bytes in 153 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 282/1961] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:11:11 2018] POST /operations/show_annotation/ => generated 2259 bytes in 424 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 457/1962] 117.136.89.112 () {52 vars in 1273 bytes} [Sat Aug 25 15:11:41 2018] POST /operations/modify_anno/ => generated 41 bytes in 92 msecs (HTTP/1.1 200) 4 headers in 114 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 265/1963] 203.208.60.109 () {38 vars in 686 bytes} [Sat Aug 25 15:11:43 2018] GET /projects/tensorflow/third_party/highwayhash.BUILD => generated 2729034 bytes in 249 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19578|app: 0|req: 265/1964] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:11:43 2018] POST /operations/show_annotation/ => generated 2261 bytes in 413 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 266/1965] 203.208.60.77 () {38 vars in 762 bytes} [Sat Aug 25 15:13:10 2018] GET /files/?sort=hot&page=2075 => generated 23243 bytes in 137 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 458/1966] 117.136.89.112 () {44 vars in 1016 bytes} [Sat Aug 25 15:13:21 2018] GET /users/logout/ => generated 0 bytes in 39 msecs (HTTP/1.1 302) 5 headers in 208 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 459/1967] 117.136.89.112 () {44 vars in 946 bytes} [Sat Aug 25 15:13:21 2018] GET / => generated 9722 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 460/1968] 117.136.89.112 () {44 vars in 936 bytes} [Sat Aug 25 15:13:24 2018] GET /users/login/ => generated 4861 bytes in 9 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +[pid: 19582|app: 0|req: 283/1969] 117.136.89.112 () {52 vars in 1139 bytes} [Sat Aug 25 15:13:35 2018] POST /users/login/ => generated 0 bytes in 660 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 334/1970] 117.136.89.112 () {46 vars in 999 bytes} [Sat Aug 25 15:13:36 2018] GET / => generated 11552 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 335/1971] 117.136.89.112 () {44 vars in 996 bytes} [Sat Aug 25 15:13:37 2018] GET /projects/tensorflow/ => generated 2732040 bytes in 229 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19582|app: 0|req: 284/1972] 117.136.89.112 () {52 vars in 1269 bytes} [Sat Aug 25 15:13:42 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 27 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 252/1973] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:13:42 2018] POST /operations/show_navigation/ => generated 35 bytes in 98 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +, , , ]> +4 +1 +1 +1 +[pid: 19580|app: 0|req: 252/1974] 117.136.89.112 () {52 vars in 1283 bytes} [Sat Aug 25 15:13:42 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 124 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 461/1975] 117.136.89.112 () {52 vars in 1246 bytes} [Sat Aug 25 15:13:42 2018] POST /operations/right/ => generated 5260 bytes in 89 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 378/1976] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:13:47 2018] POST /operations/show_navigation/ => generated 35 bytes in 79 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 462/1977] 117.136.89.112 () {52 vars in 1282 bytes} [Sat Aug 25 15:13:47 2018] POST /operations/get_codereading_content/ => generated 3828 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 336/1978] 117.136.89.112 () {52 vars in 1261 bytes} [Sat Aug 25 15:13:47 2018] POST /operations/right/ => generated 37 bytes in 107 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 337/1979] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:13:51 2018] POST /operations/show_annotation/ => generated 310 bytes in 392 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 0) +[pid: 19578|app: 0|req: 267/1980] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:03 2018] POST /operations/show_annotation/ => generated 310 bytes in 473 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 338/1981] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:04 2018] POST /operations/show_annotation/ => generated 310 bytes in 376 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 463/1982] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:04 2018] POST /operations/show_annotation/ => generated 310 bytes in 398 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 339/1983] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:05 2018] POST /operations/show_annotation/ => generated 310 bytes in 394 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 379/1984] 117.136.89.112 () {44 vars in 1016 bytes} [Sat Aug 25 15:14:10 2018] GET /users/logout/ => generated 0 bytes in 52 msecs (HTTP/1.1 302) 5 headers in 208 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 464/1985] 117.136.89.112 () {44 vars in 946 bytes} [Sat Aug 25 15:14:10 2018] GET / => generated 9722 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 380/1986] 117.136.89.112 () {44 vars in 936 bytes} [Sat Aug 25 15:14:12 2018] GET /users/login/ => generated 4861 bytes in 15 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 465/1987] 117.136.89.112 () {52 vars in 1139 bytes} [Sat Aug 25 15:14:18 2018] POST /users/login/ => generated 0 bytes in 64 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 340/1988] 117.136.89.112 () {46 vars in 999 bytes} [Sat Aug 25 15:14:18 2018] GET / => generated 11508 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 341/1989] 117.136.89.112 () {44 vars in 996 bytes} [Sat Aug 25 15:14:20 2018] GET /projects/tensorflow/ => generated 2732034 bytes in 224 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 342/1990] 117.136.89.112 () {52 vars in 1269 bytes} [Sat Aug 25 15:14:24 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 26 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 254/1991] 117.136.89.112 () {52 vars in 1266 bytes} [Sat Aug 25 15:14:24 2018] POST /operations/show_navigation/ => generated 35 bytes in 94 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +, , , ]> +4 +1 +1 +1 +[pid: 19582|app: 0|req: 285/1992] 117.136.89.112 () {52 vars in 1283 bytes} [Sat Aug 25 15:14:24 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 126 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 254/1993] 117.136.89.112 () {52 vars in 1246 bytes} [Sat Aug 25 15:14:24 2018] POST /operations/right/ => generated 5260 bytes in 142 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 287/1994] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:28 2018] POST /operations/show_navigation/ => generated 35 bytes in 67 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 466/1995] 117.136.89.112 () {52 vars in 1282 bytes} [Sat Aug 25 15:14:28 2018] POST /operations/get_codereading_content/ => generated 3781 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 287/1996] 117.136.89.112 () {52 vars in 1261 bytes} [Sat Aug 25 15:14:28 2018] POST /operations/right/ => generated 37 bytes in 116 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 288/1997] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:30 2018] POST /operations/show_annotation/ => generated 310 bytes in 431 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 467/1998] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:32 2018] POST /operations/show_annotation/ => generated 310 bytes in 403 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 468/1999] 117.136.89.112 () {52 vars in 1281 bytes} [Sat Aug 25 15:14:33 2018] POST /operations/show_annotation/ => generated 310 bytes in 408 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 289/2000] 66.102.6.61 () {38 vars in 630 bytes} [Sat Aug 25 15:14:51 2018] GET / => generated 9722 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 19584|app: 0|req: 469/2001] 66.102.6.62 () {38 vars in 596 bytes} [Sat Aug 25 15:14:52 2018] GET /favicon.ico => generated 3104 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 381/2002] 203.208.60.31 () {38 vars in 703 bytes} [Sat Aug 25 15:15:24 2018] GET /projects/tensorflow/third_party/tflite_ovic_testdata.BUILD => generated 2729034 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19586|app: 0|req: 343/2003] 203.208.60.64 () {38 vars in 762 bytes} [Sat Aug 25 15:16:14 2018] GET /files/?sort=hot&page=2082 => generated 22931 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 470/2004] 203.208.60.1 () {38 vars in 814 bytes} [Sat Aug 25 15:16:59 2018] GET /projects/tensorflow/tensorflow/contrib/lite/examples/android/app/src/main/java/org/tensorflow/demo/env/Logger.java => generated 2729035 bytes in 248 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 290/2005] 101.227.139.161 () {36 vars in 609 bytes} [Sat Aug 25 15:16:59 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 197 msecs (HTTP/1.0 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19577|app: 0|req: 382/2006] 223.104.21.59 () {42 vars in 922 bytes} [Sat Aug 25 15:17:03 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 176 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19577|app: 0|req: 383/2007] 203.208.60.17 () {38 vars in 731 bytes} [Sat Aug 25 15:17:15 2018] GET /projects/tensorflow/tensorflow/contrib/integrate/python/ops/odes_test.py => generated 2729035 bytes in 190 msecs (HTTP/1.1 200) 4 headers in 127 bytes (7 switches on core 0) +Not Found: /favicon.ico +[pid: 19580|app: 0|req: 256/2008] 223.104.21.59 () {42 vars in 874 bytes} [Sat Aug 25 15:17:23 2018] GET /favicon.ico => generated 3104 bytes in 13 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 256/2009] 223.104.21.59 () {50 vars in 1127 bytes} [Sat Aug 25 15:17:23 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 25 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 291/2010] 223.104.21.59 () {50 vars in 1141 bytes} [Sat Aug 25 15:17:23 2018] POST /operations/get_codereading_content/ => generated 3781 bytes in 57 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 344/2011] 223.104.21.59 () {50 vars in 1125 bytes} [Sat Aug 25 15:17:23 2018] POST /operations/show_navigation/ => generated 35 bytes in 51 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 384/2012] 223.104.21.59 () {50 vars in 1105 bytes} [Sat Aug 25 15:17:23 2018] POST /operations/right/ => generated 37 bytes in 83 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 471/2013] 203.208.60.32 () {38 vars in 717 bytes} [Sat Aug 25 15:17:33 2018] GET /projects/tensorflow/tensorflow/contrib/lite/arena_planner_test.cc => generated 2729035 bytes in 182 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 19582|app: 0|req: 292/2014] 223.104.21.59 () {50 vars in 1125 bytes} [Sat Aug 25 15:17:53 2018] POST /operations/show_annotation/ => generated 59 bytes in 6 msecs (HTTP/1.1 200) 4 headers in 114 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 268/2015] 223.104.21.59 () {44 vars in 957 bytes} [Sat Aug 25 15:17:58 2018] GET /users/login/ => generated 4861 bytes in 17 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 269/2016] 61.151.226.156 () {36 vars in 663 bytes} [Sat Aug 25 15:18:01 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 196 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19586|app: 0|req: 345/2017] 203.208.60.49 () {38 vars in 725 bytes} [Sat Aug 25 15:18:05 2018] GET /projects/tensorflow/tensorflow/contrib/framework/testdata/keyword.txt => generated 2729035 bytes in 170 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +{'status': -1, 'message': '账号或密码错误!'} +[pid: 19582|app: 0|req: 293/2018] 223.104.21.59 () {52 vars in 1126 bytes} [Sat Aug 25 15:18:23 2018] POST /users/login/ => generated 4886 bytes in 294 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 294/2019] 203.208.60.49 () {38 vars in 879 bytes} [Sat Aug 25 15:18:35 2018] GET /projects/tensorflow/tensorflow/contrib/lite/experimental/examples/unity/TensorFlowLitePlugin/Assets/TensorFlowLite/SDK/Scripts/Interpreter.cs.meta => generated 2729035 bytes in 213 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19578|app: 0|req: 270/2020] 223.104.21.59 () {52 vars in 1126 bytes} [Sat Aug 25 15:18:51 2018] POST /users/login/ => generated 4964 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 271/2021] 61.151.225.181 () {36 vars in 705 bytes} [Sat Aug 25 15:18:58 2018] GET /users/login => generated 0 bytes in 1 msecs (HTTP/1.1 301) 3 headers in 118 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 257/2022] 203.208.60.21 () {38 vars in 645 bytes} [Sat Aug 25 15:19:04 2018] GET /projects/Notes/.git/refs/tags => generated 39377 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 346/2023] 203.208.60.87 () {38 vars in 767 bytes} [Sat Aug 25 15:19:05 2018] GET /projects/tensorflow/tensorflow/contrib/tensorboard/plugins/projector/projector_api_test.py => generated 2729035 bytes in 194 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 347/2024] 223.104.21.59 () {52 vars in 1126 bytes} [Sat Aug 25 15:19:06 2018] POST /users/login/ => generated 4888 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 258/2025] 203.208.60.78 () {38 vars in 761 bytes} [Sat Aug 25 15:19:36 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/estimators/run_config_test.py => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 19586|app: 0|req: 348/2026] 223.104.21.59 () {42 vars in 922 bytes} [Sat Aug 25 15:20:01 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 239 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19580|app: 0|req: 259/2027] 203.208.60.97 () {38 vars in 725 bytes} [Sat Aug 25 15:20:08 2018] GET /projects/tensorflow/tensorflow/contrib/checkpoint/python/visualize.py => generated 2729035 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 19577|app: 0|req: 385/2028] 223.104.21.59 () {50 vars in 1127 bytes} [Sat Aug 25 15:20:10 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 11 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 19580|app: 0|req: 260/2029] 223.104.21.59 () {42 vars in 874 bytes} [Sat Aug 25 15:20:10 2018] GET /favicon.ico => generated 3104 bytes in 5 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19577|app: 0|req: 387/2030] 223.104.21.59 () {42 vars in 874 bytes} [Sat Aug 25 15:20:10 2018] GET /favicon.ico => generated 3104 bytes in 6 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 387/2031] 223.104.21.59 () {50 vars in 1141 bytes} [Sat Aug 25 15:20:10 2018] POST /operations/get_codereading_content/ => generated 3781 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 350/2032] 223.104.21.59 () {50 vars in 1105 bytes} [Sat Aug 25 15:20:10 2018] POST /operations/right/ => generated 37 bytes in 75 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 350/2033] 223.104.21.59 () {50 vars in 1125 bytes} [Sat Aug 25 15:20:10 2018] POST /operations/show_navigation/ => generated 35 bytes in 53 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 388/2034] 203.208.60.103 () {38 vars in 763 bytes} [Sat Aug 25 15:20:10 2018] GET /files/?sort=hot&page=2078 => generated 23455 bytes in 83 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 472/2035] 223.104.21.59 () {44 vars in 957 bytes} [Sat Aug 25 15:20:13 2018] GET /users/login/ => generated 4861 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 272/2036] 223.104.21.59 () {52 vars in 1126 bytes} [Sat Aug 25 15:20:16 2018] POST /users/login/ => generated 4998 bytes in 14 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +{'status': 1, 'user_id': 24761, 'message': '登陆成功!'} +[pid: 19586|app: 0|req: 351/2037] 223.104.21.59 () {52 vars in 1126 bytes} [Sat Aug 25 15:20:33 2018] POST /users/login/ => generated 0 bytes in 556 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 295/2038] 223.104.21.59 () {48 vars in 999 bytes} [Sat Aug 25 15:20:34 2018] GET / => generated 11521 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 473/2039] 223.104.21.59 () {46 vars in 1000 bytes} [Sat Aug 25 15:20:35 2018] GET /projects/scikit-learn/ => generated 243525 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 296/2040] 223.104.21.59 () {52 vars in 1172 bytes} [Sat Aug 25 15:20:36 2018] POST /operations/get_addtab_paras/ => generated 74 bytes in 5 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) + +[pid: 19584|app: 0|req: 474/2041] 223.104.21.59 () {52 vars in 1186 bytes} [Sat Aug 25 15:20:37 2018] POST /operations/get_codereading_content/ => generated 2566 bytes in 24 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 274/2042] 223.104.21.59 () {52 vars in 1149 bytes} [Sat Aug 25 15:20:37 2018] POST /operations/right/ => generated 5266 bytes in 45 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 274/2043] 223.104.21.59 () {52 vars in 1169 bytes} [Sat Aug 25 15:20:37 2018] POST /operations/show_navigation/ => generated 35 bytes in 56 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 389/2044] 203.208.60.70 () {38 vars in 697 bytes} [Sat Aug 25 15:20:45 2018] GET /projects/tensorflow/tensorflow/contrib/tensorrt/segment => generated 2729035 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19577|app: 0|req: 390/2045] 223.104.21.59 () {44 vars in 979 bytes} [Sat Aug 25 15:20:56 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732041 bytes in 287 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 19584|app: 0|req: 475/2046] 5.198.182.203 () {34 vars in 494 bytes} [Sat Aug 25 15:21:03 2018] GET / => generated 9722 bytes in 45 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 352/2047] 223.104.21.59 () {52 vars in 1184 bytes} [Sat Aug 25 15:21:05 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 16 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +Not Found: /favicon.ico +[pid: 19582|app: 0|req: 297/2048] 223.104.21.59 () {44 vars in 931 bytes} [Sat Aug 25 15:21:05 2018] GET /favicon.ico => generated 3104 bytes in 18 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 298/2049] 223.104.21.59 () {52 vars in 1182 bytes} [Sat Aug 25 15:21:05 2018] POST /operations/show_navigation/ => generated 35 bytes in 66 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 476/2050] 223.104.21.59 () {52 vars in 1198 bytes} [Sat Aug 25 15:21:05 2018] POST /operations/get_codereading_content/ => generated 3920 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 353/2051] 223.104.21.59 () {52 vars in 1162 bytes} [Sat Aug 25 15:21:05 2018] POST /operations/right/ => generated 37 bytes in 79 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 477/2052] 223.104.21.59 () {52 vars in 1182 bytes} [Sat Aug 25 15:21:14 2018] POST /operations/show_annotation/ => generated 2261 bytes in 503 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 261/2053] 223.104.21.59 () {52 vars in 1182 bytes} [Sat Aug 25 15:21:19 2018] POST /operations/show_annotation/ => generated 2296 bytes in 436 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 354/2054] 61.151.178.177 () {36 vars in 595 bytes} [Sat Aug 25 15:21:34 2018] GET / => generated 9722 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 275/2055] 223.104.21.59 () {52 vars in 1182 bytes} [Sat Aug 25 15:21:33 2018] POST /operations/show_annotation/ => generated 2261 bytes in 460 msecs (HTTP/1.1 200) 4 headers in 116 bytes (2 switches on core 0) +Internal Server Error: /projects/scikit-learn +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19586|app: 0|req: 355/2056] 101.226.79.244 () {36 vars in 681 bytes} [Sat Aug 25 15:21:35 2018] GET /projects/scikit-learn => generated 77101 bytes in 125 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 478/2057] 203.208.60.64 () {38 vars in 762 bytes} [Sat Aug 25 15:21:47 2018] GET /files/?sort=hot&page=2081 => generated 23129 bytes in 104 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +Internal Server Error: /projects/pytorch/tools/jit/templates +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/tools/jit/templates' +[pid: 19577|app: 0|req: 391/2058] 203.208.60.105 () {38 vars in 660 bytes} [Sat Aug 25 15:22:45 2018] GET /projects/pytorch/tools/jit/templates => generated 83878 bytes in 202 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 356/2059] 203.208.60.21 () {38 vars in 697 bytes} [Sat Aug 25 15:23:39 2018] GET /projects/scikit-learn/examples/neighbors/plot_kde_1d.py => generated 240518 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +Internal Server Error: /projects/18/files/1061/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 19584|app: 0|req: 479/2060] 203.208.60.70 () {38 vars in 759 bytes} [Sat Aug 25 15:23:57 2018] GET /projects/18/files/1061/ => generated 77321 bytes in 69 msecs (HTTP/1.1 500) 4 headers in 129 bytes (2 switches on core 1) +[pid: 19577|app: 0|req: 392/2061] 203.208.60.21 () {38 vars in 655 bytes} [Sat Aug 25 15:24:07 2018] GET /projects/scikit-learn/examples/svm => generated 240518 bytes in 76 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19584|app: 0|req: 480/2062] 203.208.60.3 () {38 vars in 688 bytes} [Sat Aug 25 15:24:34 2018] GET /projects/scikit-learn/examples/neighbors/README.txt => generated 240518 bytes in 70 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19578|app: 0|req: 276/2063] 185.88.159.42 () {32 vars in 461 bytes} [Sat Aug 25 15:25:03 2018] GET / => generated 9722 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 393/2064] 203.208.60.74 () {38 vars in 762 bytes} [Sat Aug 25 15:25:12 2018] GET /files/?sort=hot&page=2083 => generated 22855 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 357/2065] 203.208.60.28 () {38 vars in 705 bytes} [Sat Aug 25 15:25:17 2018] GET /projects/scikit-learn/examples/neighbors/plot_regression.py => generated 240518 bytes in 34 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 19584|app: 0|req: 481/2066] 203.208.60.49 () {38 vars in 707 bytes} [Sat Aug 25 15:25:56 2018] GET /projects/scikit-learn/examples/neighbors/plot_species_kde.py => generated 240518 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 299/2067] 203.208.60.17 () {38 vars in 657 bytes} [Sat Aug 25 15:26:25 2018] GET /projects/Notes/res/raw/introduction => generated 39375 bytes in 55 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 394/2068] 203.208.60.55 () {38 vars in 764 bytes} [Sat Aug 25 15:27:33 2018] GET /files/?sort=latest&page=11 => generated 23348 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 300/2069] 203.208.60.74 () {38 vars in 661 bytes} [Sat Aug 25 15:30:06 2018] GET /projects/Notes/res/menu/note_edit.xml => generated 39376 bytes in 46 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 301/2070] 203.208.60.13 () {38 vars in 768 bytes} [Sat Aug 25 15:30:25 2018] GET /files/?sort=latest&page=2080 => generated 22903 bytes in 123 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 358/2071] 203.208.60.19 () {38 vars in 768 bytes} [Sat Aug 25 15:33:17 2018] GET /files/?sort=latest&page=2077 => generated 23369 bytes in 132 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 359/2072] 203.208.60.44 () {38 vars in 669 bytes} [Sat Aug 25 15:33:47 2018] GET /projects/tensorflow/third_party/mkl/BUILD => generated 2729034 bytes in 211 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 19584|app: 0|req: 482/2073] 72.44.22.52 () {32 vars in 466 bytes} [Sat Aug 25 15:34:56 2018] GET / => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 277/2074] 203.208.60.95 () {38 vars in 768 bytes} [Sat Aug 25 15:36:13 2018] GET /files/?sort=latest&page=2076 => generated 23299 bytes in 144 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 395/2075] 93.170.1.83 () {32 vars in 466 bytes} [Sat Aug 25 15:36:17 2018] GET / => generated 9722 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 262/2076] 203.208.60.82 () {38 vars in 768 bytes} [Sat Aug 25 15:40:32 2018] GET /files/?sort=latest&page=2081 => generated 22767 bytes in 144 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 19582|app: 0|req: 302/2077] 203.208.60.37 () {38 vars in 669 bytes} [Sat Aug 25 15:41:07 2018] GET /projects/tensorflow/third_party/mpi/BUILD => generated 2729034 bytes in 262 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 19584|app: 0|req: 483/2078] 203.208.60.77 () {38 vars in 768 bytes} [Sat Aug 25 15:42:08 2018] GET /files/?sort=latest&page=2078 => generated 23321 bytes in 132 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19584|app: 0|req: 484/2079] 203.208.60.88 () {38 vars in 667 bytes} [Sat Aug 25 15:43:39 2018] GET /projects/scikit-learn/sklearn/covariance => generated 240518 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19580|app: 0|req: 263/2080] 203.208.60.82 () {38 vars in 677 bytes} [Sat Aug 25 15:43:48 2018] GET /projects/scikit-learn/sklearn/semi_supervised => generated 240518 bytes in 50 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19580|app: 0|req: 264/2081] 203.208.60.30 () {38 vars in 638 bytes} [Sat Aug 25 15:43:58 2018] GET /files/?sort=latest&page=73 => generated 23398 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/scikit-learn/sklearn/covariance/tests +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/sklearn/covariance/tests' +[pid: 19578|app: 0|req: 278/2082] 203.208.60.37 () {38 vars in 679 bytes} [Sat Aug 25 15:44:08 2018] GET /projects/scikit-learn/sklearn/covariance/tests => generated 84186 bytes in 110 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +Internal Server Error: /projects/scikit-learn/sklearn/semi_supervised/tests +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/sklearn/semi_supervised/tests' +[pid: 19577|app: 0|req: 396/2083] 203.208.60.35 () {38 vars in 689 bytes} [Sat Aug 25 15:44:20 2018] GET /projects/scikit-learn/sklearn/semi_supervised/tests => generated 84311 bytes in 110 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 360/2084] 203.208.60.103 () {38 vars in 690 bytes} [Sat Aug 25 15:44:37 2018] GET /projects/scikit-learn/sklearn/linear_model/ridge.py => generated 240518 bytes in 66 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 397/2085] 203.208.60.108 () {38 vars in 664 bytes} [Sat Aug 25 15:44:48 2018] GET /projects/Notes/res/menu/sub_folder.xml => generated 39376 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 303/2086] 203.208.60.94 () {38 vars in 805 bytes} [Sat Aug 25 15:45:04 2018] GET /projects/scikit-learn/sklearn/externals/README => generated 240518 bytes in 63 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 361/2087] 203.208.60.21 () {38 vars in 764 bytes} [Sat Aug 25 15:45:10 2018] GET /files/?sort=latest&page=76 => generated 23435 bytes in 95 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19586|app: 0|req: 362/2088] 203.208.60.30 () {38 vars in 764 bytes} [Sat Aug 25 15:45:17 2018] GET /files/?sort=latest&page=77 => generated 23423 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 363/2089] 203.208.60.121 () {38 vars in 769 bytes} [Sat Aug 25 15:45:19 2018] GET /files/?sort=latest&page=2083 => generated 22817 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 485/2090] 203.208.60.105 () {38 vars in 765 bytes} [Sat Aug 25 15:45:24 2018] GET /files/?sort=latest&page=75 => generated 23543 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 279/2091] 203.208.60.64 () {38 vars in 764 bytes} [Sat Aug 25 15:45:31 2018] GET /files/?sort=latest&page=74 => generated 23625 bytes in 91 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 280/2092] 203.208.60.37 () {38 vars in 764 bytes} [Sat Aug 25 15:45:34 2018] GET /files/?sort=latest&page=78 => generated 23282 bytes in 161 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19577|app: 0|req: 398/2093] 203.208.60.32 () {38 vars in 859 bytes} [Sat Aug 25 15:45:37 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/__init__.py => generated 240518 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19580|app: 0|req: 265/2094] 203.208.60.97 () {38 vars in 877 bytes} [Sat Aug 25 15:45:40 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/reusable_executor.py => generated 240518 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19577|app: 0|req: 399/2095] 203.208.60.21 () {38 vars in 849 bytes} [Sat Aug 25 15:45:43 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/__init__.py => generated 240518 bytes in 29 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 304/2096] 203.208.60.82 () {38 vars in 839 bytes} [Sat Aug 25 15:45:46 2018] GET /projects/scikit-learn/sklearn/externals/joblib/my_exceptions.py => generated 240518 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 0) +[pid: 19582|app: 0|req: 305/2097] 203.208.60.77 () {38 vars in 875 bytes} [Sat Aug 25 15:45:49 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/process_executor.py => generated 240518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 486/2098] 203.208.60.95 () {38 vars in 831 bytes} [Sat Aug 25 15:45:52 2018] GET /projects/scikit-learn/sklearn/externals/joblib/backports.py => generated 240518 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 487/2099] 203.208.60.103 () {38 vars in 854 bytes} [Sat Aug 25 15:45:57 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/_base.py => generated 240518 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 306/2100] 203.208.60.76 () {38 vars in 821 bytes} [Sat Aug 25 15:46:01 2018] GET /projects/scikit-learn/sklearn/externals/joblib/disk.py => generated 240518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19582|app: 0|req: 307/2101] 203.208.60.30 () {38 vars in 827 bytes} [Sat Aug 25 15:46:06 2018] GET /projects/scikit-learn/sklearn/externals/joblib/_compat.py => generated 240518 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19582|app: 0|req: 308/2102] 203.208.60.77 () {38 vars in 764 bytes} [Sat Aug 25 15:46:15 2018] GET /files/?sort=latest&page=82 => generated 23393 bytes in 88 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 266/2103] 203.208.60.105 () {38 vars in 765 bytes} [Sat Aug 25 15:46:28 2018] GET /files/?sort=latest&page=83 => generated 23304 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 488/2104] 203.208.60.92 () {38 vars in 764 bytes} [Sat Aug 25 15:46:32 2018] GET /files/?sort=latest&page=79 => generated 23220 bytes in 86 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 489/2105] 203.208.60.69 () {38 vars in 764 bytes} [Sat Aug 25 15:46:36 2018] GET /files/?sort=latest&page=81 => generated 23240 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 281/2106] 203.208.60.17 () {38 vars in 764 bytes} [Sat Aug 25 15:46:40 2018] GET /files/?sort=latest&page=80 => generated 23321 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Internal Server Error: /projects/scikit-learn/sklearn/externals/joblib +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 171, in get + first_tabs_jstree_id = project_tree_obj.path_id_map[path] +KeyError: '/sklearn/externals/joblib' +[pid: 19577|app: 0|req: 400/2107] 203.208.60.30 () {38 vars in 805 bytes} [Sat Aug 25 15:46:48 2018] GET /projects/scikit-learn/sklearn/externals/joblib => generated 84338 bytes in 111 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 19577|app: 0|req: 401/2108] 203.208.60.55 () {38 vars in 805 bytes} [Sat Aug 25 15:46:59 2018] GET /projects/scikit-learn/sklearn/externals/six.py => generated 240518 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19578|app: 0|req: 282/2109] 203.208.60.121 () {38 vars in 816 bytes} [Sat Aug 25 15:47:00 2018] GET /projects/scikit-learn/sklearn/externals/__init__.py => generated 240518 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 283/2110] 203.208.60.10 () {38 vars in 871 bytes} [Sat Aug 25 15:47:00 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/queues.py => generated 240518 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19578|app: 0|req: 284/2111] 203.208.60.55 () {38 vars in 875 bytes} [Sat Aug 25 15:47:05 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/__init__.py => generated 240518 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +[pid: 19578|app: 0|req: 285/2112] 203.208.60.109 () {38 vars in 884 bytes} [Sat Aug 25 15:47:09 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/compat_posix.py => generated 240518 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 19584|app: 0|req: 490/2113] 203.208.60.55 () {38 vars in 883 bytes} [Sat Aug 25 15:47:13 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/compat_win32.py => generated 240518 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 364/2114] 203.208.60.19 () {38 vars in 887 bytes} [Sat Aug 25 15:47:17 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/_win_reduction.py => generated 240518 bytes in 49 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 19586|app: 0|req: 365/2115] 203.208.60.31 () {38 vars in 869 bytes} [Sat Aug 25 15:47:21 2018] GET /projects/scikit-learn/sklearn/externals/joblib/externals/loky/backend/spawn.py => generated 240518 bytes in 43 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 268/2116] 117.136.89.112 () {52 vars in 1380 bytes} [Sat Aug 25 15:47:52 2018] POST /operations/show_navigation/ => generated 260 bytes in 116 msecs (HTTP/1.1 200) 3 headers in 101 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 309/2117] 117.136.89.112 () {52 vars in 1333 bytes} [Sat Aug 25 15:47:52 2018] POST /operations/get_codereading_content/ => generated 12675 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 117 bytes (1 switches on core 0) +[pid: 19580|app: 0|req: 268/2118] 117.136.89.112 () {52 vars in 1358 bytes} [Sat Aug 25 15:47:52 2018] POST /operations/right/ => generated 5243 bytes in 146 msecs (HTTP/1.1 200) 3 headers in 102 bytes (2 switches on core 1) +[pid: 19586|app: 0|req: 366/2119] 203.208.60.64 () {38 vars in 768 bytes} [Sat Aug 25 15:48:11 2018] GET /files/?sort=latest&page=2075 => generated 23362 bytes in 130 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19586|app: 0|req: 367/2120] 203.208.60.50 () {38 vars in 638 bytes} [Sat Aug 25 15:48:12 2018] GET /files/?sort=latest&page=79 => generated 23220 bytes in 61 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 19584|app: 0|req: 491/2121] 117.136.89.112 () {52 vars in 1386 bytes} [Sat Aug 25 15:48:24 2018] POST /operations/show_issue_question/ => generated 486 bytes in 41 msecs (HTTP/1.1 200) 4 headers in 123 bytes (1 switches on core 1) +[pid: 19580|app: 0|req: 269/2122] 203.208.60.97 () {38 vars in 671 bytes} [Sat Aug 25 15:48:28 2018] GET /projects/Notes/res/raw-zh-rCN/introduction => generated 39376 bytes in 54 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 19582|app: 0|req: 310/2123] 203.208.60.49 () {38 vars in 791 bytes} [Sat Aug 25 15:49:20 2018] GET /projects/scikit-learn/sklearn/externals => generated 240518 bytes in 90 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 16:12:06 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x15a20c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x15a20c0 pid: 20756 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 20756) +spawned uWSGI worker 1 (pid: 20758, cores: 2) +spawned uWSGI worker 2 (pid: 20759, cores: 2) +spawned uWSGI worker 3 (pid: 20761, cores: 2) +spawned uWSGI worker 4 (pid: 20763, cores: 2) +spawned uWSGI worker 5 (pid: 20766, cores: 2) +spawned uWSGI worker 6 (pid: 20767, cores: 2) +SIGINT/SIGQUIT received...killing workers... +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 16:12:16 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x27170c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x27170c0 pid: 20774 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 20774) +spawned uWSGI worker 1 (pid: 20776, cores: 2) +spawned uWSGI worker 2 (pid: 20777, cores: 2) +spawned uWSGI worker 3 (pid: 20779, cores: 2) +spawned uWSGI worker 4 (pid: 20781, cores: 2) +spawned uWSGI worker 5 (pid: 20783, cores: 2) +spawned uWSGI worker 6 (pid: 20785, cores: 2) +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM WARNING: unix socket /projects/codepedia/codepedia2/my_sock.sock changed inode. Skip removal +[pid: 20779|app: 0|req: 1/1] 106.19.190.170 () {44 vars in 798 bytes} [Sat Aug 25 16:12:35 2018] GET / => generated 9722 bytes in 488 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +Not Found: /favicon.ico +[pid: 20783|app: 0|req: 1/2] 106.19.190.170 () {42 vars in 753 bytes} [Sat Aug 25 16:12:36 2018] GET /favicon.ico => generated 3104 bytes in 359 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 0) +[pid: 20779|app: 0|req: 2/3] 106.19.190.170 () {44 vars in 856 bytes} [Sat Aug 25 16:12:38 2018] GET /projects/scikit-learn/ => generated 240516 bytes in 39 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 20783|app: 0|req: 2/4] 106.19.190.170 () {52 vars in 1067 bytes} [Sat Aug 25 16:12:39 2018] POST /operations/get_addtab_paras/ => generated 74 bytes in 22 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) + +[pid: 20783|app: 0|req: 3/5] 106.19.190.170 () {52 vars in 1081 bytes} [Sat Aug 25 16:12:39 2018] POST /operations/get_codereading_content/ => generated 2566 bytes in 34 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 4/6] 106.19.190.170 () {52 vars in 1064 bytes} [Sat Aug 25 16:12:39 2018] POST /operations/show_navigation/ => generated 35 bytes in 39 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 4/7] 106.19.190.170 () {52 vars in 1044 bytes} [Sat Aug 25 16:12:39 2018] POST /operations/right/ => generated 5266 bytes in 70 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 20783|app: 0|req: 4/8] 106.19.190.170 () {52 vars in 1080 bytes} [Sat Aug 25 16:13:00 2018] POST /operations/get_codereading_content/ => generated 2218 bytes in 161 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 20779|app: 0|req: 5/9] 106.19.190.170 () {52 vars in 1102 bytes} [Sat Aug 25 16:13:00 2018] POST /operations/show_navigation/ => generated 173 bytes in 171 msecs (HTTP/1.1 200) 3 headers in 101 bytes (2 switches on core 1) +[pid: 20785|app: 0|req: 1/10] 106.19.190.170 () {52 vars in 1082 bytes} [Sat Aug 25 16:13:00 2018] POST /operations/right/ => generated 5250 bytes in 552 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 20785|app: 0|req: 2/11] 203.208.60.28 () {38 vars in 795 bytes} [Sat Aug 25 16:13:31 2018] GET /projects/tensorflow/third_party/sycl/sycl => generated 2729034 bytes in 295 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 20783|app: 0|req: 5/12] 106.19.190.170 () {40 vars in 853 bytes} [Sat Aug 25 16:13:50 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 319 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 20785|app: 0|req: 3/13] 106.19.190.170 () {42 vars in 835 bytes} [Sat Aug 25 16:13:53 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 187 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 20779|app: 0|req: 6/14] 106.19.190.170 () {44 vars in 870 bytes} [Sat Aug 25 16:14:00 2018] GET /users/login/ => generated 4861 bytes in 60 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +{'status': -1, 'message': '账号或密码错误!'} +[pid: 20779|app: 0|req: 7/15] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 16:14:05 2018] POST /users/login/ => generated 4886 bytes in 290 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 20785|app: 0|req: 4/16] 203.208.60.32 () {38 vars in 679 bytes} [Sat Aug 25 16:14:08 2018] GET /projects/tensorflow/third_party/mpi/.gitignore => generated 2729034 bytes in 215 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20781|app: 0|req: 1/17] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 16:14:09 2018] POST /users/login/ => generated 0 bytes in 525 msecs (HTTP/1.1 302) 6 headers in 268 bytes (2 switches on core 0) +[pid: 20785|app: 0|req: 5/18] 106.19.190.170 () {46 vars in 899 bytes} [Sat Aug 25 16:14:10 2018] GET / => generated 11521 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 20777|app: 0|req: 1/19] 106.19.190.170 () {44 vars in 914 bytes} [Sat Aug 25 16:14:14 2018] GET /users/login/ => generated 6660 bytes in 503 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 20776|app: 0|req: 1/20] 106.19.190.170 () {42 vars in 879 bytes} [Sat Aug 25 16:14:16 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732041 bytes in 584 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20781|app: 0|req: 2/21] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 16:14:23 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 25 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 20783|app: 0|req: 6/22] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 16:14:23 2018] POST /operations/get_codereading_content/ => generated 3920 bytes in 71 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 20781|app: 0|req: 3/23] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 16:14:23 2018] POST /operations/show_navigation/ => generated 35 bytes in 52 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 20785|app: 0|req: 6/24] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 16:14:23 2018] POST /operations/right/ => generated 37 bytes in 81 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[11, 24761] +, , , , ]> +5 +, , , , ]> +, ]> +]> +[11, 24761] +, , , , ]> +[pid: 20783|app: 0|req: 7/25] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 16:14:34 2018] POST /operations/show_annotation/ => generated 2296 bytes in 516 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 8/26] 117.136.89.112 () {44 vars in 1011 bytes} [Sat Aug 25 16:16:08 2018] GET /projects/ => generated 11508 bytes in 105 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 20781|app: 0|req: 4/27] 203.208.60.126 () {38 vars in 796 bytes} [Sat Aug 25 16:16:23 2018] GET /projects/pytorch/torch/legacy/__init__.py => generated 890014 bytes in 100 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20777|app: 0|req: 2/28] 117.136.89.112 () {44 vars in 1056 bytes} [Sat Aug 25 16:16:43 2018] GET /projects/tensorflow/ => generated 2732034 bytes in 211 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 20783|app: 0|req: 8/29] 117.136.89.112 () {52 vars in 1320 bytes} [Sat Aug 25 16:16:47 2018] POST /operations/get_addtab_paras/ => generated 73 bytes in 22 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 20776|app: 0|req: 2/30] 117.136.89.112 () {52 vars in 1317 bytes} [Sat Aug 25 16:16:47 2018] POST /operations/show_navigation/ => generated 35 bytes in 56 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +, , , ]> +4 +1 +1 +1 +[pid: 20777|app: 0|req: 3/31] 117.136.89.112 () {52 vars in 1334 bytes} [Sat Aug 25 16:16:47 2018] POST /operations/get_codereading_content/ => generated 3868 bytes in 117 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 20785|app: 0|req: 7/32] 117.136.89.112 () {52 vars in 1297 bytes} [Sat Aug 25 16:16:47 2018] POST /operations/right/ => generated 5260 bytes in 98 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 1) +[pid: 20776|app: 0|req: 3/33] 117.136.89.112 () {52 vars in 1333 bytes} [Sat Aug 25 16:16:54 2018] POST /operations/get_codereading_content/ => generated 3781 bytes in 99 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 20779|app: 0|req: 10/34] 117.136.89.112 () {52 vars in 1312 bytes} [Sat Aug 25 16:16:54 2018] POST /operations/right/ => generated 37 bytes in 139 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 10/35] 117.136.89.112 () {52 vars in 1332 bytes} [Sat Aug 25 16:16:54 2018] POST /operations/show_navigation/ => generated 35 bytes in 142 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[] + +0 + +]> + +[] + +[pid: 20779|app: 0|req: 11/36] 117.136.89.112 () {52 vars in 1332 bytes} [Sat Aug 25 16:16:56 2018] POST /operations/show_annotation/ => generated 310 bytes in 485 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[] + +0 + +]> + +[] + +[pid: 20785|app: 0|req: 8/37] 117.136.89.112 () {52 vars in 1332 bytes} [Sat Aug 25 16:16:58 2018] POST /operations/show_annotation/ => generated 310 bytes in 508 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[] + +0 + +, ]> + +[] + +[pid: 20777|app: 0|req: 4/38] 117.136.89.112 () {52 vars in 1332 bytes} [Sat Aug 25 16:16:59 2018] POST /operations/show_annotation/ => generated 310 bytes in 417 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[] + +0 + +, ]> + +[] + +[pid: 20777|app: 0|req: 5/39] 117.136.89.112 () {52 vars in 1332 bytes} [Sat Aug 25 16:17:00 2018] POST /operations/show_annotation/ => generated 310 bytes in 372 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 0) +[pid: 20779|app: 0|req: 12/40] 203.208.60.98 () {38 vars in 673 bytes} [Sat Aug 25 16:17:49 2018] GET /projects/pytorch/tools/setup_helpers/env.py => generated 890014 bytes in 172 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20779|app: 0|req: 13/41] 203.208.60.97 () {38 vars in 797 bytes} [Sat Aug 25 16:21:04 2018] GET /projects/tensorflow/third_party/sycl/BUILD => generated 2729034 bytes in 279 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 20779|app: 0|req: 14/42] 203.208.60.70 () {38 vars in 679 bytes} [Sat Aug 25 16:21:31 2018] GET /projects/Notes/res/menu/note_list_dropdown.xml => generated 39376 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 20779|app: 0|req: 15/43] 203.208.60.64 () {38 vars in 797 bytes} [Sat Aug 25 16:22:08 2018] GET /projects/pytorch/caffe2/core/common_gpu.cc => generated 890014 bytes in 171 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 20779|app: 0|req: 16/44] 203.208.60.115 () {38 vars in 798 bytes} [Sat Aug 25 16:25:00 2018] GET /projects/tensorflow/tensorflow/go/graph.go => generated 2729036 bytes in 279 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 20776|app: 0|req: 4/45] 203.208.60.8 () {38 vars in 680 bytes} [Sat Aug 25 16:25:31 2018] GET /projects/tensorflow/third_party/toolchains/gpus => generated 2729034 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20783|app: 0|req: 9/46] 203.208.60.121 () {38 vars in 800 bytes} [Sat Aug 25 16:27:52 2018] GET /projects/tensorflow/third_party/kafka/BUILD => generated 2729034 bytes in 245 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20785|app: 0|req: 9/47] 58.217.192.54 () {40 vars in 649 bytes} [Sat Aug 25 16:28:02 2018] GET / => generated 9722 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 20785|app: 0|req: 10/48] 85.105.77.174 () {32 vars in 468 bytes} [Sat Aug 25 16:28:07 2018] GET / => generated 9722 bytes in 38 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 20783|app: 0|req: 10/49] 203.208.60.37 () {38 vars in 683 bytes} [Sat Aug 25 16:28:50 2018] GET /projects/pytorch/scripts/onnx/install-develop.sh => generated 890012 bytes in 144 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20777|app: 0|req: 6/50] 203.208.60.55 () {38 vars in 799 bytes} [Sat Aug 25 16:30:44 2018] GET /projects/pytorch/caffe2/python/numa_test.py => generated 890014 bytes in 141 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 20776|app: 0|req: 5/51] 203.208.60.123 () {38 vars in 674 bytes} [Sat Aug 25 16:32:31 2018] GET /projects/tensorflow/third_party/mpi/mpi.bzl => generated 2729034 bytes in 270 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 20779|app: 0|req: 17/52] 203.208.60.87 () {38 vars in 801 bytes} [Sat Aug 25 16:33:36 2018] GET /projects/tensorflow/third_party/eigen3/BUILD => generated 2729034 bytes in 289 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 20783|app: 0|req: 11/53] 14.102.76.14 () {32 vars in 461 bytes} [Sat Aug 25 16:35:21 2018] GET / => generated 9722 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 18/54] 203.208.60.116 () {38 vars in 686 bytes} [Sat Aug 25 16:36:12 2018] GET /projects/scikit-learn/sklearn/utils/fast_dict.pxd => generated 240518 bytes in 109 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 20783|app: 0|req: 12/55] 203.208.60.12 () {38 vars in 801 bytes} [Sat Aug 25 16:36:28 2018] GET /projects/tensorflow/third_party/eigen3/Eigen => generated 2729033 bytes in 214 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 20785|app: 0|req: 11/56] 203.208.60.17 () {38 vars in 741 bytes} [Sat Aug 25 16:39:37 2018] GET /projects/tensorflow/tensorflow/python/keras/layers/convolutional_recurrent.py => generated 2729035 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20781|app: 0|req: 5/57] 203.208.60.35 () {38 vars in 765 bytes} [Sat Aug 25 16:39:44 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.train.-adam-optimizer.pbtxt => generated 2729035 bytes in 174 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 20783|app: 0|req: 13/58] 203.208.60.44 () {38 vars in 673 bytes} [Sat Aug 25 16:39:53 2018] GET /projects/tensorflow/tensorflow/go/README.md => generated 2729036 bytes in 185 msecs (HTTP/1.1 200) 4 headers in 127 bytes (6 switches on core 1) +[pid: 20785|app: 0|req: 12/59] 203.208.60.109 () {38 vars in 694 bytes} [Sat Aug 25 16:39:53 2018] GET /projects/tensorflow/tensorflow/contrib/training/BUILD => generated 2729035 bytes in 167 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 20785|app: 0|req: 13/60] 203.208.60.32 () {38 vars in 723 bytes} [Sat Aug 25 16:40:01 2018] GET /projects/tensorflow/tensorflow/python/ops/nn_fused_batchnorm_test.py => generated 2729035 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 20785|app: 0|req: 14/61] 203.208.60.88 () {38 vars in 801 bytes} [Sat Aug 25 16:40:03 2018] GET /projects/tensorflow/third_party/py/BUILD.tpl => generated 2729033 bytes in 156 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 20776|app: 0|req: 6/62] 203.208.60.35 () {38 vars in 755 bytes} [Sat Aug 25 16:40:10 2018] GET /projects/tensorflow/tensorflow/python/profiler/internal/print_model_analysis_test.py => generated 2729035 bytes in 212 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 20777|app: 0|req: 7/63] 203.208.60.98 () {38 vars in 763 bytes} [Sat Aug 25 16:40:19 2018] GET /projects/tensorflow/tensorflow/python/kernel_tests/sparse_tensor_dense_matmul_op_test.py => generated 2729035 bytes in 170 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20776|app: 0|req: 7/64] 203.208.60.80 () {38 vars in 745 bytes} [Sat Aug 25 16:40:27 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v2/tensorflow.nn.rnn_cell.pbtxt => generated 2729035 bytes in 170 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 0) +[pid: 20779|app: 0|req: 19/65] 203.208.60.3 () {38 vars in 764 bytes} [Sat Aug 25 16:40:36 2018] GET /projects/tensorflow/tensorflow/tools/api/golden/v1/tensorflow.-random-shuffle-queue.pbtxt => generated 2729035 bytes in 201 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20785|app: 0|req: 15/66] 203.208.60.123 () {38 vars in 718 bytes} [Sat Aug 25 16:40:45 2018] GET /projects/tensorflow/tensorflow/stream_executor/cuda/cuda_stream.h => generated 2729035 bytes in 204 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20783|app: 0|req: 14/67] 203.208.60.126 () {38 vars in 720 bytes} [Sat Aug 25 16:41:03 2018] GET /projects/tensorflow/tensorflow/python/framework/op_def_registry.py => generated 2729035 bytes in 255 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20783|app: 0|req: 15/68] 203.208.60.8 () {38 vars in 802 bytes} [Sat Aug 25 16:42:16 2018] GET /projects/pytorch/caffe2/python/net_builder.py => generated 890014 bytes in 139 msecs (HTTP/1.1 200) 4 headers in 126 bytes (4 switches on core 1) +[pid: 20785|app: 0|req: 16/69] 203.208.60.37 () {38 vars in 689 bytes} [Sat Aug 25 16:43:33 2018] GET /projects/pytorch/caffe2/operators/conv_op_shared.cc => generated 890014 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 20779|app: 0|req: 20/70] 203.208.60.44 () {38 vars in 803 bytes} [Sat Aug 25 16:45:43 2018] GET /projects/pytorch/caffe2/python/regularizer.py => generated 890014 bytes in 161 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20776|app: 0|req: 8/71] 203.208.60.76 () {38 vars in 675 bytes} [Sat Aug 25 16:47:14 2018] GET /projects/pytorch/torch/autograd/grad_mode.py => generated 890014 bytes in 134 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20779|app: 0|req: 21/72] 203.208.60.74 () {38 vars in 803 bytes} [Sat Aug 25 16:47:58 2018] GET /projects/tensorflow/third_party/git/BUILD.tpl => generated 2729034 bytes in 287 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20779|app: 0|req: 22/73] 203.208.60.121 () {38 vars in 698 bytes} [Sat Aug 25 16:50:55 2018] GET /projects/pytorch/caffe2/operators/reservoir_sampling.cc => generated 890014 bytes in 157 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20781|app: 0|req: 6/74] 203.208.60.50 () {38 vars in 803 bytes} [Sat Aug 25 16:51:13 2018] GET /projects/tensorflow/third_party/hadoop/hdfs.h => generated 2729034 bytes in 203 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +Internal Server Error: /projects/45/files/2226/functions/12239/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/projects/views.py", line 167, in get + project_tree = project_tree_obj.getHtml(settings.SOURCEPATH+project.path) +AttributeError: 'NoneType' object has no attribute 'path' +[pid: 20783|app: 0|req: 16/75] 203.208.60.8 () {38 vars in 790 bytes} [Sat Aug 25 16:53:20 2018] GET /projects/45/files/2226/functions/12239/ => generated 77656 bytes in 130 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +Not Found: /favicon.ico +[pid: 20785|app: 0|req: 17/76] 203.208.60.32 () {38 vars in 496 bytes} [Sat Aug 25 16:53:32 2018] GET /favicon.ico => generated 3104 bytes in 42 msecs (HTTP/1.1 404) 3 headers in 102 bytes (2 switches on core 1) +Not Found: /favicon.ico +[pid: 20776|app: 0|req: 9/77] 203.208.60.76 () {38 vars in 496 bytes} [Sat Aug 25 16:53:32 2018] GET /favicon.ico => generated 3104 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 20777|app: 0|req: 8/78] 203.208.60.70 () {38 vars in 697 bytes} [Sat Aug 25 16:54:35 2018] GET /projects/scikit-learn/doc/templates/class_with_call.rst => generated 240519 bytes in 79 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 20779|app: 0|req: 23/79] 158.174.131.53 () {38 vars in 528 bytes} [Sat Aug 25 16:54:46 2018] GET / => generated 9722 bytes in 131 msecs (HTTP/1.0 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 20781|app: 0|req: 7/80] 203.208.60.28 () {38 vars in 805 bytes} [Sat Aug 25 16:54:56 2018] GET /projects/tensorflow/third_party/protobuf/BUILD => generated 2729034 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20777|app: 0|req: 9/81] 203.208.60.53 () {38 vars in 805 bytes} [Sat Aug 25 16:56:35 2018] GET /projects/tensorflow/third_party/sycl/crosstool => generated 2729034 bytes in 241 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 20777|app: 0|req: 10/82] 203.208.60.64 () {38 vars in 703 bytes} [Sat Aug 25 16:58:16 2018] GET /projects/tensorflow/third_party/flatbuffers/build_defs.bzl => generated 2729034 bytes in 225 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 0) +[pid: 20785|app: 0|req: 18/83] 203.208.60.19 () {38 vars in 807 bytes} [Sat Aug 25 17:00:48 2018] GET /projects/pytorch/caffe2/python/memonger_test.py => generated 890014 bytes in 133 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20777|app: 0|req: 11/84] 203.208.60.78 () {38 vars in 677 bytes} [Sat Aug 25 17:01:56 2018] GET /projects/pytorch/caffe2/operators/matmul_op.h => generated 890014 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +Not Found: /phpmyadmin +[pid: 20776|app: 0|req: 10/85] 103.212.33.249 () {40 vars in 607 bytes} [Sat Aug 25 17:02:06 2018] GET /phpmyadmin => generated 3095 bytes in 12 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 20776|app: 0|req: 11/86] 203.208.60.82 () {38 vars in 809 bytes} [Sat Aug 25 17:02:21 2018] GET /projects/pytorch/caffe2/operators/accuracy_op.cu => generated 890014 bytes in 118 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 20779|app: 0|req: 24/87] 203.208.60.77 () {38 vars in 811 bytes} [Sat Aug 25 17:05:24 2018] GET /projects/Notes/res/layout/note_edit_list_item.xml => generated 39377 bytes in 96 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 20779|app: 0|req: 25/88] 203.208.60.62 () {38 vars in 811 bytes} [Sat Aug 25 17:08:06 2018] GET /projects/scikit-learn/sklearn/metrics/__init__.py => generated 240518 bytes in 108 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 1) +[pid: 20783|app: 0|req: 17/89] 203.208.60.37 () {38 vars in 709 bytes} [Sat Aug 25 17:09:09 2018] GET /projects/tensorflow/third_party/systemlibs/build_defs.bzl.tpl => generated 2729033 bytes in 269 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 20783|app: 0|req: 18/90] 203.208.60.32 () {38 vars in 677 bytes} [Sat Aug 25 17:09:16 2018] GET /projects/Notes/res/menu/note_list_options.xml => generated 39376 bytes in 20 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 20783|app: 0|req: 19/91] 203.208.60.92 () {38 vars in 811 bytes} [Sat Aug 25 17:11:10 2018] GET /projects/pytorch/.git/hooks/pre-applypatch.sample => generated 890014 bytes in 156 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20779|app: 0|req: 26/92] 203.208.60.32 () {38 vars in 711 bytes} [Sat Aug 25 17:12:57 2018] GET /projects/pytorch/test/expect/TestTorch.test_print-dtype.expect => generated 890014 bytes in 156 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 20779|app: 0|req: 27/93] 203.208.60.109 () {38 vars in 814 bytes} [Sat Aug 25 17:15:49 2018] GET /projects/tensorflow/third_party/kafka/config.patch => generated 2729034 bytes in 270 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 20783|app: 0|req: 20/94] 203.208.60.1 () {38 vars in 676 bytes} [Sat Aug 25 17:16:37 2018] GET /projects/pytorch/.jenkins/pytorch/win-test.sh => generated 890014 bytes in 141 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 20776|app: 0|req: 12/95] 203.208.60.97 () {38 vars in 813 bytes} [Sat Aug 25 17:16:43 2018] GET /projects/scikit-learn/sklearn/utils/arrayfuncs.pyx => generated 240518 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +[pid: 20783|app: 0|req: 21/96] 203.208.60.49 () {38 vars in 679 bytes} [Sat Aug 25 17:20:19 2018] GET /projects/tensorflow/tensorflow/compiler/plugin => generated 2729035 bytes in 260 msecs (HTTP/1.1 200) 4 headers in 127 bytes (15 switches on core 1) +[pid: 20779|app: 0|req: 28/97] 203.208.60.116 () {38 vars in 814 bytes} [Sat Aug 25 17:20:30 2018] GET /projects/pytorch/tools/setup_helpers/dist_check.py => generated 890014 bytes in 136 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 20779|app: 0|req: 29/98] 203.208.60.64 () {38 vars in 815 bytes} [Sat Aug 25 17:22:29 2018] GET /projects/tensorflow/third_party/py/remote.BUILD.tpl => generated 2729033 bytes in 259 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 20783|app: 0|req: 22/99] 203.208.60.44 () {38 vars in 711 bytes} [Sat Aug 25 17:23:58 2018] GET /projects/pytorch/caffe2/operators/ctc_beam_search_decoder_op.h => generated 890014 bytes in 152 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 20785|app: 0|req: 19/100] 203.208.60.26 () {38 vars in 819 bytes} [Sat Aug 25 17:25:33 2018] GET /projects/pytorch/caffe2/operators/bbox_transform_op.h => generated 890014 bytes in 148 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 20779|app: 0|req: 30/101] 203.208.60.92 () {38 vars in 679 bytes} [Sat Aug 25 17:27:39 2018] GET /projects/Notes/res/menu/call_record_folder.xml => generated 39376 bytes in 106 msecs (HTTP/1.1 200) 4 headers in 125 bytes (2 switches on core 1) +[pid: 20783|app: 0|req: 23/102] 203.208.60.77 () {38 vars in 819 bytes} [Sat Aug 25 17:28:14 2018] GET /projects/tensorflow/third_party/git/git_configure.bzl => generated 2729034 bytes in 287 msecs (HTTP/1.1 200) 4 headers in 127 bytes (16 switches on core 1) +[pid: 20779|app: 0|req: 31/103] 203.208.60.121 () {38 vars in 820 bytes} [Sat Aug 25 17:31:08 2018] GET /projects/pytorch/test/expect/TestJit.test_conv.expect => generated 890014 bytes in 164 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 20779|app: 0|req: 32/104] 203.208.60.98 () {38 vars in 707 bytes} [Sat Aug 25 17:31:19 2018] GET /projects/pytorch/third_party/nccl/debian/libnccl1.install.in => generated 890014 bytes in 97 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 0) +[pid: 20781|app: 0|req: 8/105] 203.208.60.62 () {38 vars in 679 bytes} [Sat Aug 25 17:35:00 2018] GET /projects/tensorflow/tensorflow/docs_src/deploy => generated 2729034 bytes in 217 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 20785|app: 0|req: 20/106] 203.208.60.64 () {38 vars in 821 bytes} [Sat Aug 25 17:35:28 2018] GET /projects/scikit-learn/examples/mixture/plot_gmm_pdf.py => generated 240518 bytes in 47 msecs (HTTP/1.1 200) 4 headers in 126 bytes (3 switches on core 1) +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 17:36:51 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x26ec0c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x26ec0c0 pid: 21005 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 21005) +spawned uWSGI worker 1 (pid: 21007, cores: 2) +spawned uWSGI worker 2 (pid: 21008, cores: 2) +spawned uWSGI worker 3 (pid: 21010, cores: 2) +spawned uWSGI worker 4 (pid: 21011, cores: 2) +spawned uWSGI worker 5 (pid: 21014, cores: 2) +spawned uWSGI worker 6 (pid: 21016, cores: 2) +[pid: 21007|app: 0|req: 1/1] 203.208.60.32 () {38 vars in 823 bytes} [Sat Aug 25 17:36:52 2018] GET /projects/pytorch/caffe2/operators/reservoir_sampling.cc => generated 890014 bytes in 484 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 21008|app: 0|req: 1/2] 106.19.190.170 () {44 vars in 910 bytes} [Sat Aug 25 17:36:56 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 603 msecs (HTTP/1.1 200) 4 headers in 198 bytes (14 switches on core 0) +[pid: 21007|app: 0|req: 2/3] 106.19.190.170 () {44 vars in 798 bytes} [Sat Aug 25 17:37:03 2018] GET / => generated 9722 bytes in 37 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +[pid: 21007|app: 0|req: 3/4] 106.19.190.170 () {52 vars in 1079 bytes} [Sat Aug 25 17:37:03 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 6 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 0) +[pid: 21016|app: 0|req: 2/5] 106.19.190.170 () {52 vars in 1093 bytes} [Sat Aug 25 17:37:03 2018] POST /operations/get_codereading_content/ => generated 3766 bytes in 427 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 21016|app: 0|req: 2/6] 106.19.190.170 () {52 vars in 1077 bytes} [Sat Aug 25 17:37:03 2018] POST /operations/show_navigation/ => generated 35 bytes in 430 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 1) +[pid: 21014|app: 0|req: 1/7] 106.19.190.170 () {52 vars in 1057 bytes} [Sat Aug 25 17:37:03 2018] POST /operations/right/ => generated 37 bytes in 451 msecs (HTTP/1.1 200) 3 headers in 100 bytes (2 switches on core 0) +[pid: 21007|app: 0|req: 4/8] 203.208.60.35 () {38 vars in 683 bytes} [Sat Aug 25 17:38:41 2018] GET /projects/tensorflow/third_party/tensorrt/LICENSE => generated 2729034 bytes in 232 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 17:39:06 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x19230c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x19230c0 pid: 21067 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 21067) +spawned uWSGI worker 1 (pid: 21069, cores: 2) +spawned uWSGI worker 2 (pid: 21070, cores: 2) +spawned uWSGI worker 3 (pid: 21072, cores: 2) +spawned uWSGI worker 4 (pid: 21074, cores: 2) +spawned uWSGI worker 5 (pid: 21076, cores: 2) +spawned uWSGI worker 6 (pid: 21078, cores: 2) +[pid: 21076|app: 0|req: 1/1] 106.19.190.170 () {44 vars in 798 bytes} [Sat Aug 25 17:39:13 2018] GET / => generated 9722 bytes in 447 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 21069|app: 0|req: 1/2] 106.19.190.170 () {44 vars in 836 bytes} [Sat Aug 25 17:40:36 2018] GET /users/login/ => generated 4861 bytes in 498 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 21072|app: 0|req: 1/3] 203.208.60.77 () {38 vars in 823 bytes} [Sat Aug 25 17:40:45 2018] GET /projects/scikit-learn/examples/decomposition/README.txt => generated 240518 bytes in 499 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +{'status': 1, 'user_id': 24759, 'message': '登陆成功!'} +[pid: 21076|app: 0|req: 2/4] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 17:40:55 2018] POST /users/login/ => generated 0 bytes in 677 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 0) +[pid: 21076|app: 0|req: 3/5] 106.19.190.170 () {46 vars in 899 bytes} [Sat Aug 25 17:40:56 2018] GET / => generated 11508 bytes in 26 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 21072|app: 0|req: 2/6] 106.19.190.170 () {40 vars in 853 bytes} [Sat Aug 25 17:41:17 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 233 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 21070|app: 0|req: 1/7] 106.19.190.170 () {42 vars in 879 bytes} [Sat Aug 25 17:41:19 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732034 bytes in 636 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21078|app: 0|req: 1/8] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 17:41:26 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 442 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21078|app: 0|req: 3/9] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 17:41:26 2018] POST /operations/get_codereading_content/ => generated 3766 bytes in 53 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 21078|app: 0|req: 3/10] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:41:27 2018] POST /operations/show_navigation/ => generated 35 bytes in 52 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21078|app: 0|req: 4/11] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 17:41:27 2018] POST /operations/right/ => generated 37 bytes in 74 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21076|app: 0|req: 4/12] 106.19.190.170 () {44 vars in 910 bytes} [Sat Aug 25 17:41:34 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732034 bytes in 210 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 1) +[pid: 21076|app: 0|req: 5/13] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 17:41:41 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 21 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21072|app: 0|req: 4/14] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 17:41:41 2018] POST /operations/right/ => generated 37 bytes in 148 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21072|app: 0|req: 4/15] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:41:41 2018] POST /operations/show_navigation/ => generated 35 bytes in 153 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21074|app: 0|req: 1/16] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 17:41:41 2018] POST /operations/get_codereading_content/ => generated 3766 bytes in 460 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 21074|app: 0|req: 2/17] 106.19.190.170 () {44 vars in 918 bytes} [Sat Aug 25 17:41:45 2018] GET /users/userinfo => generated 18769 bytes in 84 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Not Found: /images/send.png +[pid: 21070|app: 0|req: 2/18] 106.19.190.170 () {42 vars in 819 bytes} [Sat Aug 25 17:41:45 2018] GET /images/send.png => generated 3116 bytes in 7 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 21069|app: 0|req: 2/19] 106.19.190.170 () {42 vars in 899 bytes} [Sat Aug 25 17:41:45 2018] GET /captcha/image/5f3c00e47fb1be12d2fd15b9a860711597721b3f/ => generated 0 bytes in 23 msecs (HTTP/1.1 410) 3 headers in 109 bytes (1 switches on core 1) +[pid: 21070|app: 0|req: 3/20] 106.19.190.170 () {50 vars in 1053 bytes} [Sat Aug 25 17:41:48 2018] POST /users/userinfo => generated 78 bytes in 19 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21069|app: 0|req: 3/21] 106.19.190.170 () {50 vars in 1053 bytes} [Sat Aug 25 17:42:00 2018] POST /users/userinfo => generated 20 bytes in 75 msecs (HTTP/1.1 200) 4 headers in 114 bytes (1 switches on core 0) +[pid: 21070|app: 0|req: 4/22] 106.19.190.170 () {44 vars in 898 bytes} [Sat Aug 25 17:42:02 2018] GET /users/userinfo => generated 18824 bytes in 30 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +Not Found: /images/send.png +[pid: 21072|app: 0|req: 5/23] 106.19.190.170 () {42 vars in 819 bytes} [Sat Aug 25 17:42:02 2018] GET /images/send.png => generated 3116 bytes in 11 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 21074|app: 0|req: 3/24] 106.19.190.170 () {44 vars in 910 bytes} [Sat Aug 25 17:42:07 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732034 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21074|app: 0|req: 4/25] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 17:42:13 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 24 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21072|app: 0|req: 6/26] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:13 2018] POST /operations/show_navigation/ => generated 35 bytes in 69 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21074|app: 0|req: 5/27] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 17:42:13 2018] POST /operations/get_codereading_content/ => generated 3766 bytes in 80 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 0) +[pid: 21076|app: 0|req: 6/28] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 17:42:13 2018] POST /operations/right/ => generated 37 bytes in 84 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21078|app: 0|req: 5/29] 203.208.60.49 () {38 vars in 687 bytes} [Sat Aug 25 17:42:21 2018] GET /projects/tensorflow/third_party/mkl/build_defs.bzl => generated 2729034 bytes in 285 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21078|app: 0|req: 6/30] 106.19.190.170 () {52 vars in 1119 bytes} [Sat Aug 25 17:42:24 2018] POST /operations/add_annotation/ => generated 68 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 114 bytes (1 switches on core 1) +[] + +0 + +]> + +[] + +[pid: 21074|app: 0|req: 6/31] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:26 2018] POST /operations/show_annotation/ => generated 310 bytes in 527 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[] + +0 + +]> + +[] + +[pid: 21078|app: 0|req: 7/32] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:28 2018] POST /operations/show_annotation/ => generated 310 bytes in 397 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[] + +0 + +]> + +[] + +[pid: 21076|app: 0|req: 7/33] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:29 2018] POST /operations/show_annotation/ => generated 310 bytes in 445 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[] + +0 + +]> + +[] + +[pid: 21069|app: 0|req: 4/34] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:30 2018] POST /operations/show_annotation/ => generated 310 bytes in 443 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[] + +0 + +]> + +[] + +[pid: 21076|app: 0|req: 8/35] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:31 2018] POST /operations/show_annotation/ => generated 310 bytes in 402 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[] + +0 + +]> + +[] + +[pid: 21069|app: 0|req: 5/36] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:32 2018] POST /operations/show_annotation/ => generated 310 bytes in 388 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 0) +[] + +0 + +]> + +[] + +[pid: 21078|app: 0|req: 8/37] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 17:42:33 2018] POST /operations/show_annotation/ => generated 310 bytes in 463 msecs (HTTP/1.1 200) 4 headers in 115 bytes (1 switches on core 1) +[pid: 21078|app: 0|req: 9/38] 203.208.60.37 () {38 vars in 823 bytes} [Sat Aug 25 17:42:37 2018] GET /projects/tensorflow/third_party/sycl/sycl_configure.bzl => generated 2729034 bytes in 188 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +tensorflow +[pid: 21078|app: 0|req: 10/39] 106.19.190.170 () {42 vars in 811 bytes} [Sat Aug 25 17:43:37 2018] GET / => generated 11508 bytes in 36 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 21078|app: 0|req: 11/40] 106.19.190.170 () {44 vars in 900 bytes} [Sat Aug 25 17:43:40 2018] GET /projects/scikit-learn/ => generated 243518 bytes in 32 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 21078|app: 0|req: 12/41] 106.19.190.170 () {52 vars in 1111 bytes} [Sat Aug 25 17:43:41 2018] POST /operations/get_addtab_paras/ => generated 74 bytes in 6 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) + +[pid: 21078|app: 0|req: 13/42] 106.19.190.170 () {52 vars in 1125 bytes} [Sat Aug 25 17:43:41 2018] POST /operations/get_codereading_content/ => generated 2566 bytes in 22 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +[pid: 21078|app: 0|req: 14/43] 106.19.190.170 () {52 vars in 1108 bytes} [Sat Aug 25 17:43:41 2018] POST /operations/show_navigation/ => generated 35 bytes in 16 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21076|app: 0|req: 10/44] 106.19.190.170 () {52 vars in 1088 bytes} [Sat Aug 25 17:43:41 2018] POST /operations/right/ => generated 5266 bytes in 64 msecs (HTTP/1.1 200) 3 headers in 102 bytes (1 switches on core 0) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 18:06:59 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x26ab0c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x26ab0c0 pid: 21514 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 21514) +spawned uWSGI worker 1 (pid: 21516, cores: 2) +spawned uWSGI worker 2 (pid: 21517, cores: 2) +spawned uWSGI worker 3 (pid: 21519, cores: 2) +spawned uWSGI worker 4 (pid: 21522, cores: 2) +spawned uWSGI worker 5 (pid: 21524, cores: 2) +spawned uWSGI worker 6 (pid: 21526, cores: 2) +[pid: 21526|app: 0|req: 1/1] 106.19.190.170 () {44 vars in 842 bytes} [Sat Aug 25 18:07:08 2018] GET / => generated 9722 bytes in 492 msecs (HTTP/1.1 200) 4 headers in 195 bytes (1 switches on core 0) +[pid: 21517|app: 0|req: 1/2] 106.19.190.170 () {44 vars in 836 bytes} [Sat Aug 25 18:07:10 2018] GET /users/login/ => generated 4861 bytes in 436 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +Internal Server Error: /users/login/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/users/views.py", line 318, in post + return self.login_educoder(email,pass_word,request) + File "/projects/codepedia/codepedia2/apps/users/views.py", line 234, in login_educoder + email = response['email'] +KeyError: 'email' +[pid: 21517|app: 0|req: 2/3] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:07:30 2018] POST /users/login/ => generated 84176 bytes in 312 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 21522|app: 0|req: 1/4] 203.208.60.70 () {38 vars in 759 bytes} [Sat Aug 25 18:08:05 2018] GET /projects/tensorflow/tensorflow/contrib/learn/python/learn/utils/input_fn_utils_test.py => generated 2729035 bytes in 707 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21526|app: 0|req: 2/5] 203.208.60.103 () {38 vars in 826 bytes} [Sat Aug 25 18:08:29 2018] GET /projects/pytorch/caffe2/operators/roi_align_rotated_op.h => generated 890014 bytes in 115 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 21516|app: 0|req: 1/6] 123.125.71.103 () {38 vars in 519 bytes} [Sat Aug 25 18:10:34 2018] GET / => generated 9722 bytes in 534 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 21526|app: 0|req: 3/7] 43.245.202.8 () {32 vars in 467 bytes} [Sat Aug 25 18:10:43 2018] GET / => generated 9722 bytes in 68 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 21524|app: 0|req: 1/8] 203.208.60.62 () {38 vars in 825 bytes} [Sat Aug 25 18:11:21 2018] GET /projects/pytorch/test/expect/TestJit.test_alexnet.expect => generated 890014 bytes in 570 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 0) +[pid: 21519|app: 0|req: 1/9] 203.208.60.21 () {38 vars in 691 bytes} [Sat Aug 25 18:11:45 2018] GET /projects/tensorflow/third_party/python_runtime/BUILD => generated 2729033 bytes in 625 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21516|app: 0|req: 2/10] 106.19.190.170 () {42 vars in 791 bytes} [Sat Aug 25 18:14:07 2018] GET /users/login/ => generated 4861 bytes in 33 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 21517|app: 0|req: 3/11] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:14:16 2018] POST /users/login/ => generated 4888 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 21517|app: 0|req: 4/12] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:14:29 2018] POST /users/login/ => generated 4888 bytes in 160 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +Internal Server Error: /users/login/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/users/views.py", line 318, in post + return self.login_default(email,pass_word,request) + File "/projects/codepedia/codepedia2/apps/users/views.py", line 234, in login_educoder + # 因为用户可能是邮箱也可能是用户名登录,所以先获取到educoder用户的用户名 +KeyError: 'email' +[pid: 21516|app: 0|req: 3/13] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:14:40 2018] POST /users/login/ => generated 84388 bytes in 279 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 0) +[pid: 21519|app: 0|req: 2/14] 203.208.60.98 () {38 vars in 667 bytes} [Sat Aug 25 18:15:26 2018] GET /projects/Notes/src/net/micode/notes/tool => generated 39377 bytes in 52 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 21526|app: 0|req: 4/15] 106.19.190.170 () {42 vars in 791 bytes} [Sat Aug 25 18:15:30 2018] GET /users/login/ => generated 4861 bytes in 18 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +Internal Server Error: /users/login/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/users/views.py", line 318, in post + if choice == 1: + File "/projects/codepedia/codepedia2/apps/users/views.py", line 234, in login_educoder + # 因为用户可能是邮箱也可能是用户名登录,所以先获取到educoder用户的用户名 +KeyError: 'email' +[pid: 21516|app: 0|req: 4/16] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:15:52 2018] POST /users/login/ => generated 84357 bytes in 300 msecs (HTTP/1.1 500) 4 headers in 129 bytes (1 switches on core 1) +[pid: 21516|app: 0|req: 5/17] 203.208.60.62 () {38 vars in 827 bytes} [Sat Aug 25 18:16:06 2018] GET /projects/scikit-learn/examples/manifold/plot_swissroll.py => generated 240518 bytes in 65 msecs (HTTP/1.1 200) 4 headers in 126 bytes (1 switches on core 0) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. +*** Starting uWSGI 2.0.17 (64bit) on [Sat Aug 25 18:17:22 2018] *** +compiled with version: 4.7.4 on 01 July 2018 07:56:49 +os: Linux-4.4.0-112-generic #135-Ubuntu SMP Fri Jan 19 11:48:36 UTC 2018 +nodename: 10-23-6-29 +machine: x86_64 +clock source: unix +detected number of CPU cores: 4 +current working directory: /projects/codepedia/codepedia2 +writing pidfile to uwsgi.pid +detected binary path: /root//envs/codepedia2/bin/uwsgi +!!! no internal routing support, rebuild with pcre support !!! +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +chdir() to /projects/codepedia/codepedia2/ +your processes number limit is 64113 +your memory page size is 4096 bytes +detected max file descriptor number: 1000000 +lock engine: pthread robust mutexes +thunder lock: disabled (you can enable it with --thunder-lock) +uwsgi socket 0 bound to UNIX address /projects/codepedia/codepedia2/my_sock.sock fd 3 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +Python version: 3.6.5 |Anaconda, Inc.| (default, Apr 29 2018, 16:14:56) [GCC 7.2.0] +Python main interpreter initialized at 0x24750c0 +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +python threads support enabled +your server socket listen backlog is limited to 100 connections +your mercy for graceful operations on workers is 60 seconds +mapped 583408 bytes (569 KB) for 12 cores +*** Operational MODE: preforking+threaded *** +WSGI app 0 (mountpoint='') ready in 1 seconds on interpreter 0x24750c0 pid: 21646 (default app) +uWSGI running as root, you can use --uid/--gid/--chroot options +*** WARNING: you are running uWSGI as root !!! (use the --uid flag) *** +*** uWSGI is running in multiple interpreter mode *** +spawned uWSGI master process (pid: 21646) +spawned uWSGI worker 1 (pid: 21648, cores: 2) +spawned uWSGI worker 2 (pid: 21649, cores: 2) +spawned uWSGI worker 3 (pid: 21651, cores: 2) +spawned uWSGI worker 4 (pid: 21653, cores: 2) +spawned uWSGI worker 5 (pid: 21655, cores: 2) +spawned uWSGI worker 6 (pid: 21657, cores: 2) +[pid: 21651|app: 0|req: 1/1] 106.19.190.170 () {42 vars in 767 bytes} [Sat Aug 25 18:17:44 2018] GET / => generated 9722 bytes in 527 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 0) +[pid: 21651|app: 0|req: 2/2] 106.19.190.170 () {44 vars in 836 bytes} [Sat Aug 25 18:17:48 2018] GET /users/login/ => generated 4861 bytes in 25 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 1) +{'status': 1, 'user_id': 11, 'message': '登陆成功!'} +11 +[pid: 21657|app: 0|req: 1/3] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:17:56 2018] POST /users/login/ => generated 0 bytes in 1334 msecs (HTTP/1.1 302) 6 headers in 268 bytes (2 switches on core 0) +[pid: 21655|app: 0|req: 1/4] 106.19.190.170 () {46 vars in 899 bytes} [Sat Aug 25 18:17:57 2018] GET / => generated 11552 bytes in 439 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 0) +[pid: 21653|app: 0|req: 1/5] 106.19.190.170 () {38 vars in 822 bytes} [Sat Aug 25 18:18:07 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2729032 bytes in 693 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21651|app: 0|req: 3/6] 106.19.190.170 () {42 vars in 879 bytes} [Sat Aug 25 18:18:10 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732040 bytes in 178 msecs (HTTP/1.1 200) 4 headers in 127 bytes (10 switches on core 0) +[pid: 21648|app: 0|req: 1/7] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 18:18:17 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 416 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21651|app: 0|req: 5/8] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 18:18:18 2018] POST /operations/get_codereading_content/ => generated 3772 bytes in 67 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 21651|app: 0|req: 5/9] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 18:18:18 2018] POST /operations/right/ => generated 37 bytes in 90 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21649|app: 0|req: 1/10] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 18:18:18 2018] POST /operations/show_navigation/ => generated 35 bytes in 375 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[11, 24761] +, ]> + +[11, 24761] +[pid: 21657|app: 0|req: 2/11] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 18:18:48 2018] POST /operations/show_annotation/ => generated 310 bytes in 497 msecs (HTTP/1.1 200) 4 headers in 115 bytes (2 switches on core 1) +Not Found: /favicon.ico +[pid: 21648|app: 0|req: 2/12] 203.208.60.64 () {38 vars in 496 bytes} [Sat Aug 25 18:19:02 2018] GET /favicon.ico => generated 3104 bytes in 28 msecs (HTTP/1.1 404) 3 headers in 102 bytes (1 switches on core 1) +[pid: 21648|app: 0|req: 3/13] 203.208.60.76 () {38 vars in 701 bytes} [Sat Aug 25 18:19:06 2018] GET /projects/scikit-learn/build_tools/circle/list_versions.py => generated 240519 bytes in 110 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 21657|app: 0|req: 3/14] 106.19.190.170 () {52 vars in 1119 bytes} [Sat Aug 25 18:19:15 2018] POST /operations/add_annotation/ => generated 83 bytes in 121 msecs (HTTP/1.1 200) 4 headers in 114 bytes (1 switches on core 0) +[pid: 21657|app: 0|req: 4/15] 106.19.190.170 () {44 vars in 916 bytes} [Sat Aug 25 18:19:20 2018] GET /users/logout/ => generated 0 bytes in 43 msecs (HTTP/1.1 302) 5 headers in 208 bytes (1 switches on core 1) +[pid: 21657|app: 0|req: 5/16] 106.19.190.170 () {44 vars in 846 bytes} [Sat Aug 25 18:19:20 2018] GET / => generated 9722 bytes in 40 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 21653|app: 0|req: 2/17] 106.19.190.170 () {44 vars in 836 bytes} [Sat Aug 25 18:19:22 2018] GET /users/login/ => generated 4861 bytes in 16 msecs (HTTP/1.1 200) 4 headers in 124 bytes (1 switches on core 1) +[pid: 21648|app: 0|req: 4/18] 106.19.190.170 () {52 vars in 1039 bytes} [Sat Aug 25 18:19:28 2018] POST /users/login/ => generated 0 bytes in 92 msecs (HTTP/1.1 302) 6 headers in 268 bytes (1 switches on core 1) +[pid: 21653|app: 0|req: 3/19] 106.19.190.170 () {46 vars in 899 bytes} [Sat Aug 25 18:19:28 2018] GET / => generated 11521 bytes in 35 msecs (HTTP/1.1 200) 4 headers in 125 bytes (1 switches on core 1) +[pid: 21653|app: 0|req: 4/20] 106.19.190.170 () {44 vars in 880 bytes} [Sat Aug 25 18:19:31 2018] GET /users/login/ => generated 6660 bytes in 19 msecs (HTTP/1.1 200) 4 headers in 124 bytes (2 switches on core 0) +[pid: 21653|app: 0|req: 5/21] 106.19.190.170 () {42 vars in 879 bytes} [Sat Aug 25 18:19:32 2018] GET /projects/tensorflow/tools/bazel.rc => generated 2732041 bytes in 194 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +[pid: 21648|app: 0|req: 5/22] 106.19.190.170 () {52 vars in 1123 bytes} [Sat Aug 25 18:19:38 2018] POST /operations/get_addtab_paras/ => generated 89 bytes in 27 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[pid: 21651|app: 0|req: 6/23] 106.19.190.170 () {52 vars in 1137 bytes} [Sat Aug 25 18:19:38 2018] POST /operations/get_codereading_content/ => generated 3772 bytes in 64 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +[pid: 21649|app: 0|req: 2/24] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 18:19:38 2018] POST /operations/show_navigation/ => generated 35 bytes in 63 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 1) +[pid: 21651|app: 0|req: 7/25] 106.19.190.170 () {52 vars in 1101 bytes} [Sat Aug 25 18:19:38 2018] POST /operations/right/ => generated 37 bytes in 111 msecs (HTTP/1.1 200) 3 headers in 100 bytes (1 switches on core 0) +[11, 24761] +, ]> +]> +[11, 24761] +[pid: 21648|app: 0|req: 6/26] 106.19.190.170 () {52 vars in 1121 bytes} [Sat Aug 25 18:19:41 2018] POST /operations/show_annotation/ => generated 2261 bytes in 507 msecs (HTTP/1.1 200) 4 headers in 116 bytes (1 switches on core 1) +Internal Server Error: /operations/modify_anno/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/operations/views.py", line 412, in post + annotation = Annotation.objects.get(file_id=file_id, linenum=linenum, user_id=request.user.id,is_latest=1) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get + self.model._meta.object_name +operations.models.DoesNotExist: Annotation matching query does not exist. +[pid: 21657|app: 0|req: 6/27] 106.19.190.170 () {52 vars in 1113 bytes} [Sat Aug 25 18:19:52 2018] POST /operations/modify_anno/ => generated 16510 bytes in 94 msecs (HTTP/1.1 500) 4 headers in 145 bytes (2 switches on core 1) +Internal Server Error: /operations/modify_anno/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/operations/views.py", line 412, in post + annotation = Annotation.objects.get(file_id=file_id, linenum=linenum, user_id=request.user.id,is_latest=1) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get + self.model._meta.object_name +operations.models.DoesNotExist: Annotation matching query does not exist. +[pid: 21649|app: 0|req: 3/28] 106.19.190.170 () {52 vars in 1113 bytes} [Sat Aug 25 18:19:54 2018] POST /operations/modify_anno/ => generated 16510 bytes in 74 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 0) +Internal Server Error: /operations/modify_anno/ +Traceback (most recent call last): + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/exception.py", line 35, in inner + response = get_response(request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 128, in _get_response + response = self.process_exception_by_middleware(e, request) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/core/handlers/base.py", line 126, in _get_response + response = wrapped_callback(request, *callback_args, **callback_kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 69, in view + return self.dispatch(request, *args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/views/generic/base.py", line 89, in dispatch + return handler(request, *args, **kwargs) + File "/projects/codepedia/codepedia2/apps/operations/views.py", line 412, in post + annotation = Annotation.objects.get(file_id=file_id, linenum=linenum, user_id=request.user.id,is_latest=1) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/manager.py", line 82, in manager_method + return getattr(self.get_queryset(), name)(*args, **kwargs) + File "/root//envs/codepedia2/lib/python3.6/site-packages/django/db/models/query.py", line 403, in get + self.model._meta.object_name +operations.models.DoesNotExist: Annotation matching query does not exist. +[pid: 21655|app: 0|req: 2/29] 106.19.190.170 () {52 vars in 1113 bytes} [Sat Aug 25 18:19:57 2018] POST /operations/modify_anno/ => generated 16510 bytes in 65 msecs (HTTP/1.1 500) 4 headers in 145 bytes (1 switches on core 1) +[pid: 21651|app: 0|req: 8/30] 203.208.60.88 () {38 vars in 827 bytes} [Sat Aug 25 18:20:32 2018] GET /projects/pytorch/caffe2/core/logging_is_not_google_glog.h => generated 890014 bytes in 125 msecs (HTTP/1.1 200) 4 headers in 126 bytes (5 switches on core 1) +[pid: 21653|app: 0|req: 6/31] 203.208.60.35 () {38 vars in 709 bytes} [Sat Aug 25 18:22:47 2018] GET /projects/tensorflow/tensorflow/core/ops/data_flow_ops_test.cc => generated 2729036 bytes in 218 msecs (HTTP/1.1 200) 4 headers in 127 bytes (14 switches on core 0) +[pid: 21653|app: 0|req: 7/32] 203.208.60.94 () {38 vars in 827 bytes} [Sat Aug 25 18:22:51 2018] GET /projects/pytorch/caffe2/operators/ensure_cpu_output_op.cu => generated 890014 bytes in 74 msecs (HTTP/1.1 200) 4 headers in 126 bytes (6 switches on core 1) +[pid: 21648|app: 0|req: 7/33] 203.208.60.8 () {38 vars in 826 bytes} [Sat Aug 25 18:25:45 2018] GET /projects/pytorch/torch/distributions/negative_binomial.py => generated 890014 bytes in 117 msecs (HTTP/1.1 200) 4 headers in 126 bytes (2 switches on core 0) +[pid: 21649|app: 0|req: 4/34] 203.208.60.1 () {38 vars in 704 bytes} [Sat Aug 25 18:26:27 2018] GET /projects/tensorflow/third_party/tensorrt/build_defs.bzl.tpl => generated 2729034 bytes in 276 msecs (HTTP/1.1 200) 4 headers in 127 bytes (13 switches on core 1) +SIGINT/SIGQUIT received...killing workers... +worker 1 buried after 1 seconds +worker 2 buried after 1 seconds +worker 3 buried after 1 seconds +worker 4 buried after 1 seconds +worker 5 buried after 1 seconds +worker 6 buried after 1 seconds +goodbye to uWSGI. +VACUUM: pidfile removed. +VACUUM: unix socket /projects/codepedia/codepedia2/my_sock.sock removed. diff --git a/uwsgi.pid b/uwsgi.pid deleted file mode 100644 index 56f822a..0000000 --- a/uwsgi.pid +++ /dev/null @@ -1 +0,0 @@ -26142