معرفی شرکت ها


python-module-larch-1.20131130-alt1.noarch.rpm


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Python B-tree library
ویژگی مقدار
سیستم عامل Linux
توزیع ALT p9
مخزن ALTLinux classic noarch
نام بسته python-module-larch
نام فایل بسته python-module-larch-1.20131130-alt1.noarch.rpm
نسخه بسته 1.20131130
انتشار بسته alt1
معماری بسته noarch
نگهدارنده -
تاریخ ساخت Fri 21 Aug 2015 03
هاست سازنده lav-sisyphus.hasher.altlinux.org
نوع بسته .rpm
آدرس صفحه اصلی http://liw.fi/larch/
مجوز GPLv3+
حجم دانلود 97K
حجم نصب 528.709K
This is an implementation of particular kind of B-tree, based on research by Ohad Rodeh. See "B-trees, Shadowing, and Clones" (copied here with permission of author) for details on the data structure. This is the same data structure that btrfs uses. Note that my implementation is independent from the btrfs one, and might differ from what the paper describes. The distinctive feature of this B-tree is that a node is never modified (sort-of). Instead, all updates are done by copy-on-write. Among other things, this makes it easy to clone a tree, and modify only the clone, while other processes access the original tree. This is utterly wonderful for my backup application, and that's the reason I wrote larch in the first place. I have tried to keep the implementation generic and flexible, so that you may use it in a variety of situations. For example, the tree itself does not decide where its nodes are stored: you provide a class that does that for it. I have two implementations of the NodeStore class, one for in-memory and one for on-disk storage. The tree attempts to guarantee this: all modifications you make will be safely stored in the node store when the larch.Forest.commit method is called. After that, unless you actually modify the committed tree yourself, it will be safe from further modifications. (You need to take care to create a new tree for further modifications, though.)


جایگزین ها

بسته نسخه معماری مخزن
python-module-larch-doc-1.20131130-alt1.noarch.rpm 1.20131130 noarch ALT classic


نیازمندی

مقدار نام
- /usr/bin/python
- /usr/lib/python2.7/site-packages
- python-modules
- python2.7(bisect)
- python2.7(cliapp)
- python2.7(logging)
- python2.7(tracing)
- python2.7(ttystatus)
- python2.7(unittest)
- rpmlib(PayloadIsLzma)


ارائه دهنده

مقدار نام
- python2.7(larch)
- python2.7(larch.codec)
- python2.7(larch.codec_tests)
- python2.7(larch.forest)
- python2.7(larch.forest_tests)
- python2.7(larch.fsck)
- python2.7(larch.idpath)
- python2.7(larch.idpath_tests)
- python2.7(larch.journal)
- python2.7(larch.journal_tests)
- python2.7(larch.lru)
- python2.7(larch.lru_tests)
- python2.7(larch.nodes)
- python2.7(larch.nodes_tests)
- python2.7(larch.nodestore)
- python2.7(larch.nodestore_disk)
- python2.7(larch.nodestore_disk_tests)
- python2.7(larch.nodestore_memory)
- python2.7(larch.nodestore_memory_tests)
- python2.7(larch.refcountstore)
- python2.7(larch.refcountstore_tests)
- python2.7(larch.tree)
- python2.7(larch.tree_tests)
- python2.7(larch.uploadqueue)
- python2.7(larch.uploadqueue_tests)
= 1.20131130-alt1 python-module-larch


نحوه نصب


نصب پکیج rpm python-module-larch:

    sudo apt-get install python-module-larch-1.20131130-alt1.noarch.rpm


فایل ها

مسیرها
/usr/bin/fsck-larch
/usr/lib/python2.7/site-packages/larch
/usr/lib/python2.7/site-packages/larch-1.20131130-py2.7.egg-info
/usr/lib/python2.7/site-packages/larch/__init__.py
/usr/lib/python2.7/site-packages/larch/__init__.pyc
/usr/lib/python2.7/site-packages/larch/__init__.pyo
/usr/lib/python2.7/site-packages/larch/codec.py
/usr/lib/python2.7/site-packages/larch/codec.pyc
/usr/lib/python2.7/site-packages/larch/codec.pyo
/usr/lib/python2.7/site-packages/larch/codec_tests.py
/usr/lib/python2.7/site-packages/larch/codec_tests.pyc
/usr/lib/python2.7/site-packages/larch/codec_tests.pyo
/usr/lib/python2.7/site-packages/larch/forest.py
/usr/lib/python2.7/site-packages/larch/forest.pyc
/usr/lib/python2.7/site-packages/larch/forest.pyo
/usr/lib/python2.7/site-packages/larch/forest_tests.py
/usr/lib/python2.7/site-packages/larch/forest_tests.pyc
/usr/lib/python2.7/site-packages/larch/forest_tests.pyo
/usr/lib/python2.7/site-packages/larch/fsck.py
/usr/lib/python2.7/site-packages/larch/fsck.pyc
/usr/lib/python2.7/site-packages/larch/fsck.pyo
/usr/lib/python2.7/site-packages/larch/idpath.py
/usr/lib/python2.7/site-packages/larch/idpath.pyc
/usr/lib/python2.7/site-packages/larch/idpath.pyo
/usr/lib/python2.7/site-packages/larch/idpath_tests.py
/usr/lib/python2.7/site-packages/larch/idpath_tests.pyc
/usr/lib/python2.7/site-packages/larch/idpath_tests.pyo
/usr/lib/python2.7/site-packages/larch/journal.py
/usr/lib/python2.7/site-packages/larch/journal.pyc
/usr/lib/python2.7/site-packages/larch/journal.pyo
/usr/lib/python2.7/site-packages/larch/journal_tests.py
/usr/lib/python2.7/site-packages/larch/journal_tests.pyc
/usr/lib/python2.7/site-packages/larch/journal_tests.pyo
/usr/lib/python2.7/site-packages/larch/lru.py
/usr/lib/python2.7/site-packages/larch/lru.pyc
/usr/lib/python2.7/site-packages/larch/lru.pyo
/usr/lib/python2.7/site-packages/larch/lru_tests.py
/usr/lib/python2.7/site-packages/larch/lru_tests.pyc
/usr/lib/python2.7/site-packages/larch/lru_tests.pyo
/usr/lib/python2.7/site-packages/larch/nodes.py
/usr/lib/python2.7/site-packages/larch/nodes.pyc
/usr/lib/python2.7/site-packages/larch/nodes.pyo
/usr/lib/python2.7/site-packages/larch/nodes_tests.py
/usr/lib/python2.7/site-packages/larch/nodes_tests.pyc
/usr/lib/python2.7/site-packages/larch/nodes_tests.pyo
/usr/lib/python2.7/site-packages/larch/nodestore.py
/usr/lib/python2.7/site-packages/larch/nodestore.pyc
/usr/lib/python2.7/site-packages/larch/nodestore.pyo
/usr/lib/python2.7/site-packages/larch/nodestore_disk.py
/usr/lib/python2.7/site-packages/larch/nodestore_disk.pyc
/usr/lib/python2.7/site-packages/larch/nodestore_disk.pyo
/usr/lib/python2.7/site-packages/larch/nodestore_disk_tests.py
/usr/lib/python2.7/site-packages/larch/nodestore_disk_tests.pyc
/usr/lib/python2.7/site-packages/larch/nodestore_disk_tests.pyo
/usr/lib/python2.7/site-packages/larch/nodestore_memory.py
/usr/lib/python2.7/site-packages/larch/nodestore_memory.pyc
/usr/lib/python2.7/site-packages/larch/nodestore_memory.pyo
/usr/lib/python2.7/site-packages/larch/nodestore_memory_tests.py
/usr/lib/python2.7/site-packages/larch/nodestore_memory_tests.pyc
/usr/lib/python2.7/site-packages/larch/nodestore_memory_tests.pyo
/usr/lib/python2.7/site-packages/larch/refcountstore.py
/usr/lib/python2.7/site-packages/larch/refcountstore.pyc
/usr/lib/python2.7/site-packages/larch/refcountstore.pyo
/usr/lib/python2.7/site-packages/larch/refcountstore_tests.py
/usr/lib/python2.7/site-packages/larch/refcountstore_tests.pyc
/usr/lib/python2.7/site-packages/larch/refcountstore_tests.pyo
/usr/lib/python2.7/site-packages/larch/tree.py
/usr/lib/python2.7/site-packages/larch/tree.pyc
/usr/lib/python2.7/site-packages/larch/tree.pyo
/usr/lib/python2.7/site-packages/larch/tree_tests.py
/usr/lib/python2.7/site-packages/larch/tree_tests.pyc
/usr/lib/python2.7/site-packages/larch/tree_tests.pyo
/usr/lib/python2.7/site-packages/larch/uploadqueue.py
/usr/lib/python2.7/site-packages/larch/uploadqueue.pyc
/usr/lib/python2.7/site-packages/larch/uploadqueue.pyo
/usr/lib/python2.7/site-packages/larch/uploadqueue_tests.py
/usr/lib/python2.7/site-packages/larch/uploadqueue_tests.pyc
/usr/lib/python2.7/site-packages/larch/uploadqueue_tests.pyo
/usr/share/doc/python-module-larch-1.20131130
/usr/share/doc/python-module-larch-1.20131130/COPYING
/usr/share/doc/python-module-larch-1.20131130/NEWS
/usr/share/doc/python-module-larch-1.20131130/README
/usr/share/man/man1/fsck-larch.1.gz


گزارش تغییرات

تاریخ آخرین تغییر جزئیات
2015-08-21

new version 1.20131130 (with rpmrb script)

2015-08-13

human build for ALT Linux Sisyphus

2014-07-07

update to new release by fcimport

2013-10-10

update to new release by fcimport

2013-09-02

update to new release by fcimport

2013-03-21

update to new release by fcimport

2013-03-14

update to new release by fcimport

2013-02-21

update to new release by fcimport

2013-01-05

initial fc import