Result for C7096DD0E985E72164C7D91E337E44F13495CE70

Query result

Key Value
FileName./usr/share/licenses/perl-Perl-Critic-Freenode/LICENSE
FileSize9037
MD520EE252439F4ED25A553A80AA61892E1
SHA-1C7096DD0E985E72164C7D91E337E44F13495CE70
SHA-25632B89EFA28173180F761F0864FC2F7E33E6C9DAE0930BDA8A6262E2A7F1ADA41
SSDEEP96:QDuWTETk+wPHsre83fL7Bb/mQOL0zjePq/Ef/hQ6a8Ea69w0RR9z1dPT4fo/Bop1:JF77LJmDVV69wef5dPhBq0Kw5EP
TLSHT1BB12977F778803F205C106AAB725B5DEE37D602E3672005534AEC22C2B1AD6993B75ED
hashlookup:parent-total111
hashlookup:trust100

Network graph view

Parents (Total: 111)

The searched file hash is included in 111 parent files which include package known and seen by metalookup. A sample is included below:

Key Value
MD5A2AF0382B9CD585EEBABDBEF471F848C
PackageArchnoarch
PackageDescriptionThis is an empty subclass, you wanted Mojo::DOM58
PackageNameperl-DOM-Tiny
PackageRelease1.21
PackageVersion0.005
SHA-100D73A0E7A3E1F82AEB8E91217BAD2E044460E3C
SHA-256E8D189CE354CDD8058C8E9455F5D76C73CE182D8E63AC27319673A03785D8599
Key Value
MD568FE226EE841459673D01A7F114168FD
PackageArchnoarch
PackageDescriptionMinion::Backend::SQLite is a backend for Minion based on Mojo::SQLite. All necessary tables will be created automatically with a set of migrations named 'minion'. If no connection string or ':temp:' is provided, the database will be created in a temporary directory.
PackageNameperl-Minion-Backend-SQLite
PackageReleasebp150.2.1
PackageVersion5.0.6
SHA-10160A10DE3EB0962B1044640B830F54C82B8747E
SHA-256439335B1BCB35EC35E8DB13A0E580E0806CDF4D15DDA9C4B5B3AF86B5A55FB20
Key Value
MD5BD50790D76F6AD64056CBD0C19A90977
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageNameperl-Mojo-SQLite
PackageRelease25.3
PackageVersion3.008
SHA-108EFBA9A62466317E220CF7D4F7E36AC60710B47
SHA-2565A8208AA9F55B7B64989184FA73302948407D37D54AAD50FAB007948FC92BFD5
Key Value
MD5516E07E09BDB7518C12674CEE2A7B971
PackageArchnoarch
PackageDescriptionA set of Perl::Critic policies to enforce the practices generally recommended by subsets of the Perl community, particularly on IRC. Formerly known as Perl::Critic::Freenode. Because this policy "theme" is designed to be used with zero configuration on the command line, some duplication will occur if it is used in combination with core Perl::Critic policies.
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Perl-Critic-Community
PackageReleasebp156.2.1
PackageVersion1.0.3
SHA-10A3143E556B03BDCCFA7EDBF7D47715236669B0D
SHA-256C6F93C0E35EADE0CC905E670BE4DAEEC571A87F5BEFF3D524B9199CFA1115328
Key Value
MD5162732DA2A3D20D619B3920F568315D2
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations. Database and statement handles are cached automatically, so they can be reused transparently to increase performance. And you can handle connection timeouts gracefully by holding on to them only for short amounts of time. use Mojolicious::Lite; use Mojo::SQLite; helper sqlite => sub { state $sql = Mojo::SQLite->new('sqlite:test.db') }; get '/' => sub { my $c = shift; my $db = $c->sqlite->db; $c->render(json => $db->query('select datetime("now","localtime") as now')->hash); }; app->start; In this example application, we create a 'sqlite' helper to store a Mojo::SQLite object. Our action calls that helper and uses the method Mojo::SQLite/"db" to dequeue a Mojo::SQLite::Database object from the connection pool. Then we use the method Mojo::SQLite::Database/"query" to execute an at http://www.postgresql.org/docs/current/static/sql.html statement, which returns a Mojo::SQLite::Results object. And finally we call the method Mojo::SQLite::Results/"hash" to retrieve the first row as a hash reference. All I/O and queries are performed synchronously. However, the "Write-Ahead Log" journal is enabled for all connections, allowing multiple processes to read and write concurrently to the same database file (but only one can write at a time). You can prevent this mode from being enabled by passing the option 'no_wal', but note that this is incompatible with SQLite databases that have already had WAL mode enabled. See http://sqlite.org/wal.html and DBD::SQLite/"journal_mode" for more information. my $pid = fork || die $!; say $sql->db->query('select datetime("now","localtime") as time')->hash->{time}; exit unless $pid; All cached database handles will be reset automatically if a new process has been forked, this allows multiple processes to share the same Mojo::SQLite object safely. Any database errors will throw an exception as 'RaiseError' is automatically enabled, so use 'eval' or Try::Tiny to catch them. This makes transactions with Mojo::SQLite::Database/"begin" easy. While passing a file path of ':memory:' (or a custom "dsn" with 'mode=memory') will create a temporary database, in-memory databases cannot be shared between connections, so subsequent calls to "db" may return connections to completely different databases. For a temporary database that can be shared between connections and processes, pass a file path of ':temp:' to store the database in a temporary directory (this is the default), or consider constructing a temporary directory yourself with File::Temp if you need to reuse the filename. A temporary directory allows SQLite to create at https://www.sqlite.org/tempfiles.html safely. use File::Spec::Functions 'catfile'; use File::Temp; use Mojo::SQLite; my $tempdir = File::Temp->newdir; # Deleted when object goes out of scope my $tempfile = catfile $tempdir, 'test.db'; my $sql = Mojo::SQLite->new->from_filename($tempfile);
PackageMaintainerhttps://bugs.opensuse.org
PackageNameperl-Mojo-SQLite
PackageReleaselp151.2.1
PackageVersion3.000
SHA-10C34E99FA073D337605CB10F35B7A7852087D9EB
SHA-25605124A6A414027BBDF64CA9FB31377C22ED52F2354C83000ECB8C97E26BEAFCF
Key Value
MD54C009E8EFA358A00AFF889EA0CC5EADC
PackageArchnoarch
PackageDescriptionA set of Perl::Critic policies to enforce the practices generally recommended by the denizens of #perl on at https://freenode.net/. Because this policy "theme" is designed to be used with zero configuration on the command line, some duplication will occur if it is used in combination with core Perl::Critic policies.
PackageNameperl-Perl-Critic-Freenode
PackageRelease1.2
PackageVersion0.033
SHA-1157E9FCD1072FB28F1A13A53AEE297D27D698DB0
SHA-2561F984601303BE3692DA5F42D7DA243C0B65F6D7CBBFB3A6AE0A52286276EE06E
Key Value
MD59CF95A84B251759C7A852313CC0FB527
PackageArchnoarch
PackageDescriptionMinion::Backend::SQLite is a backend for Minion based on Mojo::SQLite. All necessary tables will be created automatically with a set of migrations named 'minion'. If no connection string or ':temp:' is provided, the database will be created in a temporary directory.
PackageNameperl-Minion-Backend-SQLite
PackageRelease22.2
PackageVersion5.0.6
SHA-11C85699DCAA9E5456A953510D9C78C7304F3E662
SHA-25669354992954177DC2B6F5887366C70B585DAA826A9F1F7A869D86A04D43FA6CB
Key Value
MD54E02B21477889C0C6275846B26268B2A
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageNameperl-Mojo-SQLite
PackageReleasebp151.2.1
PackageVersion3.006
SHA-1203D0701729ACD0680504DF9F0F8B04E7A11DA64
SHA-256602D533F4973E8D624F92B93EBC5D07FE7CFE5676BC61E74EF1601227B11D4D4
Key Value
MD52E6203E57CF759EBF6C5616C3179563E
PackageArchnoarch
PackageDescriptionMojo::SQLite is a tiny wrapper around DBD::SQLite that makes at https://www.sqlite.org/ a lot of fun to use with the at https://mojolico.us real-time web framework. Use all at http://sqlite.org/lang.html SQLite has to offer, generate CRUD queries from data structures, and manage your database schema with migrations.
PackageNameperl-Mojo-SQLite
PackageReleaselp151.25.2
PackageVersion3.008
SHA-1235BBE70348B6346A200AC37EDC7F37373DF81E7
SHA-256908FE4813FF36231F3E1908F3D5EBFD22869F2C3EB9B6E01F4F2A95C695C17DB
Key Value
MD53E682CCB791C20AFE0639749D64AF9FD
PackageArchnoarch
PackageDescriptionThis subclass of Future stores a reference to the associated Mojo::IOLoop instance, allowing the 'await' method to block until the Future is ready. For a full description on how to use Futures, see the Future documentation.
PackageNameperl-Future-Mojo
PackageRelease1.17
PackageVersion1.002
SHA-123DD8BC5DC1F36A6441C9A0F09C6EAF64954B629
SHA-256A35076D9C7C5636CD0510353532ABA20D61FCBCBA756A83630C3FD93728DBF52