view release on metacpan or search on metacpan
lib/Carrot/Personality/Valued/Internet/Protocol/HTTP/Status_Code./autoload.pl view on Meta::CPAN
sub is_416_requested_range_not_satisfiable;
sub set_417_expectation_failed;
sub is_417_expectation_failed;
sub set_422_unprocessable_entity;
sub is_422_unprocessable_entity;
sub set_423_locked;
sub is_423_locked;
sub set_424_failed_dependency;
sub is_424_failed_dependency;
sub set_425_reserved_for_webdav_advanced;
sub is_425_reserved_for_webdav_advanced;
sub set_426_upgrade_required;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/Controller/AutoAssets/Handler.pm view on Meta::CPAN
or carp "Failed to set close-on-exec for $fname (see BUGS in Catalyst::Controller::AutoAssets)";
# Try to get lock until timeout. We poll because there isn't a sensible
# way to wait for the lock. (I don't consider SIGALRM to be very sensible)
my $deadline= Time::HiRes::time() + $timeout;
my $locked= 0;
while (1) {
last if flock($fh, LOCK_EX|LOCK_NB);
croak "Can't get lock on $fname after $timeout seconds" if Time::HiRes::time() >= $deadline;
Time::HiRes::sleep(0.4);
}
view all matches for this distribution
view release on metacpan or search on metacpan
share/ext/ext-all-debug.js view on Meta::CPAN
groups: null,
locked: false,
lock: function() {
this.locked = true;
},
moveOnly: false,
unlock: function() {
this.locked = false;
},
isTarget: true,
share/ext/ext-all-debug.js view on Meta::CPAN
this.unreg();
},
isLocked: function() {
return (this.DDM.isLocked() || this.locked);
},
handleMouseDown: function(e, oDD){
if (this.primaryButtonOnly && e.button != 0) {
share/ext/ext-all-debug.js view on Meta::CPAN
initialized: false,
locked: false,
init: function() {
this.initialized = true;
},
share/ext/ext-all-debug.js view on Meta::CPAN
_onResize: function(e) {
this._execOnAll("resetConstraints", []);
},
lock: function() { this.locked = true; },
unlock: function() { this.locked = false; },
isLocked: function() { return this.locked; },
locationCache: {},
share/ext/ext-all-debug.js view on Meta::CPAN
};
Ext.grid.AbstractSelectionModel = Ext.extend(Ext.util.Observable, {
constructor : function(){
this.locked = false;
Ext.grid.AbstractSelectionModel.superclass.constructor.call(this);
},
init : function(grid){
this.grid = grid;
if(this.lockOnInit){
delete this.lockOnInit;
this.locked = false;
this.lock();
}
this.initEvents();
},
lock : function(){
if(!this.locked){
this.locked = true;
var g = this.grid;
if(g){
g.getView().on({
scope: this,
share/ext/ext-all-debug.js view on Meta::CPAN
}
},
sortLock : function() {
this.locked = true;
},
sortUnLock : function() {
this.locked = false;
},
unlock : function(){
if(this.locked){
this.locked = false;
var g = this.grid,
gv;
if(g){
share/ext/ext-all-debug.js view on Meta::CPAN
}
},
isLocked : function(){
return this.locked;
},
destroy: function(){
this.unlock();
this.purgeListeners();
view all matches for this distribution
view release on metacpan or search on metacpan
t/optional_http-server-restart.t view on Meta::CPAN
kill 9, $pid or die "Cannot send kill signal to $pid: $!";
close $server or die "Cannot close handle to server process: $!";
wait;
# pick next port because the last one might still be blocked from
# previous server. This might fail if this port is unavailable
# but picking the first one has the same problem so this is acceptable
$port += 1;
view all matches for this distribution
view release on metacpan or search on metacpan
t/SQLiteSetup.pm view on Meta::CPAN
=head1 SQLiteSetup
Re-create the test app db file when used, or die trying.
The db file must not be locked by any running app.
=cut
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/Manual/Cookbook.pod view on Meta::CPAN
}
This action works much like auto, in that it is inherited across
namespaces (not like object oriented code). This means that the
C<access_denied> action which is B<nearest> to the action which was
blocked will be triggered.
If this action does not exist, an error will be thrown, which you can
clean up in your C<end> private action instead.
Also, it's important to note that if you restrict access to "/" then
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/Plugin/Authorization/ACL.pm view on Meta::CPAN
controller and outwards (much like C<auto>), and if none is found throws an
access denied exception.
=item forcibly_allow_access
Within an C<access_denied> action this will immediately cause the blocked
action to be executed anyway.
=back
This means that you have several alternatives:
lib/Catalyst/Plugin/Authorization/ACL.pm view on Meta::CPAN
...
$c->forcibly_allow_access
if $you->mean_it eq "really";
}
If you call C<forcibly_allow_access> then the blocked action will be
immediately unblocked. Otherwise the execution of the action will cease, and
return to it's caller or end.
=head2 Cleanup in C<end>
sub end : Private {
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catalyst/Plugin/Starch/Cookie.pm view on Meta::CPAN
The above listed un-implemented methods and attributes will throw an exception
if called.
=cut
# These are already blocked by Catalyst::Plugin::Starch:
# delete_session_id extend_session_id
# get_session_id set_session_id
foreach my $method (qw(
make_session_cookie calc_expiry
view all matches for this distribution
view release on metacpan or search on metacpan
examples/TestApp/root/static/css/theme/jquery-ui.custom.css view on Meta::CPAN
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CatalystX/CMS.pm view on Meta::CPAN
# only the current user can unlock it, either by saving
# changes or by explicitly calling the cancel url.
# could be a redirect from create() so check that owner == $user
my $user = $self->get_user($c);
if ( $cmspage->locked ) {
# how old is the lock?
my $lock_period = $c->config->{cms}->{lock_period} || 3600;
if ( ( $cmspage->lock_time + $lock_period ) < time() ) {
$c->log->debug("lock expired on $cmspage");
$cmspage->lock($user);
}
elsif ( $cmspage->lock_owner ne $user ) {
croak( "$cmspage is already locked by " . $cmspage->lock_owner );
}
else {
# extend the lock every time we hit this url
if ( $cmspage->unlock && $cmspage->lock($user) ) {
lib/CatalystX/CMS.pm view on Meta::CPAN
croak('text param required');
}
my $action = $c->stash->{cms_mode} || 'save';
my $user = $self->get_user($c);
# is this file locked by this user?
if ( !$cmspage->locked ) {
croak( $cmspage->url . " is not locked for editing." );
}
if ( $cmspage->lock_owner ne $user ) {
croak( $cmspage->url . " is not locked by $user." );
}
# YUI editor adds HTML <br> to represent \n
# so filter those and any others.
my $filter += $self->_filter_text( \$text );
lib/CatalystX/CMS.pm view on Meta::CPAN
=cut
sub delete {
my ( $self, $c, $controller, $cmspage ) = @_;
if ( $cmspage->locked ) {
$cmspage->unlock or croak("can't unlock $cmspage");
}
my $user = $self->get_user($c);
my $stat = $cmspage->status;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CatalystX/CRUD/YUI/TT/static/js/livegrid/build/livegrid-all-debug.js view on Meta::CPAN
* The emthod assumes that the record is physically available, i.e.
* pendingSelections will not be taken into account
*/
deselectRecord : function(record, preventViewNotify)
{
if(this.locked) {
return;
}
var isSelected = this.selections.key(record.id);
lib/CatalystX/CRUD/YUI/TT/static/js/livegrid/build/livegrid-all-debug.js view on Meta::CPAN
* Deselects a row.
* @param {Number} row The index of the row to deselect
*/
deselectRow : function(index, preventViewNotify)
{
if(this.locked) return;
if(this.last == index){
this.last = false;
}
if(this.lastActive == index){
lib/CatalystX/CRUD/YUI/TT/static/js/livegrid/build/livegrid-all-debug.js view on Meta::CPAN
*/
selectRow : function(index, keepExisting, preventViewNotify)
{
if(//this.last === index
//||
this.locked
|| index < 0
|| index >= this.grid.store.getTotalCount()) {
return;
}
lib/CatalystX/CRUD/YUI/TT/static/js/livegrid/build/livegrid-all-debug.js view on Meta::CPAN
/**
* Clears all selections.
*/
clearSelections : function(fast)
{
if(this.locked) return;
if(fast !== true){
var ds = this.grid.store;
var s = this.selections;
var ind = -1;
s.each(function(r){
lib/CatalystX/CRUD/YUI/TT/static/js/livegrid/build/livegrid-all-debug.js view on Meta::CPAN
* @param {Number} endRow The index of the last row in the range
* @param {Boolean} keepExisting (optional) True to retain existing selections
*/
selectRange : function(startRow, endRow, keepExisting)
{
if(this.locked) {
return;
}
if(!keepExisting) {
this.clearSelections();
view all matches for this distribution
view release on metacpan or search on metacpan
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
blockaded
blockades
blockading
blockage
blockages
blocked
blocker
blockers
blockhouse
blockhouses
blocking
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
clobber
clobbered
clobbering
clobbers
clock
clocked
clocker
clockers
clocking
clockings
clocks
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
dead
deaden
deadline
deadlines
deadlock
deadlocked
deadlocking
deadlocks
deadly
deadness
deadwood
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
floated
floater
floating
floats
flock
flocked
flocking
flocks
flog
flogging
flood
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
locator
locators
loci
lock
Locke
locked
locker
lockers
Lockhart
Lockheed
Lockian
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
unbecoming
unbelievable
unbiased
unbind
unblock
unblocked
unblocking
unblocks
unborn
unbound
unbounded
lib/CatalystX/Crudite/Util/Random.pm view on Meta::CPAN
unload
unloaded
unloading
unloads
unlock
unlocked
unlocking
unlocks
unlucky
unmanageable
unmanageably
view all matches for this distribution
view release on metacpan or search on metacpan
root/static/js/yui/build/dragdrop/dragdrop-min.js view on Meta::CPAN
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.0
*/
if(!YAHOO.util.DragDropMgr){YAHOO.util.DragDropMgr=function(){var A=YAHOO.util.Event;return{ids:{},handleIds:{},dragCurrent:null,dragOvers:{},deltaX:0,deltaY:0,preventDefault:true,stopPropagation:true,initialized:false,locked:false,interactionInfo:nu...
var C=D.length;if(C==1){F=D[0];}else{for(var E=0;E<C;++E){var B=D[E];if(this.mode==this.INTERSECT&&B.cursorIsOver){F=B;break;}else{if(!F||!F.overlap||(B.overlap&&F.overlap.getArea()<B.overlap.getArea())){F=B;}}}}return F;},refreshCache:function(C){va...
this.resetConstraints();this.onAvailable();},setPadding:function(E,C,F,D){if(!C&&0!==C){this.padding=[E,E,E,E];}else{if(!F&&0!==F){this.padding=[E,C,E,C];}else{this.padding=[E,C,F,D];}}},setInitPosition:function(F,E){var G=this.getEl();if(!this.DDM.v...
YAHOO.util.Dom.setStyle(C,"top",(E.y+this.deltaSetXY[1])+"px");}this.cachePosition(E.x,E.y);var A=this;setTimeout(function(){A.autoScroll.call(A,E.x,E.y,C.offsetHeight,C.offsetWidth);},0);},cachePosition:function(B,A){if(B){this.lastPageX=B;this.last...
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Catmandu/BagIt.pm view on Meta::CPAN
$self->_error([]);
die "usage: write(path[, overwrite => 1])" unless $path;
# Check if other processes are writing or previous processes died
if ($self->locked($path)) {
$self->log->error("$path is locked");
$self->_push_error("$path is locked");
return undef;
}
if (defined($self->path) && $path ne $self->path) {
# If the bag is copied from to a new location than all the tag files and
lib/Catmandu/BagIt.pm view on Meta::CPAN
my ($self,$path) = @_;
File::Spec->catfile($path,'.lock');
}
sub locked {
my ($self,$path) = @_;
$path //= $self->path;
return undef unless defined($path);
lib/Catmandu/BagIt.pm view on Meta::CPAN
if ($bagit->errors) {
print join("\n",$bagit->errors);
exit;
}
unless ($bagit->locked) {
$bagit->write("bags/demo04"); # fails when the bag already exists
$bagit->write("bags/demo04", new => 1); # recreate the bag when it already existed
$bagit->write("bags/demo04", overwrite => 1); # overwrites an exiting bag
}
lib/Catmandu/BagIt.pm view on Meta::CPAN
=head2 write($directory, [%options])
Write a BagIt to disk. Options: new => 1 recreate the bag when it already existed, overwrite => 1 overwrite
and existing bag (updating the changed tags/files);
=head2 locked
Check if a process has locked the BagIt. Or, a previous process didn't complete the write operations.
=head2 path()
Return the path to the BagIt.
view all matches for this distribution
view release on metacpan or search on metacpan
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
CfgTie-revs.tex view on Meta::CPAN
@item Type
ASCII Text (1)
@item Current revision
@item Not locked.
@end table
@subheading Change Log
@multitable @columnfractions .1 .2 .2 .5
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Cfn/Resource/AWS/Cognito/UserPoolRiskConfigurationAttachment.pm view on Meta::CPAN
package Cfn::Resource::Properties::Object::AWS::Cognito::UserPoolRiskConfigurationAttachment::RiskExceptionConfigurationType {
use Moose;
use MooseX::StrictConstructor;
extends 'Cfn::Value::TypedValue';
has BlockedIPRangeList => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
has SkippedIPRangeList => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
}
subtype 'Cfn::Resource::Properties::AWS::Cognito::UserPoolRiskConfigurationAttachment::CompromisedCredentialsRiskConfigurationType',
as 'Cfn::Value';
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Chandra/Assets.pm view on Meta::CPAN
=head1 DESCRIPTION
Serve local CSS, JS, images, and fonts from a directory via custom protocol.
Uses L<Chandra::Protocol> internally to register the asset scheme. Path
traversal attacks are blocked.
=head1 METHODS
=head2 new
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Arabic.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Big5HKSCS.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Big5Plus.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Cyrillic.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/EUCJP.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/EUCTW.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/GB18030.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Greek.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/HP15.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Hebrew.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/INFORMIXV6ALS.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution
view release on metacpan or search on metacpan
lib/JIS8.pm view on Meta::CPAN
=back
=head1 Environment Variable
This software uses the flock function for exclusive control. The execution of the
program is blocked until it becomes possible to read or write the file.
You can have it not block in the flock function by defining environment variable
CHAR_NONBLOCK.
Example:
view all matches for this distribution