view release on metacpan or search on metacpan
* t/fk4to5.t: Use Test module
2000-04-11 Tim Jenness <tjenness@cpan.org>
* t/fk4to5.t: Improve the test (and fix btoj for -00 decs)
(btoj): dont use abs($d), multiply by dsign instead.
2000-03-28 Tim Jenness <tjenness@cpan.org>
* SLA.pm (ut2lst_tel): Add missing command
view all matches for this distribution
view release on metacpan or search on metacpan
mpg123/buffer.c view on Meta::CPAN
return;
}
#ifndef NOXFERMEM
void buffer_loop(struct audio_info_struct *ai, sigset_t *oldsigset)
{
int bytes;
int my_fd = buffermem->fd[XF_READER];
txfermem *xf = buffermem;
int done = FALSE;
catchsignal (SIGINT, catch_interrupt);
catchsignal (SIGUSR1, catch_usr1);
sigprocmask (SIG_SETMASK, oldsigset, NULL);
if (param.outmode == DECODE_AUDIO) {
if (audio_open(ai) < 0) {
perror("audio");
exit(1);
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Audio/XMMSClient/XMLRPC.pm view on Meta::CPAN
takes either a single method name as a B<string>, or a series of them as an
B<array> of B<string>. the return value is the help text for the method, as
either a B<string> or B<array> of B<string> value. if the method(s) have no
help text, the string will be null.
=item B<system.methodsignature>
as above, but returns the signatures that the method accepts, as B<array> of
B<string> representations. if only one method is requests via a B<string>
parameter, then the return value is the corresponding array. if the parameter
in is an B<array>, then the returned value will be an B<array> of B<array> of
view all matches for this distribution
view release on metacpan or search on metacpan
examples/js/jquery-1.9.1.js view on Meta::CPAN
return this.each(function() {
jQuery.dequeue( this, type );
});
},
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
delay: function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Authen/NZRealMe/CommonURIs.pm view on Meta::CPAN
available via both the F<URI()> and the F<NS_PAIR()> functions, although not
all the URIs are actually intended to be used as namespaces in XML.
Sources for these URIs:
DSIG_CORE https://www.w3.org/TR/xmldsig-core/#sec-CoreSyntax
DSIG_ALG https://www.w3.org/TR/xmldsig-core/#sec-AlgID
SAML2 https://wiki.oasis-open.org/security/FrontPage#SAML_V2.0_Standard
SOAP11 https://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383494
SOAP12 https://www.w3.org/TR/2007/REC-soap12-part1-20070427/#soapenvelope
WSDL https://www.w3.org/TR/wsdl/#nsprefixes
WSDL_SOAP http://schemas.xmlsoap.org/wsdl/soap12/soap12WSDL.htm
lib/Authen/NZRealMe/CommonURIs.pm view on Meta::CPAN
RM_ASSERT https://developers.realme.govt.nz/how-realme-works/
RM_ICMS RealMe iCMS docs
=over 4
=item ds => http://www.w3.org/2000/09/xmldsig#
XML Digital Signatures namespace URI. Source: [DSIG_CORE].
=item c14n => http://www.w3.org/TR/2001/REC-xml-c14n-20010315
lib/Authen/NZRealMe/CommonURIs.pm view on Meta::CPAN
=item rsa_1_5 => http://www.w3.org/2001/04/xmlenc#rsa-1_5
URI for XML Encryption key transport encryption algorithm "RSA Version 1.5".
Source: [XENC].
=item sha1 => http://www.w3.org/2000/09/xmldsig#sha1
SHA1 digest transform. Source: [DSIG_ALG].
=item sha256 => http://www.w3.org/2001/04/xmlenc#sha256
SHA256 digest transform. Source: [DSIG_ALG].
=item env_sig => http://www.w3.org/2000/09/xmldsig#enveloped-signature
Enveloped Signature transform. Source: [DSIG_ALG].
=item rsa_sha1 => http://www.w3.org/2000/09/xmldsig#rsa-sha1
RSA with SHA1 digital signature transform. Source: [DSIG_ALG].
=item rsa_sha256 => http://www.w3.org/2001/04/xmldsig-more#rsa-sha256
RSA with SHA256 digital signature transform. Source: [DSIG_ALG].
=item soap11 => http://schemas.xmlsoap.org/soap/envelope/
view all matches for this distribution
view release on metacpan or search on metacpan
scrypt-1.2.1/libcperciva/util/readpass.c view on Meta::CPAN
#include "readpass.h"
#define MAXPASSLEN 2048
/* Signals we need to block. */
static const int badsigs[] = {
SIGALRM, SIGHUP, SIGINT,
SIGPIPE, SIGQUIT, SIGTERM,
SIGTSTP, SIGTTIN, SIGTTOU
};
#define NSIGS sizeof(badsigs)/sizeof(badsigs[0])
/* Highest signal number we care about. */
#define MAX2(a, b) ((a) > (b) ? (a) : (b))
#define MAX4(a, b, c, d) MAX2(MAX2(a, b), MAX2(c, d))
#define MAX8(a, b, c, d, e, f, g, h) MAX2(MAX4(a, b, c, d), MAX4(e, f, g, h))
scrypt-1.2.1/libcperciva/util/readpass.c view on Meta::CPAN
{
size_t i;
/* Restore old signals. */
for (i = 0; i < NSIGS; i++)
sigaction(badsigs[i], &savedsa[i], NULL);
/* If we intercepted a signal, re-issue it. */
for (i = 0; i < NSIGS; i++) {
if (gotsig[badsigs[i]])
raise(badsigs[i]);
}
}
/**
* readpass(passwd, prompt, confirmprompt, devtty)
scrypt-1.2.1/libcperciva/util/readpass.c view on Meta::CPAN
*/
sa.sa_handler = handle;
sa.sa_flags = 0;
sigemptyset(&sa.sa_mask);
for (i = 0; i < NSIGS; i++)
sigaction(badsigs[i], &sa, &savedsa[i]);
/* If we're reading from a terminal, try to disable echo. */
if ((usingtty = isatty(fileno(readfrom))) != 0) {
if (tcgetattr(fileno(readfrom), &term_old)) {
warnp("Cannot read terminal settings");
view all matches for this distribution
view release on metacpan or search on metacpan
t/config.sh-arm-linux view on Meta::CPAN
d_vendorlib='undef'
d_vendorscript='undef'
d_vfork='undef'
d_vms_case_sensitive_symbols='undef'
d_void_closedir='undef'
d_voidsig='define'
d_voidtty=''
d_vsnprintf='define'
d_wait4='define'
d_waitpid='define'
d_wcscmp='undef'
t/config.sh-arm-linux view on Meta::CPAN
getservbyname_r_proto='0'
getservbyport_r_proto='0'
getservent_r_proto='0'
getspnam_r_proto='0'
gidformat='"lu"'
gidsign='1'
gidsize='4'
gidtype='gid_t'
glibpth='/usr/shlib /lib /usr/lib /usr/lib/386 /lib/386 /usr/ccs/lib /usr/ucblib /usr/local/lib '
gmake='gmake'
gmtime_r_proto='0'
t/config.sh-arm-linux view on Meta::CPAN
u64size='8'
u64type='unsigned long long'
u8size='1'
u8type='unsigned char'
uidformat='"lu"'
uidsign='1'
uidsize='4'
uidtype='uid_t'
uname='uname'
uniq='uniq'
uquadtype='unsigned long long'
view all matches for this distribution
view release on metacpan or search on metacpan
static int
xthread_create (xthread_t *tid, void *(*proc)(void *), void *arg)
{
int retval;
sigset_t fullsigset, oldsigset;
pthread_attr_t attr;
pthread_attr_init (&attr);
pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED);
pthread_attr_setstacksize (&attr, PTHREAD_STACK_MIN < X_STACKSIZE ? X_STACKSIZE : PTHREAD_STACK_MIN);
pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS);
#endif
sigfillset (&fullsigset);
pthread_sigmask (SIG_SETMASK, &fullsigset, &oldsigset);
retval = pthread_create (tid, &attr, proc, arg) == 0;
pthread_sigmask (SIG_SETMASK, &oldsigset, 0);
pthread_attr_destroy (&attr);
return retval;
}
view all matches for this distribution
view release on metacpan or search on metacpan
lib/App/sigfix.pm view on Meta::CPAN
sub usage {
print <<'USAGE';
sigfix [OPTIONS] [FILES]
sigfix -t signatures perl526file >perl528file
sigfix -t oldsignatures perl528file >perl526file
sigfix -t plain perlfile >perl58file
sigfix -i -t signatures upgradethisfile
sigfix -t signatures --pmc lib/My/Module.pm >lib/My/Module.pmc
lib/App/sigfix.pm view on Meta::CPAN
sigfix -i --pmc eval $(find lib -name '*.pm') # multi-target fat pmc
Options:
-t, --target Target: 'signatures', 'oldsignatures', 'plain'
-i, --inplace Modify target file(s) in place
--pmc Generate .pmc (without -t, triple target pmc)
-h This usage message
USAGE
lib/App/sigfix.pm view on Meta::CPAN
{
my $cs = Babble::Plugin::CoreSignatures->new;
my @target_selectors = (
[ 'signatures', '($] >= 5.020 and $] < 5.022) or $] >= 5.028' ],
[ 'oldsignatures', '$] >= 5.022 and $] < 5.028' ],
[ 'plain' ],
);
sub process_source {
my ($source, $opt) = @_;
lib/App/sigfix.pm view on Meta::CPAN
=head1 USAGE
sigfix [OPTIONS] [FILES]
sigfix -t signatures perl526file >perl528file
sigfix -t oldsignatures perl528file >perl526file
sigfix -t plain perlfile >perl58file
sigfix -i -t signatures upgradethisfile
sigfix -t signatures --pmc lib/My/Module.pm >lib/My/Module.pmc
lib/App/sigfix.pm view on Meta::CPAN
sigfix -i --pmc eval $(find lib -name '*.pm') # multi-target fat pmc
Options:
-t, --target Target: 'signatures', 'oldsignatures', 'plain'
-i, --inplace Modify target file(s) in place
--pmc Generate .pmc (without -t, triple target pmc)
-h This usage message
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Badger/Factory.pm view on Meta::CPAN
# conflicting) needs. It needs to be completely refactored, and
# probably split into a number of different factory modules. The
# TT3 code on which this was originally based had separate base class
# factory modules for modules (that just got loaded), objects (that
# got loaded and instantiated) and single objects (that got loaded,
# created and cached). With hindsight, it was a mistake to try and
# cram all that functionality into one module. It should be separated
# into a base class module/API and a number of specialised subclasses.
#
# AUTHOR
# Andy Wardley <abw@wardley.org>
view all matches for this distribution
view release on metacpan or search on metacpan
beamer-reveal-example_files/libs/revealjs/plugin/highlight/highlight.esm.js view on Meta::CPAN
function e(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}function t(e){return e instanceof Map?e.clear=e.delete=e.set=function(){throw new Error("map is read-only")}:e instanceof Set&&(e.add=e.clear=e.delete...
/*!
* reveal.js plugin that adds syntax highlight support.
*/
const Rs={id:"highlight",HIGHLIGHT_STEP_DELIMITER:"|",HIGHLIGHT_LINE_DELIMITER:",",HIGHLIGHT_LINE_RANGE_DELIMITER:"-",hljs:fs,init:function(e){let t=e.getConfig().highlight||{};t.highlightOnLoad="boolean"!=typeof t.highlightOnLoad||t.highlightOnLoad,...
view all matches for this distribution
view release on metacpan or search on metacpan
share/P6STD/STD.pm6 view on Meta::CPAN
#################
# Symbol tables #
#################
method newlex ($needsig = 0) {
my $oid = $*CURLEX.id;
$ALL.{$oid} === $*CURLEX or die "internal error: current lex id is invalid";
my $line = self.lineof(self.pos);
my $id;
if $*NEWLEX {
share/P6STD/STD.pm6 view on Meta::CPAN
'OUTER::' => [$oid],
'!file' => $*FILE, '!line' => $line,
'!id' => [$id],
);
}
$*CURLEX.<!NEEDSIG> = 1 if $needsig;
$*CURLEX.<!IN_DECL> = $*IN_DECL if $*IN_DECL;
$ALL.{$id} = $*CURLEX;
self.<LEX> = $*CURLEX;
$*DECLARAND<curlex> = $*CURLEX if $*DECLARAND;
self;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Bio/Homology/InterologWalk.pm view on Meta::CPAN
while (<$in_data>){
my ($ID) = $_;
chomp $ID;
next if ($ID eq '');
# my $idsignature;
#get a "signature" to spot the kind of id we are dealing with.
#current solution involves getting all the letters starting from the beginning, if there's at least two.
#otherwise get the initial three characters whatever they are, and then do a fuzzy regex matching using string::approx
#this will be needed in order to be sure to get the same kind of id back.
#eg "IPR006259" ----> "IPR"
# if($ID =~ /^([a-z]{2,})(.+)/i){
# $idsignature = $1;
# }else{
# $idsignature = substr($ID, 0, 1) . substr($ID, 1, 1) . substr($ID, 1, 1);
# }
print "$ID: Querying IntAct WS for $ID..";
my $request = $url . $int_search_string. $ID . $options;
lib/Bio/Homology/InterologWalk.pm view on Meta::CPAN
adaptor => $gene_adaptor,
id_check => $ID_check
);
#fuzzy string matching: this ID_OUT should be of the same kind as the original id. Does it feature the same initial
#id signature or something very close?
#if(!_fuzzy_match($idsignature, $ID_OUT)){
# $ID_OUT = _get_ensembl_id_from_uniprotkb_id($gene_adaptor, $target_AccNumb, $target_Name, $target_Aliases, $target_PropsRow);
#}
#TODO REVIEW THIS
if($ID_OUT){
view all matches for this distribution
view release on metacpan or search on metacpan
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=head1 SYNOPSIS
use Bio::MAGE::QuantitationType::DerivedSignal
# creating an empty instance
my $derivedsignal = Bio::MAGE::QuantitationType::DerivedSignal->new();
# creating an instance with existing data
my $derivedsignal = Bio::MAGE::QuantitationType::DerivedSignal->new(
name=>$name_val,
isBackground=>$isbackground_val,
identifier=>$identifier_val,
dataType=>$ontologyentry_ref,
auditTrail=>\@audit_list,
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
quantitationTypeMaps=>\@quantitationtypemap_list,
);
# 'name' attribute
my $name_val = $derivedsignal->name(); # getter
$derivedsignal->name($value); # setter
# 'isBackground' attribute
my $isBackground_val = $derivedsignal->isBackground(); # getter
$derivedsignal->isBackground($value); # setter
# 'identifier' attribute
my $identifier_val = $derivedsignal->identifier(); # getter
$derivedsignal->identifier($value); # setter
# 'dataType' association
my $ontologyentry_ref = $derivedsignal->dataType(); # getter
$derivedsignal->dataType($ontologyentry_ref); # setter
# 'auditTrail' association
my $audit_array_ref = $derivedsignal->auditTrail(); # getter
$derivedsignal->auditTrail(\@audit_list); # setter
# 'channel' association
my $channel_ref = $derivedsignal->channel(); # getter
$derivedsignal->channel($channel_ref); # setter
# 'propertySets' association
my $namevaluetype_array_ref = $derivedsignal->propertySets(); # getter
$derivedsignal->propertySets(\@namevaluetype_list); # setter
# 'confidenceIndicators' association
my $confidenceindicator_array_ref = $derivedsignal->confidenceIndicators(); # getter
$derivedsignal->confidenceIndicators(\@confidenceindicator_list); # setter
# 'descriptions' association
my $description_array_ref = $derivedsignal->descriptions(); # getter
$derivedsignal->descriptions(\@description_list); # setter
# 'scale' association
my $ontologyentry_ref = $derivedsignal->scale(); # getter
$derivedsignal->scale($ontologyentry_ref); # setter
# 'security' association
my $security_ref = $derivedsignal->security(); # getter
$derivedsignal->security($security_ref); # setter
# 'quantitationTypeMaps' association
my $quantitationtypemap_array_ref = $derivedsignal->quantitationTypeMaps(); # getter
$derivedsignal->quantitationTypeMaps(\@quantitationtypemap_list); # setter
=head1 DESCRIPTION
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setName($val)
The restricted setter method for the C<name> attribute.
Input parameters: the value to which the C<name> attribute will be set
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__NAME} = $val;
}
=item $val = $derivedsignal->getName()
The restricted getter method for the C<name> attribute.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setIsBackground($val)
The restricted setter method for the C<isBackground> attribute.
Input parameters: the value to which the C<isBackground> attribute will be set
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__ISBACKGROUND} = $val;
}
=item $val = $derivedsignal->getIsBackground()
The restricted getter method for the C<isBackground> attribute.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setIdentifier($val)
The restricted setter method for the C<identifier> attribute.
Input parameters: the value to which the C<identifier> attribute will be set
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__IDENTIFIER} = $val;
}
=item $val = $derivedsignal->getIdentifier()
The restricted getter method for the C<identifier> attribute.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setDataType($val)
The restricted setter method for the C<dataType> association.
Input parameters: the value to which the C<dataType> association will be set : one of the accepted enumerated values.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
croak(__PACKAGE__ . "::setDataType: wrong type: " . ref($val) . " expected Bio::MAGE::Description::OntologyEntry") unless (not defined $val) or UNIVERSAL::isa($val,'Bio::MAGE::Description::OntologyEntry');
return $self->{__DATATYPE} = $val;
}
=item $val = $derivedsignal->getDataType()
The restricted getter method for the C<dataType> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $array_ref = $derivedsignal->setAuditTrail($array_ref)
The restricted setter method for the C<auditTrail> association.
Input parameters: the value to which the C<auditTrail> association will be set : a reference to an array of objects of type C<Bio::MAGE::AuditAndSecurity::Audit>
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__AUDITTRAIL} = $val;
}
=item $array_ref = $derivedsignal->getAuditTrail()
The restricted getter method for the C<auditTrail> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
}
=item $val = $derivedsignal->addAuditTrail(@vals)
Because the auditTrail association has list cardinality, it may store more
than one value. This method adds the current list of objects in the auditTrail association.
Input parameters: the list of values C<@vals> to add to the auditTrail association. B<NOTE>: submitting a single value is permitted.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $array_ref = $derivedsignal->setPropertySets($array_ref)
The restricted setter method for the C<propertySets> association.
Input parameters: the value to which the C<propertySets> association will be set : a reference to an array of objects of type C<Bio::MAGE::NameValueType>
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__PROPERTYSETS} = $val;
}
=item $array_ref = $derivedsignal->getPropertySets()
The restricted getter method for the C<propertySets> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
}
=item $val = $derivedsignal->addPropertySets(@vals)
Because the propertySets association has list cardinality, it may store more
than one value. This method adds the current list of objects in the propertySets association.
Input parameters: the list of values C<@vals> to add to the propertySets association. B<NOTE>: submitting a single value is permitted.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setChannel($val)
The restricted setter method for the C<channel> association.
Input parameters: the value to which the C<channel> association will be set : one of the accepted enumerated values.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
croak(__PACKAGE__ . "::setChannel: wrong type: " . ref($val) . " expected Bio::MAGE::BioAssay::Channel") unless (not defined $val) or UNIVERSAL::isa($val,'Bio::MAGE::BioAssay::Channel');
return $self->{__CHANNEL} = $val;
}
=item $val = $derivedsignal->getChannel()
The restricted getter method for the C<channel> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $array_ref = $derivedsignal->setConfidenceIndicators($array_ref)
The restricted setter method for the C<confidenceIndicators> association.
Input parameters: the value to which the C<confidenceIndicators> association will be set : a reference to an array of objects of type C<Bio::MAGE::QuantitationType::ConfidenceIndicator>
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__CONFIDENCEINDICATORS} = $val;
}
=item $array_ref = $derivedsignal->getConfidenceIndicators()
The restricted getter method for the C<confidenceIndicators> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
}
=item $val = $derivedsignal->addConfidenceIndicators(@vals)
Because the confidenceIndicators association has list cardinality, it may store more
than one value. This method adds the current list of objects in the confidenceIndicators association.
Input parameters: the list of values C<@vals> to add to the confidenceIndicators association. B<NOTE>: submitting a single value is permitted.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $array_ref = $derivedsignal->setDescriptions($array_ref)
The restricted setter method for the C<descriptions> association.
Input parameters: the value to which the C<descriptions> association will be set : a reference to an array of objects of type C<Bio::MAGE::Description::Description>
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__DESCRIPTIONS} = $val;
}
=item $array_ref = $derivedsignal->getDescriptions()
The restricted getter method for the C<descriptions> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
}
=item $val = $derivedsignal->addDescriptions(@vals)
Because the descriptions association has list cardinality, it may store more
than one value. This method adds the current list of objects in the descriptions association.
Input parameters: the list of values C<@vals> to add to the descriptions association. B<NOTE>: submitting a single value is permitted.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setSecurity($val)
The restricted setter method for the C<security> association.
Input parameters: the value to which the C<security> association will be set : one of the accepted enumerated values.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
croak(__PACKAGE__ . "::setSecurity: wrong type: " . ref($val) . " expected Bio::MAGE::AuditAndSecurity::Security") unless (not defined $val) or UNIVERSAL::isa($val,'Bio::MAGE::AuditAndSecurity::Security');
return $self->{__SECURITY} = $val;
}
=item $val = $derivedsignal->getSecurity()
The restricted getter method for the C<security> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $val = $derivedsignal->setScale($val)
The restricted setter method for the C<scale> association.
Input parameters: the value to which the C<scale> association will be set : one of the accepted enumerated values.
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
croak(__PACKAGE__ . "::setScale: wrong type: " . ref($val) . " expected Bio::MAGE::Description::OntologyEntry") unless (not defined $val) or UNIVERSAL::isa($val,'Bio::MAGE::Description::OntologyEntry');
return $self->{__SCALE} = $val;
}
=item $val = $derivedsignal->getScale()
The restricted getter method for the C<scale> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
=over
=item $array_ref = $derivedsignal->setQuantitationTypeMaps($array_ref)
The restricted setter method for the C<quantitationTypeMaps> association.
Input parameters: the value to which the C<quantitationTypeMaps> association will be set : a reference to an array of objects of type C<Bio::MAGE::BioAssayData::QuantitationTypeMap>
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
return $self->{__QUANTITATIONTYPEMAPS} = $val;
}
=item $array_ref = $derivedsignal->getQuantitationTypeMaps()
The restricted getter method for the C<quantitationTypeMaps> association.
Input parameters: none
MAGE/QuantitationType/DerivedSignal.pm view on Meta::CPAN
}
=item $val = $derivedsignal->addQuantitationTypeMaps(@vals)
Because the quantitationTypeMaps association has list cardinality, it may store more
than one value. This method adds the current list of objects in the quantitationTypeMaps association.
Input parameters: the list of values C<@vals> to add to the quantitationTypeMaps association. B<NOTE>: submitting a single value is permitted.
view all matches for this distribution
view release on metacpan or search on metacpan
BigWigSets
- Added overlap data column to ouput of script
get_intersecting_features.pl and added --set_strand option to enforce
directionality
- Added three new functions to script manipulate_datasets.pl, including
new column, strandsign, and mergestrand
- Fixed script wig2data.pl so it works now
- Updated script get_feature_info.pl to parse an attribute list from the
command line
- Improved handling of metadata when opening tim data files
view all matches for this distribution
view release on metacpan or search on metacpan
Bio/Tools/EPCR.pm view on Meta::CPAN
my($seqname,$location,$mkrname, $rest) = split(/\s+/,$line,4);
my ($start,$end) = ($location =~ /(\S+)\.\.(\S+)/);
# `e-PCR -direct` results code match strand in $rest as (+) and (-). Decode it if present.
my $strandsign;
if ($rest =~ m/^\(([+-])\)(.*)$/) {
($strandsign,$rest) = ($1, $2);
} else {
$strandsign = "?";
}
my $strand = $strandsign eq "+" ? 1 : $strandsign eq "-" ? -1 : 0;
my $markerfeature = Bio::SeqFeature::Generic->new
( '-start' => $start,
'-end' => $end,
'-strand' => $strand,
view all matches for this distribution
view release on metacpan or search on metacpan
examples/quotes.edi view on Meta::CPAN
UNA:+.? 'UNB+UNOC:3+5013546025078+5013546121974+101201:1700+159923+ +QUOTES'UNH+OTP63417+QUOTES:D:96A:UN:EAN002'BGM+31C::28+OTP63417+9'DTM+137:20101201:102'RFF+ON:18179'NAD+BY+5013546121974::9'NAD+SU+5013546025078::9'LIN+1++9780571533817:EN'IM...
view all matches for this distribution
view release on metacpan or search on metacpan
t/xml-catalog/cXML-1.2.036/cXML.dtd view on Meta::CPAN
<!--
For more information about W3C XML signatures, refer to the
following URL. Portions of this DTD are derived from information
contained therein.
http://www.w3.org/TR/xmldsig-core/
-->
<!-- DTD for XML Signatures
http://www.w3.org/2000/09/xmldsig#
Joseph Reagle $last changed 20001215$
http://www.w3.org/2000/09/xmldsig#
$Revision: 1.1 $ on $Date: 2002/02/08 20:32:26 $ by $Author: reagle $
Copyright 2001 The Internet Society and W3C (Massachusetts Institute
of Technology, Institut National de Recherche en Informatique et en
Automatique, Keio University). All Rights Reserved.
t/xml-catalog/cXML-1.2.036/cXML.dtd view on Meta::CPAN
<!-- Start Core Signature declarations, these should NOT be altered -->
<!ELEMENT ds:Signature (ds:SignedInfo, ds:SignatureValue, ds:KeyInfo?, ds:Object*) >
<!ATTLIST ds:Signature
xmlns:ds CDATA #FIXED 'http://www.w3.org/2000/09/xmldsig#'
xmlns:xades CDATA #FIXED 'http://uri.etsi.org/01903/v1.3.2#'
Id ID #IMPLIED >
<!ELEMENT ds:SignatureValue (#PCDATA) >
<!ATTLIST ds:SignatureValue
view all matches for this distribution
view release on metacpan or search on metacpan
share/www/static/jquery.js view on Meta::CPAN
return this.each(function() {
jQuery.dequeue( this, type );
});
},
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
delay: function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
view all matches for this distribution
view release on metacpan or search on metacpan
src/sparse-0.4.4/expand.c view on Meta::CPAN
struct expression *old, struct symbol *oldtype)
{
int old_size = oldtype->bit_size;
int new_size = newtype->bit_size;
long long value, mask, signmask;
long long oldmask, oldsignmask, dropped;
if (newtype->ctype.base_type == &sctxp fp_type ||
oldtype->ctype.base_type == &sctxp fp_type)
goto Float;
src/sparse-0.4.4/expand.c view on Meta::CPAN
// Stop here unless checking for truncation
if (!sctxp Wcast_truncate || sctxp conservative)
return;
// Check if we dropped any bits..
oldsignmask = 1ULL << (old_size-1);
oldmask = oldsignmask | (oldsignmask-1);
dropped = oldmask & ~mask;
// OK if the bits were (and still are) purely sign bits
if (value & dropped) {
if (!(value & oldsignmask) || !(value & signmask) || (value & dropped) != dropped)
warning(sctx_ old->pos->pos, "cast truncates bits from constant value (%llx becomes %llx)",
value & oldmask,
value & mask);
}
return;
view all matches for this distribution
view release on metacpan or search on metacpan
src/speedy_frontend.c view on Meta::CPAN
&(FILE_SLOT(gr_slot, gslotnum).fe_head),
&(FILE_SLOT(gr_slot, gslotnum).fe_tail));
while (1) {
/* Send signals to frontends */
speedy_group_sendsigs(gslotnum);
sent_sig = FILE_SLOT(fe_slot, fslotnum).sent_sig;
FILE_SLOT(fe_slot, fslotnum).sent_sig = 0;
/* If our sent_sig flag is set, and there are be's for us to use ,
view all matches for this distribution
view release on metacpan or search on metacpan
omnithreads/shared/shared.xs view on Meta::CPAN
{
MAGIC *mg;
user_lock *ul = NULL;
assert(ssv);
/* XXX redsign the storage of user locks so we dont need a global
* lock to access them ???? DAPM */
ENTER_LOCK;
mg = mg_find(ssv, PERL_MAGIC_ext);
if (mg)
ul = (user_lock*)(mg->mg_ptr);
view all matches for this distribution
view release on metacpan or search on metacpan
system(@cmd);
die "RPM build (@cmd) failed [$ret]" if $ret = $? >> 8;
if ($info->{sign} && -r $info->{rpm}) {
print "\n\nSigning package (passphrase required) ...\n\n";
sleep 2;
system "rpmsign", "--addsign", $info->{rpm};
}
}
}
print "RPM: $info->{rpm}\n" if -r $info->{rpm};
view all matches for this distribution
view release on metacpan or search on metacpan
t/data/build.cloudweights.log view on Meta::CPAN
t/20-unit/Type-Library/assert.t .................... ok
t/20-unit/Type-Library/inheritance.t ............... ok
t/20-unit/Type-Library/is.t ........................ ok
t/20-unit/Type-Library/to.t ........................ ok
t/20-unit/Type-Library/types.t ..................... ok
t/20-unit/Type-Params/badsigs.t .................... ok
t/20-unit/Type-Params/carping.t .................... ok
t/20-unit/Type-Params/coerce.t ..................... ok
t/20-unit/Type-Params/methods.t .................... ok
t/20-unit/Type-Params/mixednamed.t ................. ok
t/20-unit/Type-Params/multisig.t ................... ok
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
hindering
hinders
Hindi
hindrance
hindrances
hindsight
Hindu
Hinduism
Hindus
Hindustan
Hines
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib/TestApp/Controller/ModifierSignatures.pm view on Meta::CPAN
use CatalystX::Declare;
controller TestApp::Controller::ModifierSignatures
with TestApp::ControllerRole::ModifierSignatures {
action base as 'modsig' under '/';
final action foo (Int $x, Int $y) under base {
$ctx->response->body( $ctx->action->reverse );
}
view all matches for this distribution
view release on metacpan or search on metacpan
MakeMethods/Template/Flyweight.pm view on Meta::CPAN
=head1 DESCRIPTION
Earlier versions of this package included a package named Class::MakeMethods::Template::Flyweight.
However, in hindsight, this name was poorly chosen, as it suggests that the Flyweight object design pattern is being used, when the functionality is more akin to what's sometimes known as "inside-out objects."
This functionality is now provided by Class::MakeMethods::Template::InsideOut, of which this is an almost-empty subclass retained to provide backwards compatibility.
=head1 SEE ALSO
view all matches for this distribution
view release on metacpan or search on metacpan
}
},
"release_status" : "stable",
"resources" : {
"bugtracker" : {
"mailto" : "bug-code-tidyall-plugin-perl-ignoremethodsignaturessimple@rt.cpan.org",
"web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Code-TidyAll-Plugin-Perl-IgnoreMethodSignaturesSimple"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/jonswar/perl-code-tidyall-plugin-perl-ignoremethodsignaturessimple.git",
"web" : "https://github.com/jonswar/perl-code-tidyall-plugin-perl-ignoremethodsignaturessimple"
}
},
"version" : "0.03"
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/js/jquery-1.11.3.js view on Meta::CPAN
_default: 400
};
// Based off of the plugin by Clint Helfers, with permission.
// http://blindsignals.com/index.php/2009/07/jquery-delay/
jQuery.fn.delay = function( time, type ) {
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
type = type || "fx";
return this.queue( type, function( next, hooks ) {
view all matches for this distribution
view release on metacpan or search on metacpan
OLD-Changes.txt view on Meta::CPAN
Revision 1.17 2000/12/07 15:32:36 grail
Further patch to duplicate sections bug, and replacement of repeated values handling code.
Revision 1.14 2000/11/29 11:26:03 grail
Updates for task 22401 (no more reloadsig) and 22402 (Group and GroupMember doco)
Revision 1.13 2000/11/28 12:41:42 grail
Added test for being able to add sections with wierd names like section|version2
Revision 1.11 2000/11/24 21:20:11 rbowen
view all matches for this distribution