08-17-2006
Sugar's fille under easy listening
9 More Discussions You Might Find Interesting
1. IP Networking
Hi..
I am using HPux11.0
i want to know if server not listening to a tcp port what should we do to resolve the problem....
in /etc/services tcp port 7108/tcp is mentioned for some perticular application..
while starting that application error is coming could not establish
listening address... (1 Reply)
Discussion started by: Prafulla
1 Replies
2. What is on Your Mind?
Hi guys, lets make this more interesting... I'm sure you listen to something when your working on a project or something... I know, I do, helps with concentration.
Track: ±¯¸èÖ®Íõ (King of sad songs)
Artist: -îǧ‹Ã Miriam Yeung
Lovely forum BTW! :D (33 Replies)
Discussion started by: hype.it
33 Replies
3. UNIX for Dummies Questions & Answers
Hi,
Bit of a newbie question . . .
How can I detrimine what TCP port a particular process is listening on?
TIA. (2 Replies)
Discussion started by: Le Badger
2 Replies
4. SuSE
I installed Apache2 and Gadmin-Httpd on Suse after installation I got a error message no listening sockets available when start apache.
Please advise, I check lot of forums but unable to find solution (4 Replies)
Discussion started by: real-chess
4 Replies
5. Red Hat
How can I have ports that are listening without processes being associated with them?
root@ldv002 # netstat -ltnup
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0... (2 Replies)
Discussion started by: Padow
2 Replies
6. Ubuntu
Hi everyone.
Apologies if I am posting in the wrong area.
I would like to find out a bit about how ubuntu/linux handles text boxes. In particular I would like to develop an application that launches another application (on screen keyboard) when any text box is clicked. The goal is to get... (4 Replies)
Discussion started by: Huss
4 Replies
7. AIX
Hello guys
I am experiencing a very strange behavior on one of our AIX servers. We have an application with several processes that listen on several port numbers. Sometimes we receive complains that people cannot connect to the server on a specific port that is used by one the application... (6 Replies)
Discussion started by: abohmeed
6 Replies
8. Ubuntu
I ran 'sudo netstat -ntpl' and got the following without PID
tcp 0 0 0.0.0.0:2049 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:38977 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:34253 ... (3 Replies)
Discussion started by: tt77
3 Replies
9. Shell Programming and Scripting
Hi,
bash-3.2$ uname -a
Linux mymac 2.6.18-409.el5 #1 SMP Fri Feb 12 06:37:28 EST 2016 x86_64 x86_64 x86_64 GNU/Linux
bash-3.2$ telnet 10.12.228.40 13900
Trying 10.12.228.40...
telnet: connect to address 10.12.228.40: Connection refused
bash-3.2$ telnet 10.12.228.40 23900
Trying... (2 Replies)
Discussion started by: mohtashims
2 Replies
LEARN ABOUT DEBIAN
moosex::has::sugar::saccharin
MooseX::Has::Sugar::Saccharin(3pm) User Contributed Perl Documentation MooseX::Has::Sugar::Saccharin(3pm)
NAME
MooseX::Has::Sugar::Saccharin - Experimental sweetness
VERSION
version 0.05070420
SYNOPSIS
This is a highly experimental sugaring module. No Guarantees of stability.
use MooseX::Types::Moose qw( :all );
has name => rw Str, default { 1 };
has suffix => required rw Str;
has 'suffix', required rw Str;
Your choice.
EXPORT GROUPS
:default
exports "ro", "rw", "required", "lazy", "lazy_build", "coerce", "weak_ref", "auto_deref",
"bare", "default", "init_arg", "predicate", "clearer", "builder", "trigger",
EXPORTED FUNCTIONS
bare
bare $Type
bare Str
equivalent to this
is => 'bare', isa => Str
ro
ro $Type
ro Str
equivalent to this
is => 'ro', isa => Str,
rw
rw $Type
rw Str
equivalent to this
is => 'rw', isa => Str
required
required @rest
this
required rw Str
is equivalent to this
required => 1, is => 'rw', isa => Str,
this
rw Str, required
is equivalent to this
is => 'rw', isa => Str , required => 1
lazy
lazy @rest
like "( lazy => 1 , @rest )"
lazy_build
lazy_build @rest
like "( lazy_build => 1, @rest )"
weak_ref
weak_ref @rest
like "( weak_ref => 1, @rest )"
coerce
@rest
like "( coerce => 1, @rest )"
WARNING:
Conflicts with "MooseX::Types's" "coerce" method
auto_deref
auto_deref @rest
like "( auto_deref => 1, @rest )"
builder
builder $buildername:
required rw Str, builder '_build_foo'
is like
builder => '_build_foo'
predicate
predicate $predicatename
see "builder"
clearer
clearer $clearername
see "builder"
init_arg
init_arg $argname
see "builder"
default
default { $code }
Examples:
default { 1 }
default { { } }
default { [ ] }
default { $_->otherfield }
$_ is localised as the same value as $_[0] for convenience ( usually $self )
trigger
trigger { $code }
Works exactly like default.
CONFLICTS
MooseX::Has::Sugar
MooseX::Has::Sugar::Minimal
This module is not intended to be used in conjunction with
::Sugar or ::Sugar::Minimal
We export many of the same symbols and its just not very sensible.
MooseX::Types
Moose::Util::TypeConstraints
due to exporting the "coerce" symbol, using us in the same scope as a call to
use MooseX::Types ....
or
use Moose::Util::TypeConstraints
will result in a symbol collision.
We recommend using and creating proper type libraries instead, ( which will absolve you entirely of the need to use MooseX::Types and
MooseX::Has::Sugar(::*)? in the same scope )
Perl 5.010 feature 'switch'
the keyword 'default' becomes part of Perl in both these cases:
use 5.010;
use feature qw( :switch );
As such, we can't have that keyword in that scenario.
AUTHOR
Kent Fredric <kentnl at cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Kent Fredric.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
perl v5.14.2 2012-02-12 MooseX::Has::Sugar::Saccharin(3pm)