view release on metacpan or search on metacpan
lib/SBOM/CycloneDX/Composition.pm view on Meta::CPAN
=item * C<aggregate>, Specifies an aggregate type that describes how complete a
relationship is.
=item * C<assemblies>, The bom-ref identifiers of the components or services being
described. Assemblies refer to nested relationships whereby a constituent part
may include other constituent parts. References do not cascade to child parts.
References are explicit for the specified constituent part only.
=item * C<bom_ref>, An identifier which can be used to reference the composition
elsewhere in the BOM. Every C<bom-ref> must be unique within the BOM.
Value SHOULD not start with the BOM-Link intro 'urn:cdx:' to avoid conflicts with BOM-Links.
=item * C<dependencies>, The bom-ref identifiers of the components or services
being described. Dependencies refer to a relationship whereby an independent
constituent part requires another independent constituent part. References do
not cascade to transitive dependencies. References are explicit for the specified
dependency only.
=item * C<signature>, Enveloped signature in JSON Signature Format
(JSF) (L<https://cyberphone.github.io/doc/security/jsf.html>).
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SNMP/Info/Layer2/Baystack.pm view on Meta::CPAN
my %if;
foreach my $iid ( keys %$i_index ) {
my $index = $i_index->{$iid};
next unless defined $index;
# Ignore cascade ports
next if $index > $index_factor * 8;
my $port = ( $index % $index_factor );
my $slot = ( int( $index / $index_factor ) ) + $slot_offset;
view all matches for this distribution
view release on metacpan or search on metacpan
targetNamespace for finding operation messages, not the <wsdl:definition>
element's targetNamespace
* Attribute handling has been improved so it could possibly work.
Attributes from different namespaces are probably still broken.
* Attribute ref handling has been added (though probably broken on
ref cascades).
* <xsd:attributeGroup> elements are now parsed, but have no effect yet.
* <xsd:enumeration> elements are now parsed, but have no effect yet.
2.00_32 - Feb 14 2008
view all matches for this distribution
view release on metacpan or search on metacpan
examples/Basic/geant3task.pl view on Meta::CPAN
$gtelec->Add($gbreme);
$gtelec->Add($gdray);
$gtelec->Add($ganni);
$gtelec->Add($gannir);
my $guphad = TTask->new("guphad","Hadronic cross-section manager");
my $guhadr = TTask->new("guhadr","Hadronic cascade manager");
my $gdecay = TTask->new("gdecay","Particle decay");
$gtneut->Add($gtnext);
$gtneut->Add($guphad);
$gtneut->Add($guhadr);
$gtneut->Add($gdecay);
view all matches for this distribution
view release on metacpan or search on metacpan
$fatpacked{"App/cpanminus/Dependency.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_CPANMINUS_DEPENDENCY';
package App::cpanminus::Dependency;use strict;use CPAN::Meta::Requirements;sub from_prereqs {my($class,$prereqs,$phases,$types)=@_;my@deps;for my$type (@$types){push@deps,$class->from_versions($prereqs->merged_requirements($phases,[$type])->as_stri...
APP_CPANMINUS_DEPENDENCY
$fatpacked{"App/cpanminus/script.pm"} = '#line '.(1+__LINE__).' "'.__FILE__."\"\n".<<'APP_CPANMINUS_SCRIPT';
package App::cpanminus::script;use strict;use Config;use Cwd ();use App::cpanminus;use App::cpanminus::Dependency;use File::Basename ();use File::Find ();use File::Path ();use File::Spec ();use File::Copy ();use File::Temp ();use Getopt::Long ();us...
It appears your cpanm executable was installed via `perlbrew install-cpanm`.
cpanm --self-upgrade won't upgrade the version of cpanm you're running.
Run the following command to get it upgraded.
A dialog will be prompted to confirm the files to be deleted. If you pass
C<-f> option as well, the dialog will be skipped and uninstallation
will be forced.
=item --cascade-search
B<EXPERIMENTAL>: Specifies whether to cascade search when you specify
multiple mirrors and a mirror doesn't have a module or has a lower
version of the module than requested. Defaults to false.
=item --skip-installed
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Admin/Driver/Base/Keywords.pm view on Meta::CPAN
qw( asensitive assertion assignment assymetric at ),
qw( atomic attribute attributes authorization avg ),
qw( before begin bernoulli between begin ),
qw( binary bit bitvar bit_length blob ),
qw( boolean both breadth by c ),
qw( cache call called cardinality cascade ),
qw( cascaded case cast catalog catalog_name ),
qw( ceil cailing char character characteristics ),
qw( char_length check checked class ),
# qw( characters character_length
);
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Engine.pm view on Meta::CPAN
=item table-drop example #2
$sql->table_drop(
name => 'people',
condition => 'cascade'
);
=item table-drop example #2 output
# DROP TABLE "people" CASCADE
lib/SQL/Engine.pm view on Meta::CPAN
=item constraint-create example #3
$sql->constraint_create(
on => {
update => 'cascade',
delete => 'cascade'
},
source => {
table => 'users',
column => 'profile_id'
},
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Exec/Oracle.pm view on Meta::CPAN
union all
select 'drop sequence ' || sequence_name from user_sequences
union all
select 'drop view ' || view_name from user_views
union all
select 'drop table ' || table_name || ' cascade constraints' from user_tables
union all
select 'drop package ' || object_name from user_procedures where object_type = 'PACKAGE'
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Statement/Syntax.pod view on Meta::CPAN
=head3 DROP TABLE
DROP TABLE $table [ RESTRICT | CASCADE ]
* IMPORTANT NOTE: drop behavior (cascade or restrict) is
checked for valid syntax but is otherwise *IGNORED* -- it
is recognized by the parser, but not by the execution
engine
=head3 INSERT INTO
view all matches for this distribution
view release on metacpan or search on metacpan
t/lib-dbicschema/Schema/Result/Blog.pm view on Meta::CPAN
__PACKAGE__->set_primary_key("id");
__PACKAGE__->has_many(
"blog_tags",
"Schema::Result::BlogTag",
{ "foreign.blog" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07015 @ 2012-02-05 21:35:07
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Pu8So1Y80nFfvuHrqLpqag
t/lib-dbicschema/Schema/Result/Blog.pm view on Meta::CPAN
);
__PACKAGE__->has_many(
"tags", "Schema::Result::BlogTag",
{"foreign.blog" => "self.id"},
{cascade_copy => 0, cascade_delete => 0},
);
sub url_title {
my $self = shift;
my $title = $self->title;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Translator/Parser/Access.pm view on Meta::CPAN
on_update : /on update/i reference_option
{ $item[2] }
reference_option: /restrict/i |
/cascade/i |
/set null/i |
/no action/i |
/set default/i
{ $item[1] }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/SQL/Yapp.pm view on Meta::CPAN
my ($lx)= @_;
return unless
expect($lx, \@DROP_TABLE_INITIAL);
my $r= create($lx, ['Stmt','DropTable'],
qw(subtype if_exists table cascade));
$r->{subtype}= lexer_shift($lx);
if ($read_dialect{mysql} &&
looking_at($lx, 'IF EXISTS', SHIFT))
{
lib/SQL/Yapp.pm view on Meta::CPAN
}
return unless
$r->{table}= parse_list([], $lx, \&parse_table, ',');
$r->{cascade}= looking_at($lx, ['RESTRICT','CASCADE'], SHIFT);
lock_hash %$r;
return $r;
}
lib/SQL/Yapp.pm view on Meta::CPAN
if ($thing->{if_exists}) {
str_append_str ($str, 'IF EXISTS ');
}
str_append_list ($str, $thing->{table}, NO_PARENS);
if (my $x= $thing->{cascade}) {
str_append_str ($str, " $x");
}
str_append_end ($str);
str_append_end ($str);
},
view all matches for this distribution
view release on metacpan or search on metacpan
libswish3.c view on Meta::CPAN
};
struct swish_ConfigFlags
{
boolean tokenize;
boolean cascade_meta_context;
boolean ignore_xmlns;
boolean follow_xinclude;
int undef_metas;
int undef_attrs;
int max_meta_id;
libswish3.c view on Meta::CPAN
)
{
swish_ConfigFlags *flags;
flags = swish_xmalloc(sizeof(swish_ConfigFlags));
flags->tokenize = SWISH_TRUE;
flags->cascade_meta_context = SWISH_FALSE; /* add tokens to every metaname in the stack */
flags->ignore_xmlns = SWISH_TRUE;
flags->follow_xinclude = SWISH_TRUE;
flags->undef_metas = SWISH_UNDEF_METAS_INDEX;
flags->undef_attrs = SWISH_UNDEF_ATTRS_DISABLE;
flags->max_meta_id = -1;
libswish3.c view on Meta::CPAN
swish_config_flags_debug(
swish_ConfigFlags *flags
)
{
SWISH_DEBUG_MSG("config->tokenize == %d", flags->tokenize);
SWISH_DEBUG_MSG("config->cascade_meta_context == %d", flags->cascade_meta_context);
SWISH_DEBUG_MSG("config->ignore_xmlns == %d", flags->ignore_xmlns);
SWISH_DEBUG_MSG("config->follow_xinclude == %d", flags->follow_xinclude);
SWISH_DEBUG_MSG("config->undef_metas == %d", flags->undef_metas);
SWISH_DEBUG_MSG("config->undef_attrs == %d", flags->undef_attrs);
SWISH_DEBUG_MSG("config->max_meta_id == %d", flags->max_meta_id);
libswish3.c view on Meta::CPAN
if (swish_hash_exists(config2->misc, BAD_CAST SWISH_TOKENIZE)) {
config2->flags->tokenize = swish_string_to_boolean(swish_hash_fetch(config2->misc, BAD_CAST SWISH_TOKENIZE));
}
config1->flags->tokenize = config2->flags->tokenize;
if (swish_hash_exists(config2->misc, BAD_CAST SWISH_CASCADE_META_CONTEXT)) {
config2->flags->cascade_meta_context =
swish_string_to_boolean(swish_hash_fetch(config2->misc, BAD_CAST SWISH_CASCADE_META_CONTEXT));
}
config1->flags->cascade_meta_context = config2->flags->cascade_meta_context;
if (swish_hash_exists(config2->misc, BAD_CAST SWISH_IGNORE_XMLNS)) {
config2->flags->ignore_xmlns =
swish_string_to_boolean(swish_hash_fetch(config2->misc, BAD_CAST SWISH_IGNORE_XMLNS));
}
config1->flags->ignore_xmlns = config2->flags->ignore_xmlns;
libswish3.c view on Meta::CPAN
}
swish_nb_add_buf(parser_data->metanames, metaname_stored_as, parser_data->meta_buf,
(xmlChar *)SWISH_TOKENPOS_BUMPER, 0, 1);
/*
* if cascade_meta_context is true, add tokens (buffer) to every metaname on the stack.
*/
if (parser_data->s3->config->flags->cascade_meta_context) {
for (s->temp = s->head; s->temp != NULL; s->temp = s->temp->next) {
if (xmlStrEqual(s->temp->baked, metaname_stored_as)) /* already added */
continue;
swish_nb_add_buf(parser_data->metanames, s->temp->baked,
libswish3.c view on Meta::CPAN
h->config->flags->tokenize =
swish_string_to_boolean(swish_hash_fetch(h->config->misc, BAD_CAST SWISH_TOKENIZE));
}
if (swish_hash_exists(h->config->misc, BAD_CAST SWISH_CASCADE_META_CONTEXT)) {
/*
SWISH_DEBUG_MSG("cascade_meta_context in config == %s",
swish_hash_fetch(h->config->misc, BAD_CAST SWISH_CASCADE_META_CONTEXT));
*/
h->config->flags->cascade_meta_context =
swish_string_to_boolean(swish_hash_fetch(h->config->misc, BAD_CAST SWISH_CASCADE_META_CONTEXT));
}
if (swish_hash_exists(h->config->misc, BAD_CAST SWISH_IGNORE_XMLNS)) {
/*
SWISH_DEBUG_MSG("ignore_xmlns in config == %s",
view all matches for this distribution
view release on metacpan or search on metacpan
t/30_aus_membership.t view on Meta::CPAN
{
$self->{_groups}->[2]->{id} => 1,
$self->{_groups}->[0]->{id} => 0,
$self->{_groups}->[3]->{id} => 2,
},
"hippydom cascades"
);
},
sub {
my $self = shift;
ok(
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Schema/RackTables/0_17_0/Result/File.pm view on Meta::CPAN
__PACKAGE__->has_many(
"file_links",
"Schema::RackTables::0_17_0::Result::FileLink",
{ "foreign.file_id" => "self.id" },
{ cascade_copy => 0, cascade_delete => 0 },
);
# Created by DBIx::Class::Schema::Loader v0.07043 @ 2015-10-22 23:04:34
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:EjDkScgKMLCLmISoFxqX/w
view all matches for this distribution