Skip to content

Instantly share code, notes, and snippets.

@Whateverable
Created May 12, 2022 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Whateverable/42287a9a652618613fba2fda409e62a5 to your computer and use it in GitHub Desktop.
Save Whateverable/42287a9a652618613fba2fda409e62a5 to your computer and use it in GitHub Desktop.
greppable6
nqp::sha1
File Code
UGEXE/zef
…/Distribution.pm6 :37:
return nqp::sha1(self.Str);
finanalyst/pod-cached
…/Cached.pm6 :224:
%!files{$nm} = (:cache-key(nqp::sha1($nm)), :path($pfile), :status( New ), :added(0) ).hash;
finanalyst/pod-cached
…/PrecompilationDoc.pm6 :49:
# and (not $source or ($checksum //= nqp::sha1($source.slurp(:enc<iso-8859-1>))) eq $unit.source-checksum)
grondilu/clifford
…/Optimized.pm6 :68:
nqp::sha1( "{$A.basis.join(',')} $op {$B.basis.join(',')}" );
perl6/doc
…/Convenience.pm6 :122:
my $id = nqp::sha1(~$file);
perl6/perl6-pod-to-bigpage
…/pod2onepage :68:
my $id = nqp::sha1(~$f);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :199:
my $filename = nqp::sha1($script);
scovit/Scheduler-DRMAA
…/Job-template.pm6 :202:
unless $fullname.IO.f && (nqp::sha1(slurp($fullname)) eq $filename) {
sergot/openssl
…/NativeLib.pm6 :34:
my $content_id = nqp::sha1($resource.absolute);
spitsh/spitsh
…/Util.pm6 :43:
return nqp::sha1($str);
ugexe/zef
…/CLI.pm6 :420:
my $lib-sha1 = nqp::sha1($lib ~ CompUnit::Repository::Distribution.new($candi.dist.compat).id);
ugexe/zef
…/CLI.pm6 :451:
my $source-path = $source-prefix.child(nqp::sha1($identity ~ CompUnit::Repository::Distribution.new($candi.dist.compat).id));
ugexe/zef
…/CLI.pm6 :463:
my @source_files = %meta<provides>.map({ nqp::sha1($_.key ~ CompUnit::Repository::Distribution.new($candi.dist.compat).id) });
ugexe/zef
…/CLI.pm6 :475:
my %sources = %meta<provides>.map({ $_.key => nqp::sha1($_.key ~ CompUnit::Repository::Distribution.new($candi.dist.compat).id) }).hash;
ugexe/zef
…/Distribution.pm6 :123:
return nqp::sha1(self.Str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment