Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Kirill Smelkov
neo
Commits
9c56e9cd
Commit
9c56e9cd
authored
7 years ago
by
Julien Muchembled
Browse files
Options
Download
Email Patches
Plain Diff
doc: mention HTTPS URLs when possible
parent
e2e2d895
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
README.rst
README.rst
+2
-2
neo/client/cache.py
neo/client/cache.py
+1
-1
neo/lib/util.py
neo/lib/util.py
+1
-1
neo/storage/database/sqlite.py
neo/storage/database/sqlite.py
+1
-1
No files found.
README.rst
View file @
9c56e9cd
...
...
@@ -202,9 +202,9 @@ Developers interested in NEO may refer to
`NEO Web site <https://neo.nexedi.com/>`_ and subscribe to following mailing
lists:
- `neo-users <http://mail.tiolive.com/mailman/listinfo/neo-users>`_:
- `neo-users <http
s
://mail.tiolive.com/mailman/listinfo/neo-users>`_:
users discussion
- `neo-dev <http://mail.tiolive.com/mailman/listinfo/neo-dev>`_:
- `neo-dev <http
s
://mail.tiolive.com/mailman/listinfo/neo-dev>`_:
developers discussion
Automated test results are published at
...
...
This diff is collapsed.
Click to expand it.
neo/client/cache.py
View file @
9c56e9cd
...
...
@@ -46,7 +46,7 @@ class ClientCache(object):
"""In-memory pickle cache based on Multi-Queue cache algorithm
Multi-Queue algorithm for Second Level Buffer Caches:
http://www.usenix.org/event/usenix01/full_papers/zhou/zhou_html/index.html
http
s
://www.usenix.org/event/usenix01/full_papers/zhou/zhou_html/index.html
Quick description:
- There are multiple "regular" queues, plus a history queue
...
...
This diff is collapsed.
Click to expand it.
neo/lib/util.py
View file @
9c56e9cd
...
...
@@ -59,7 +59,7 @@ def packTID(higher, lower):
# seconds (e.g. TZ=right/UTC), then the best we can do is to use
# TID_LOW_MAX, because TID format was not designed to support them.
# For more information about leap seconds on Unix, see:
# http://en.wikipedia.org/wiki/Unix_time
# http
s
://en.wikipedia.org/wiki/Unix_time
# http://www.madore.org/~david/computers/unix-leap-seconds.html
return
pack
(
'!LL'
,
packed_higher
,
min
(
lower
,
TID_LOW_MAX
))
...
...
This diff is collapsed.
Click to expand it.
neo/storage/database/sqlite.py
View file @
9c56e9cd
...
...
@@ -62,7 +62,7 @@ class SQLiteDatabaseManager(DatabaseManager):
"""This class manages a database on SQLite.
CAUTION: Make sure we never use statement journal files, as explained at
http://www.sqlite.org/tempfiles.html for more information.
http
s
://www.sqlite.org/tempfiles.html for more information.
In other words, temporary files (by default in /var/tmp !) must
never be used for small requests.
"""
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment