view release on metacpan or search on metacpan
duk_config.h view on Meta::CPAN
24922493249424952496249724982499250025012502/* GCC and Clang provide endianness defines as built-in predefines,
with
* leading and trailing double underscores (e.g. __BYTE_ORDER__). See
* output of
"make gccpredefs"
and
"make clangpredefs"
. Clang doesn't
* seem to provide __FLOAT_WORD_ORDER__; assume not mixed endian
for
clang.
*/
#if !defined(DUK_USE_BYTEORDER) && defined(__BYTE_ORDER__)
#if defined(__ORDER_LITTLE_ENDIAN__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#define DUK_USE_BYTEORDER 1
duk_config.h view on Meta::CPAN
26342635263626372638263926402641264226432644#define DUK_VA_COPY(dest,src) do { (dest) = (src); } while (0)
#endif
#endif
#if !defined(DUK_MACRO_STRINGIFY)
/* Macro hackery to convert e.g. __LINE__ to a string without formatting,
*/
#define DUK_MACRO_STRINGIFY_HELPER(x) #x
#define DUK_MACRO_STRINGIFY(x) DUK_MACRO_STRINGIFY_HELPER(x)
#endif
duk_config.h view on Meta::CPAN
view all matches for this distribution
26492650265126522653265426552656265726582659*/
#define DUK_CAUSE_SEGFAULT() do { *((volatile duk_uint32_t *) NULL) = (duk_uint32_t) 0xdeadbeefUL; } while (0)
#endif
#if !defined(DUK_UNREF)
/* Macro
for
suppressing warnings
for
potentially unreferenced variables.
* The variables can be actually unreferenced or unreferenced in some
* specific cases only;
for
instance,
if
a variable is only debug printed,
* it is unreferenced
when
debug printing is disabled. May cause warnings
*
for
volatile arguments.
*/
view release on metacpan or search on metacpan
lib/JavaScript/Embedded/C/lib/duk_config.h view on Meta::CPAN
24922493249424952496249724982499250025012502/* GCC and Clang provide endianness defines as built-in predefines,
with
* leading and trailing double underscores (e.g. __BYTE_ORDER__). See
* output of
"make gccpredefs"
and
"make clangpredefs"
. Clang doesn't
* seem to provide __FLOAT_WORD_ORDER__; assume not mixed endian
for
clang.
*/
#if !defined(DUK_USE_BYTEORDER) && defined(__BYTE_ORDER__)
#if defined(__ORDER_LITTLE_ENDIAN__) && (__BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#if defined(__FLOAT_WORD_ORDER__) && defined(__ORDER_LITTLE_ENDIAN__) && (__FLOAT_WORD_ORDER__ == __ORDER_LITTLE_ENDIAN__)
#define DUK_USE_BYTEORDER 1
lib/JavaScript/Embedded/C/lib/duk_config.h view on Meta::CPAN
26342635263626372638263926402641264226432644#define DUK_VA_COPY(dest,src) do { (dest) = (src); } while (0)
#endif
#endif
#if !defined(DUK_MACRO_STRINGIFY)
/* Macro hackery to convert e.g. __LINE__ to a string without formatting,
*/
#define DUK_MACRO_STRINGIFY_HELPER(x) #x
#define DUK_MACRO_STRINGIFY(x) DUK_MACRO_STRINGIFY_HELPER(x)
#endif
lib/JavaScript/Embedded/C/lib/duk_config.h view on Meta::CPAN
view all matches for this distribution
26492650265126522653265426552656265726582659*/
#define DUK_CAUSE_SEGFAULT() do { *((volatile duk_uint32_t *) NULL) = (duk_uint32_t) 0xdeadbeefUL; } while (0)
#endif
#if !defined(DUK_UNREF)
/* Macro
for
suppressing warnings
for
potentially unreferenced variables.
* The variables can be actually unreferenced or unreferenced in some
* specific cases only;
for
instance,
if
a variable is only debug printed,
* it is unreferenced
when
debug printing is disabled. May cause warnings
*
for
volatile arguments.
*/
view release on metacpan or search on metacpan
tests/lib/Test/Builder.js view on Meta::CPAN
view all matches for this distribution
621622623624625626627628629630631
}
else
{
this.warnOutput(function (msg) { top.alert(msg); });
}
}
else
if
(Test.PLATFORM ==
'director'
) {
// Macromedia-Adobe:Director MX 2004 Support
// XXX Is _player a definitive enough object?
// There may be an even more explicitly Director object.
/
*global
trace */
this.output(trace);
this.failureOutput(trace);
view release on metacpan or search on metacpan
t/TestApp-JiftyJS/share/web/static/js-test/lib/Test/Builder.js view on Meta::CPAN
view all matches for this distribution
604605606607608609610611612613614
}
else
{
this.warnOutput(function (msg) { top.alert(msg); });
}
}
else
if
(Test.PLATFORM ==
'director'
) {
// Macromedia-Adobe:Director MX 2004 Support
// XXX Is _player a definitive enough object?
// There may be an even more explicitly Director object.
this.output(trace);
this.failureOutput(trace);
this.todoOutput(trace);
view release on metacpan or search on metacpan
data/journals.tsv view on Meta::CPAN
view all matches for this distribution
5051525354555657585960ACS Applied Materials & Interfaces 1944-8244 5.9 5.008 4.525 2.925 -
ACS Catalysis 2155-5435 7.572 5.265 - - -
ACS Chemical Biology 1554-8929 5.356 5.442 6.446 5.698 5.108 5.149
ACS Chemical Neuroscience 1948-7193 4.21 3.871 3.676 - -
ACS Combinatorial Science 2156-8952 3.401 3.636 - - -
ACS Macro Letters 2161-1653 5.242 - - - -
ACS Medicinal Chemistry Letters 1948-5875 3.073 3.311 3.355 - -
ACS Nano 1936-0851 12.033 12.062 10.774 9.855 7.493 5.472
ACS Sustainable Chemistry & Engineering 2168-0485 - - - - - -
ACS Synthetic Biology 2161-5063 3.951 - - - -
Acsms Health & Fitness Journal 1091-5397 0.268 0.298 0.404 0.292 0.392 0.353
view release on metacpan or search on metacpan
KappaCUDA_wrap.cpp view on Meta::CPAN
984985986987988989990991992993994995996997998999#define SWIG_MAYBE_PERL_OBJECT SWIG_PERL_OBJECT_DECL
/* SWIG Perl macros */
/* Macro to declare an XS function */
#ifndef XSPROTO
# define XSPROTO(name) void name(pTHX_ CV* cv)
#endif
/* Macro to call an XS function */
#ifdef PERL_OBJECT
# define SWIG_CALLXS(_name) _name(cv,pPerl)
#else
# ifndef MULTIPLICITY
# define SWIG_CALLXS(_name) _name(cv)
KappaCUDA_wrap.cpp view on Meta::CPAN
view all matches for this distribution
13091310131113121313131413151316131713181319
}
return
SWIG_OK;
}
/* Macros
for
low-level exception handling */
#define SWIG_croak(x) { SWIG_Error(SWIG_RuntimeError, x); SWIG_fail; }
typedef XSPROTO(SwigPerlWrapper);
typedef SwigPerlWrapper
*SwigPerlWrapperPtr
;
view release on metacpan or search on metacpan
clownfish/lib/Clownfish/Binding/Perl/Class.pm view on Meta::CPAN
view all matches for this distribution
400401402403404405406407408409410=item * B<xs_code> - Raw XS code to be included in the final .xs file
generated by Clownfish::Binding::Perl. The XS directives PACKAGE and
MODULE should be specified.
=item * B<bind_methods> - An array of names for novel methods for which XS
bindings should be auto-generated, supplied using Clownfish's C<Macro_Name>
method-naming convention. The Perl subroutine name will be derived by
lowercasing C<Method_Name> to C<method_name>, but this can be overridden by
prepending an alias and a pipe: e.g. C<_get_foo|Get_Foo>.
=item * B<bind_constructors> - An array of constructor names. The default
view release on metacpan or search on metacpan
xt/01-ark.t view on Meta::CPAN
view all matches for this distribution
4344454647484950515253<datafield tag=
"100"
ind1=
" "
ind2=
" "
>
<subfield code=
"a"
>Burda, Michael C.</subfield>
<subfield code=
"u"
>Economics and Political Science</subfield>
</datafield>
<datafield tag=
"245"
ind1=
" "
ind2=
" "
>
<subfield code=
"a"
>Macroeconomics:</subfield>
<subfield code=
"b"
>a European text</subfield>
</datafield>
<datafield tag=
"260"
ind1=
" "
ind2=
" "
>
<subfield code=
"b"
>Oxford University Press,</subfield>
<subfield code=
"c"
>1993.</subfield>
view release on metacpan or search on metacpan
lib/LCFG/Build/Tool/CheckMacros.pm view on Meta::CPAN
12345678910111213use
strict;
use
warnings;
# $Id: CheckMacros.pm.in 35684 2019-02-28 10:04:54Z squinney@INF.ED.AC.UK $
# $Source: /var/cvs/dice/LCFG-Build-Tools/lib/LCFG/Build/Tool/CheckMacros.pm.in,v $
# $Revision: 35684 $
# $HeadURL: https://svn.lcfg.org/svn/source/tags/LCFG-Build-Tools/LCFG_Build_Tools_0_9_30/lib/LCFG/Build/Tool/CheckMacros.pm.in $
# $Date: 2019-02-28 10:04:54 +0000 (Thu, 28 Feb 2019) $
our
$VERSION
=
'0.9.30'
;
use
File::Spec ();
lib/LCFG/Build/Tool/CheckMacros.pm view on Meta::CPAN
view all matches for this distribution
2982993003013023033043053063073083093103113123133143153163173183191;
__END__
=head1 NAME
LCFG::Build::Tool::CheckMacros - LCFG software packaging tool
=head1 VERSION
This documentation refers to LCFG::Build::Tool::CheckMacros version 0.9.30
=head1 SYNOPSIS
my $tool = LCFG::Build::Tool::CheckMacros->new( dir => '.' );
$tool->execute;
my $tool2 = LCFG::Build::Tool::CheckMacros->new_with_options();
$tool2->execute;
=head1 DESCRIPTION
view release on metacpan or search on metacpan
lwes_wrap.c view on Meta::CPAN
513514515516517518519520521522523#include <string.h>
#ifdef __cplusplus
}
#endif
/* Macro to call an XS function */
#ifdef PERL_OBJECT
# define SWIG_CALLXS(_name) _name(cv,pPerl)
#else
# ifndef MULTIPLICITY
lwes_wrap.c view on Meta::CPAN
view all matches for this distribution
849850851852853854855856857858859
va_start(args, fmt);
sv_vsetpvfn(perl_get_sv(
"@"
, TRUE), fmt, strlen(fmt),
&args
, Null(SV**), 0, Null(bool*));
va_end(args);
}
/* Macros
for
low-level exception handling */
#define SWIG_fail goto fail
#define SWIG_croak(x) { SWIG_SetError(x); goto fail; }
#define SWIG_croakSV(x) { SWIG_SetErrorSV(x); goto fail; }
/* most preprocessors
do
not support vararg macros :-( */
/*
#define SWIG_croakf(x...) { SWIG_SetErrorf(x); goto fail; } */
view release on metacpan or search on metacpan
Report/examples/localTrojans.pl view on Meta::CPAN
326832693270327132723273327432753276327732781930 tcp/udp driveappserver Drive AppServer
1931 tcp/udp amdsched AMD SCHED
1932 tcp/udp ctt-broker CTT Broker
1933 tcp/udp xmapi IBM LM MT Agent
1934 tcp/udp xaapi IBM LM Appl Agent
1935 tcp/udp macromedia-fcs Macromedia Flash Communications Server MX
1936 tcp/udp jetcmeserver JetCmeServer Server Port
1937 tcp/udp jwserver JetVWay Server Port
1938 tcp/udp jwclient JetVWay Client Port
1939 tcp/udp jvserver JetVision Server Port
1940 tcp/udp jvclient JetVision Client Port
Report/examples/localTrojans.pl view on Meta::CPAN
view all matches for this distribution
550155025503550455055506550755085509551055114321 tcp/udp rwhois Remote Who Is
4321 tcp
# BoBo
4333 tcp/udp
# mSQL
4343 tcp/udp unicall UNICALL
4344 tcp/udp vinainstall VinaInstall
4345 tcp/udp m4-network-as Macro 4 Network AS
4346 tcp/udp elanlm ELAN LM
4347 tcp/udp lansurveyor LAN Surveyor
4348 tcp/udp itose ITOSE
4349 tcp/udp fsportmap File System Port Map
4350 tcp/udp net-device Net Device
view release on metacpan or search on metacpan
262263264265266267268269270271Another group of subroutines
exists
for
direct manipulation of the macro
table maintained by the underlying C library. These functions (see
L<
"Macro table functions"
>, below) allow you to define,
delete
, and
query the value of BibTeX macros (or
"abbreviations"
). They may be
imported I<en masse> using the C<macrosubs> export tag:
view all matches for this distribution
616617618619620621622623624625626=item parse_s (ENTRY_STRUCT, TEXT)
=back
=head2 Macro table functions
These functions allow direct access to the macro table maintained by
B<btparse>, the C library underlying C<LaTeX::BibTeX>. In the normal
course of events, macro definitions always accumulate, and are only
defined as a result of parsing a macro definition (C<@string>) entry.
view release on metacpan or search on metacpan
view all matches for this distribution
12131415161718192021220.05 2016-11-23 02:28:35+00:00
Compatibility
with
perl 5.25 (Alexandr Ciornii)
0.04 2015-12-25 19:16:41+00:00
Macrons are handled properly
0.03 2010-10-18 18:04:14
Specify minimal perl version (5.8.0)
for
UTF-8 support
0.02 2010/07/09
view release on metacpan or search on metacpan
lib/LaTeXML/Plugin/LtxMojo/public/js/external/ace-min/ace.js view on Meta::CPAN
view all matches for this distribution
123456(function(){function o(e){var i=function(e,t){
return
r(
""
,e,t)},s=t;e&&(t[e]||(t[e]={}),s=t[e]);
if
(!s.define||!s.define.packaged)n.original=s.define,s.define=n,s.define.packaged=!0;
if
(!s.
require
||!s.
require
.packaged)r.original=s.
require
,s.
require
=i,s...
(function() {
window.
require
([
"ace/ace"
], function(a) {
a && a.config.init();
if
(!window.ace)
window.ace = {};
view release on metacpan or search on metacpan
lib/LaTeXML/Core/Definition.pm view on Meta::CPAN
view all matches for this distribution
154155156157158159160161162163164
#Debug("START PROFILE $mode of ".ToString($cs));
$STATE
->pushValue(
'runtime_stack'
, [
$name
,
$mode
, [Time::HiRes::gettimeofday],
$entry
]);
return
; }
# Stop profiling $CS.
# Complication w/Macros: If the expansion of a macro contains CS's that read tokens,
# the end MARKER of macros may get read before the macro's effects have really been processed.
# So we need to ignore a stop on a macro that isn't at the top of the stack,
# and conversely, automatically stop a macro that is at the top above a CS that is being stopped.
sub
stopProfiling {
my
(
$cs
,
$mode
) =
@_
;
view release on metacpan or search on metacpan
visa_wrap.c view on Meta::CPAN
939940941942943944945946947948949950951952953954#define SWIG_MAYBE_PERL_OBJECT SWIG_PERL_OBJECT_DECL
/* SWIG Perl macros */
/* Macro to declare an XS function */
#ifndef XSPROTO
# define XSPROTO(name) void name(pTHX_ CV* cv)
#endif
/* Macro to call an XS function */
#ifdef PERL_OBJECT
# define SWIG_CALLXS(_name) _name(cv,pPerl)
#else
# ifndef MULTIPLICITY
# define SWIG_CALLXS(_name) _name(cv)
visa_wrap.c view on Meta::CPAN
view all matches for this distribution
12661267126812691270127112721273127412751276
}
return
SWIG_OK;
}
/* Macros
for
low-level exception handling */
#define SWIG_croak(x) { SWIG_Error(SWIG_RuntimeError, x); SWIG_fail; }
typedef XSPROTO(SwigPerlWrapper);
typedef SwigPerlWrapper
*SwigPerlWrapperPtr
;
view release on metacpan or search on metacpan
hugs98-Nov2003/fptools/libraries/OpenGL/include/HsOpenGLTypes.h view on Meta::CPAN
view all matches for this distribution
12345678/* -----------------------------------------------------------------------------
*
* Module : Macros
for
basic GL types to get better Haddock documentation
* Copyright : (c) Sven Panne 2003
* License : BSD-style (see the file libraries/OpenGL/LICENSE)
*
* Maintainer : sven_panne
@yahoo
.com
* Stability : provisional
view release on metacpan or search on metacpan
lib/Language/LispPerl.pm view on Meta::CPAN
view all matches for this distribution
182183184185186187188189190191* Maps :
{:key1 value1 :key2 value2
"key3"
value3}
=head4 Macro charaters
* Quote ('). :
'(foo bar)
view release on metacpan or search on metacpan
mzscheme_wrap.c view on Meta::CPAN
513514515516517518519520521522523#include <string.h>
#ifdef __cplusplus
}
#endif
/* Macro to call an XS function */
#ifdef PERL_OBJECT
# define SWIG_CALLXS(_name) _name(cv,pPerl)
#else
# ifndef MULTIPLICITY
mzscheme_wrap.c view on Meta::CPAN
view all matches for this distribution
849850851852853854855856857858859
va_start(args, fmt);
sv_vsetpvfn(perl_get_sv(
"@"
, TRUE), fmt, strlen(fmt),
&args
, Null(SV**), 0, Null(bool*));
va_end(args);
}
/* Macros
for
low-level exception handling */
#define SWIG_fail goto fail
#define SWIG_croak(x) { SWIG_SetError(x); goto fail; }
#define SWIG_croakSV(x) { SWIG_SetErrorSV(x); goto fail; }
/* most preprocessors
do
not support vararg macros :-( */
/*
#define SWIG_croakf(x...) { SWIG_SetErrorf(x); goto fail; } */
view release on metacpan or search on metacpan
141142143144145146147148149150151<UL>
<LI><B>1.0</B> April 1988.
Initial release.
<LI><B>1.1</B> April 1988.
Macros, predicates, load. Better number recognizer in
read
,
provided siod.scm file.
<LI><B>1.2</B> April 1988.
Name changes as requested by JAR
@AI
.AI.MIT.EDU, plus some bug fixes.
<LI><B>1.3</B> May 1988.
view all matches for this distribution
159160161162163164165166167168169<LI><B>2.0</B> December 1989.
Set_Repl_Hooks,
catch
& throw.
<LI><B>2.1</B> December 1989.
Additions to SIOD.SCM: Backquote, cond.
<LI><B>2.2</B> December 1989.
User Type extension. Read-Macros. (From C-programmer level).
<LI><B>2.3</B> December 1989.
save-forms. load
with
argument t, comment character, faster intern.
-o flag gives obarray size.
default
100.
<LI><B>2.4</B> April 1990.
speed up arithmetic and the evaluator. fixes to siod.scm. no_interrupt
view release on metacpan or search on metacpan
lib/Lemonldap/NG/Cli.pm view on Meta::CPAN
170171172173174175176177178179180
save
=> 0,
var
=>
$var
,
};
}
## Macros
when
(
"set-macro"
)
{
# set-macro takes two parameters
if
(
$self
->{argc} < 3)
lib/Lemonldap/NG/Cli.pm view on Meta::CPAN
view all matches for this distribution
931932933934935936937938939940941
}
"$var = '"
,
$self
->{conf}->{
$var
},
"'\n"
;
}
## Macros
when
(
"set-macro"
)
{
my
$m_name
=
$self
->{action}->{name};
my
$m_expr
=
$self
->{action}->{expr};
view release on metacpan or search on metacpan
lib/Lemonldap/NG/Common/Conf/Constants.pm view on Meta::CPAN
view all matches for this distribution
272829303132333435363738# Default configuration backend
dirName
=>
'/usr/local/lemonldap-ng/data/conf'
,
);
our
$hashParameters
=
qr/^(?:(?:r(?:e(?:moteGlobalStorageOption|st2f(?:Verify|Init)Arg|loadUrl)|adius(?:(?:2f)?RequestAttribute|ExportedVar))|l(?:o(?:ca(?:lSessionStorageOption|tionRule)|goutService)|dapExportedVar|wp(?:Ssl)?Opt)|(?:(?:d(?:emo|bi)|we...
our $arrayParameters = qr/
^mySessionAuthorizedRWKeys$/;
our
$boolKeys
=
qr/^(?:s(?:aml(?:IDP(?:MetaDataOptions(?:(?:Check(?:S[LS]OMessageSignatur|Audienc|Tim)|IsPassiv)e|A(?:daptSessionUtime|llowLoginFromIDP)|Force(?:Authn|UTF8)|StoreSAMLToken|RelayStateURL)|SSODescriptorWantAuthnRequestsSigned)|S(?:P(?:M...
our @sessionTypes = ( 'remoteGlobal', 'global', 'localSession', 'persistent', 'saml', 'oidc', 'cas' );
sub NO {qr/
^(?:off|
no
|0)?$/i}
view release on metacpan or search on metacpan
lib/Lemonldap/NG/Manager/Api/Providers/CasApp.pm view on Meta::CPAN
236237238239240241242243244245246return
$self
->sendError(
$req
,
"CAS application '$confKey' not found"
, 404 )
unless
(
defined
$delete
);
delete
$conf
->{casAppMetaDataOptions}->{
$confKey
};
delete
$conf
->{casAppMetaDataExportedVars}->{
$confKey
};
delete
$conf
->{casAppMetaDataMacros}->{
$confKey
};
# Save configuration
$self
->_saveApplyConf(
$conf
);
return
$self
->sendJSONresponse(
$req
,
undef
,
code
=> 204 );
lib/Lemonldap/NG/Manager/Api/Providers/CasApp.pm view on Meta::CPAN
257258259260261262263264265266267# # Get extra claim
# my $extraClaims = $conf->{casAppMetaDataOptionsExtraClaims}->{$confKey};
# Get macros
my
$macros
=
$conf
->{casAppMetaDataMacros}->{
$confKey
} || {};
# Get options
my
$options
= {};
for
my
$configOption
(
keys
%{
$conf
->{casAppMetaDataOptions}->{
$confKey
} } )
lib/Lemonldap/NG/Manager/Api/Providers/CasApp.pm view on Meta::CPAN
341342343344345346347348349350my
$translatedOptions
= {};
if
(
$replace
) {
$conf
->{casAppMetaDataOptions}->{
$confKey
} = {};
$conf
->{casAppMetaDataExportedVars}->{
$confKey
} = {};
$conf
->{casAppMetaDataMacros}->{
$confKey
} = {};
$translatedOptions
=
$self
->_getDefaultValues(
'casAppMetaDataNodes'
);
}
if
(
defined
$push
->{options} ) {
lib/Lemonldap/NG/Manager/Api/Providers/CasApp.pm view on Meta::CPAN
view all matches for this distribution
385386387388389390391392393394395}
if
(
defined
$push
->{macros} ) {
if
(
$self
->_isSimpleKeyValueHash(
$push
->{macros} ) ) {
foreach
(
keys
%{
$push
->{macros} } ) {
$conf
->{casAppMetaDataMacros}->{
$confKey
}->{
$_
} =
$push
->{macros}->{
$_
};
}
}
else
{
return
{