Result:
found more than 394 distributions - search limited to the first 2001 files matching your query ( run in 2.072 )


Alien-Role-Dino

 view release on metacpan or  search on metacpan

corpus/autoheck-libpalindrome/config.guess  view on Meta::CPAN

	else # Add other i860-SVR4 vendors below as they are discovered.
	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
	fi
	exit ;;
    mini*:CTIX:SYS*5:*)
	# "miniframe"
	echo m68010-convergent-sysv
	exit ;;
    mc68k:UNIX:SYSTEM5:3.51m)
	echo m68k-convergent-sysv
	exit ;;

 view all matches for this distribution


Alien-SDL

 view release on metacpan or  search on metacpan

patches/SDL-1.2.14-configure  view on Meta::CPAN

  --enable-video-nanox    use nanox video driver [[default=no]]
  --enable-nanox-debug    print debug messages [[default=no]]
  --enable-nanox-share-memory
                          use share memory [[default=no]]
  --enable-nanox-direct-fb
                          use direct framebuffer access [[default=no]]
  --enable-video-x11      use X11 video driver [[default=yes]]
  --enable-x11-shared     dynamically load X11 support [[default=maybe]]
  --enable-dga            allow use of X11 DGA code [[default=yes]]
  --enable-video-dga      use DGA 2.0 video driver [[default=yes]]
  --enable-video-x11-dgamouse

patches/SDL-1.2.14-configure  view on Meta::CPAN

                          enable X11 Xrandr extension for fullscreen
                          [[default=yes]]
  --enable-video-photon   use QNX Photon video driver [[default=yes]]
  --enable-video-carbon   use Carbon/QuickDraw video driver [[default=no]]
  --enable-video-cocoa    use Cocoa/Quartz video driver [[default=yes]]
  --enable-video-fbcon    use framebuffer console video driver [[default=yes]]
  --enable-video-directfb use DirectFB video driver [[default=yes]]
  --enable-video-ps2gs    use PlayStation 2 GS video driver [[default=yes]]
  --enable-video-ps3      use PlayStation 3 Cell driver [[default=yes]]
  --enable-video-ggi      use GGI video driver [[default=no]]
  --enable-video-svga     use SVGAlib video driver [[default=yes]]

patches/SDL-1.2.14-configure  view on Meta::CPAN

else
  enable_video_carbon=no
fi

    if test x$enable_video = xyes -a x$enable_video_carbon = xyes; then
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Carbon framework" >&5
$as_echo_n "checking for Carbon framework... " >&6; }
        have_carbon=no
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

          #include <Carbon/Carbon.h>

patches/SDL-1.2.14-configure  view on Meta::CPAN

fi

    if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
        save_CFLAGS="$CFLAGS"
                CFLAGS="$CFLAGS -x objective-c"
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Cocoa framework" >&5
$as_echo_n "checking for Cocoa framework... " >&6; }
        have_cocoa=no
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

          #import <Cocoa/Cocoa.h>

patches/SDL-1.2.14-configure  view on Meta::CPAN

else
  enable_video_fbcon=yes
fi

    if test x$enable_video = xyes -a x$enable_video_fbcon = xyes; then
        { $as_echo "$as_me:${as_lineno-$LINENO}: checking for framebuffer console support" >&5
$as_echo_n "checking for framebuffer console support... " >&6; }
        video_fbcon=no
        cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h.  */

         #include <linux/fb.h>

patches/SDL-1.2.14-configure  view on Meta::CPAN

        $as_echo "#define SDL_VIDEO_OPENGL 1" >>confdefs.h

        case "$host" in
            *-*-darwin*)
                if test x$enable_video_cocoa = xyes; then
                    EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,OpenGL"
                fi
                if test x$enable_video_carbon = xyes; then
                    EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AGL"
                fi
        esac
    fi
}

patches/SDL-1.2.14-configure  view on Meta::CPAN

        if test x$enable_joystick = xyes; then
            $as_echo "#define SDL_JOYSTICK_IOKIT 1" >>confdefs.h

            SOURCES="$SOURCES $srcdir/src/joystick/darwin/*.c"
            have_joystick=yes
            need_iokit_framework=yes
        fi
        # Set up files for the cdrom library
        if test x$enable_cdrom = xyes; then
            $as_echo "#define SDL_CDROM_MACOSX 1" >>confdefs.h

patches/SDL-1.2.14-configure  view on Meta::CPAN

        # The Mac OS X platform requires special setup.
        SDLMAIN_SOURCES="$srcdir/src/main/macosx/*.m"
        EXTRA_CFLAGS="$EXTRA_CFLAGS -fpascal-strings"
        SDL_LIBS="-lSDLmain $SDL_LIBS"
        if test x$enable_video_cocoa = xyes; then
            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Cocoa"
            need_iokit_framework=yes
        fi
        if test x$enable_video_carbon = xyes -o x$enable_video_cocoa = xyes; then
            # The Cocoa backend still needs Carbon
            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,ApplicationServices"
            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,Carbon"
        fi
        # If either the audio or CD driver is used, add the AudioUnit framework
        if test x$enable_audio = xyes -o x$enable_cdrom = xyes; then
            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,AudioToolbox -Wl,-framework,AudioUnit"
        fi
        # Some subsystems reference IOKit...
        if test x$need_iokit_framework = xyes; then
            EXTRA_LDFLAGS="$EXTRA_LDFLAGS -Wl,-framework,IOKit"
        fi
        ;;
    *-*-mint*)
        ARCH=mint
        CheckDummyVideo

patches/SDL-1.2.14-configure  view on Meta::CPAN

fi

case "$ARCH" in
  macosx)
    if test x$enable_video = xyes -a x$enable_video_cocoa = xyes; then
      SDL_LIBS="$SDL_LIBS -Wl,-framework,Cocoa"
    fi
    if test x$enable_video = xyes -a x$enable_video_carbon = xyes; then
      SDL_LIBS="$SDL_LIBS -Wl,-framework,Carbon"
    fi
    # Evil hack to allow static linking on Mac OS X
    SDL_STATIC_LIBS="\${libdir}/libSDLmain.a \${libdir}/libSDL.a $EXTRA_LDFLAGS"
    ;;
  *)

 view all matches for this distribution


Alien-SVN

 view release on metacpan or  search on metacpan

src/subversion/CHANGES  view on Meta::CPAN

 * pool usage improvements (r12954, 12852, r13386, issue #1310)
 * SWIG bindings:  better API coverage overall.
     - new ruby bindings!
     - remove bitrotting swig-java bindings
     - perl and python bindings:  numerous improvements, see their own logs.
     - bindings tests now within svntest framework
 * javahl bindings:   numerous improvements, see its own logs.
 * many improvements to mailer.py and commit-email.pl
 * rewrite/improvements to gen-make build system, including VS.NET support
 * many improvements to the automated python testsuite (issue #2257)
 * book moved to separate repository (http://svn.red-bean.com/svnbook)

src/subversion/CHANGES  view on Meta::CPAN

 * new runtime option 'store-passwords = ' gives finer control (r10794)x
 * fixed: working copies now shareable by multiple users (issue #1509)
 * fixed: diff and other subcommands correctly follow renames (issue #1093)
     - new 'peg' syntax for diff/merge:  'svn diff -r X:Y TARGET@REV'
     - now able to compare working copy with URL: 'svn diff --old WC --new URL'
 * new framework for localized error/info/help messages, initial translations:
     - German, Polish, Swedish, Norwegian Bokmål, Traditional Chinese,
       Japanese, Brazilian Portuguese.
 * speed improvements:
     - faster 'svn up' on complex working copies -- no more repos txns (r8840)
     - faster 'svn status' -- fewer stat() calls (r9182)

src/subversion/CHANGES  view on Meta::CPAN

 * improvements to ignored-file handling
 * Python ConfigParser-style variable expansion for config file (#1165)

 Developer-visible changes:
 * introduced the svn_filesize_t type (#639)
 * realmstring added to the svn_auth framework
 * the "result checksum" moved to the editor.close_file function
 * more checksumming here and there
 * initial work to enable binary properties via ra_dav
 * initial, internal support for compressed streams
 * test framework shifting to exception-based failure recording (#1193)
 * improved options and handling in the C test framework
 * java and python binding work
 * libsvn_auth folded into libsvn_subr
 * bug fixes: 'svnadmin load' parse bug; ra_svn crashes (#1160); 'svn
   log' on a switched wc (#1108); 'svn ci -N' on named files (#1195)

src/subversion/CHANGES  view on Meta::CPAN

 Developer-visible changes:
 * new authentication library libsvn_auth (#724)
 * new bdb table uuids
 * client context object in libsvn_client
 * more work on java and other language bindings
 * test framework now has a quiet option (-q)
 * miscellaneous small code cleanups
 * bug fixes: more valgrind memory bugs, apr xlate i18n mess (#872),
   non-existent URL checkout (#946), props on to-be-deleted files (#1066),
   ra_svn move/copy (#1084), eol translation (#1085), ra_svn
   checksumming (#1099), cat command corrupt output (#1104), cvs2svn

src/subversion/CHANGES  view on Meta::CPAN


 Developer-visible changes:
 * continuing work on python SWIG bindings
 * continuing work on new access-baton system for libsvn_wc
 * upgrade to neon 0.23.4 to fix Windows build issues and seg faults
 * add XFAIL to the C testing framework
 * prevent setting of certain svn: props on incorrect file types
 * cleanup libsvn_subr's path library behavior
 * new 'fast-clean' vs. 'clean' Makefile targets
 * various bugfixes, tweaks, cleanups.

src/subversion/CHANGES  view on Meta::CPAN

 * new config-file parser
 * code reorganization and cleanup
    - huge conversion of svn_stringbuf_t --> char *
    - standardized on commit_info return structure
    - no more 'path styles' in path library
    - rewrite bootstrapping code for python test framework
    - rewrite commandline app's help-system and alias-system
    - feedback table replaced with notfication callback
    - rewrite sorting of hashes
    - svnadmin internal rewrite
    - faster post-update processing

 view all matches for this distribution


Alien-Saxon

 view release on metacpan or  search on metacpan

SaxonHE9-8-0-7J/doc/saxondocs.css  view on Meta::CPAN


*/

/* RESET PAGE STYLING - for consistency across browsers (avoid using their differing defaults) */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,

 view all matches for this distribution


Alien-Selenium

 view release on metacpan or  search on metacpan

inc/My/Module/Build.pm  view on Meta::CPAN

L<Module::Build/create_makefile_pl> for how to do that). You won't get
signal if you use a "traditional" style Makefile.PL (but on the other
hand the rest of I<My::Module::Build> will not work either, so don't
do that).

This easter egg was a feature of an old GNU-make based build framework
that I created in a former life.  So there.

=cut

sub do_create_makefile_pl {

 view all matches for this distribution


Alien-SeqAlignment-hmmer3

 view release on metacpan or  search on metacpan

lib/Alien/SeqAlignment/hmmer3.pm  view on Meta::CPAN

esl_ssdraw - create postscript secondary structure diagrams

=head2 esl_translate

  Alien::SeqAlignment::hmmer3->esl_translate (parameters & options);
esl_translate - translate DNA sequence in six frames into individual

=head2 esl_weight

  Alien::SeqAlignment::hmmer3->esl_weight (parameters & options);
esl_weight - calculate sequence weights in MSA(s)

 view all matches for this distribution


Alien-SmokeQt

 view release on metacpan or  search on metacpan

CMakeLists.txt  view on Meta::CPAN


macro_optional_find_package(Qwt5)
macro_log_feature(Qwt5_Qt4_FOUND "Qwt5 for Qt4" "Qwt5 libraries for Qt4" "http://qwt.sourceforge.net" FALSE "" "Needed to compile Qwt5 bindings")

macro_optional_find_package(Phonon)
macro_log_feature(PHONON_FOUND "Phonon" "Phonon multimedia framework" "http://www.kde.org" FALSE "" "Needed to compile Phonon bindings")

macro_optional_find_package(QScintilla)
macro_log_feature(QSCINTILLA_FOUND "QScintilla2" "QScintilla2 libraries" "http://www.riverbankcomputing.co.uk/software/qscintilla/intro" FALSE "" "Needed to compile QScintilla2 bindings")

macro_optional_add_subdirectory(smoke)

 view all matches for this distribution


Alien-SwaggerUI

 view release on metacpan or  search on metacpan

share/swagger-ui-bundle.js  view on Meta::CPAN

!function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(function(){try{return require("esprima")}catch(e){}}()):"function"==typeof define&&define.amd?define(["esprima"],t):"object"==typeof exports?exports.SwaggerUIBundle=t(f...
/*
object-assign
(c) Sindre Sorhus
@license MIT
*/var r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,i=Object.prototype.propertyIsEnumerable;function a(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function()...

share/swagger-ui-bundle.js  view on Meta::CPAN

 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
function n(e){return e instanceof t||e instanceof Date||e instanceof RegExp}function r(e){if(e instanceof t){var n=t.alloc?t.alloc(e.length):new t(e.length);return e.copy(n),n}if(e instanceof Date)return new Date(e.getTime());if(e instanceof RegExp)r...
/**
 * Checks if an event is supported in the current execution environment.
 *
 * NOTE: This will not work correctly for non-generic events such as `change`,
 * `reset`, `load`, `error`, and `select`.

share/swagger-ui-bundle.js  view on Meta::CPAN

/*!
 * https://github.com/Starcounter-Jack/JSON-Patch
 * (c) 2017 Joachim Wester
 * MIT license
 */
var n=this&&this.__extends||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n]);function r(){this.constructor=e}e.prototype=null===t?Object.create(t):(r.prototype=t.prototype,new r)},r=Object.prototype.hasOwnProperty;function o(e,t){return ...
/** @license React v16.8.6
 * react-is.production.min.js
 *
 * Copyright (c) Facebook, Inc. and its affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */Object.defineProperty(t,"__esModule",{value:!0});var r="function"==typeof Symbol&&Symbol.for,o=r?Symbol.for("react.element"):60103,i=r?Symbol.for("react.portal"):60106,a=r?Symbol.for("react.fragment"):60107,s=r?Symbol.for("react.strict_mode"):6010...
/*!
 * https://github.com/Starcounter-Jack/JSON-Patch
 * (c) 2017 Joachim Wester
 * MIT license
 */

share/swagger-ui-bundle.js  view on Meta::CPAN

 *
 * Copyright(c) 2016 Gregory Jacobs <greg@greg-jacobs.com>
 * MIT License
 *
 * https://github.com/gregjacobs/Autolinker.js
 */o=[],void 0===(i="function"==typeof(r=function(){var e,t,n,r,o,i,a,s=function(e){e=e||{},this.version=s.version,this.urls=this.normalizeUrlsCfg(e.urls),this.email="boolean"!=typeof e.email||e.email,this.twitter="boolean"!=typeof e.twitter||e.twitt...
//# sourceMappingURL=swagger-ui-bundle.js.map

 view all matches for this distribution


Alien-Thrust

 view release on metacpan or  search on metacpan

lib/Alien/Thrust.pm  view on Meta::CPAN

__END__


=head1 NAME

Alien::Thrust - Download and install the Thrust cross-platform GUI framework

=head1 DESCRIPTION

This package will download a zip file containing the L<Thrust cross-platform, cross-language GUI toolkit|https://github.com/breach/thrust> and will then install it into its private distribution share directory.

 view all matches for this distribution


Alien-Tidyp

 view release on metacpan or  search on metacpan

patches/config.guess  view on Meta::CPAN

	else # Add other i860-SVR4 vendors below as they are discovered.
	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
	fi
	exit ;;
    mini*:CTIX:SYS*5:*)
	# "miniframe"
	echo m68010-convergent-sysv
	exit ;;
    mc68k:UNIX:SYSTEM5:3.51m)
	echo m68k-convergent-sysv
	exit ;;

 view all matches for this distribution


Alien-TinyCC

 view release on metacpan or  search on metacpan

src/i386-gen.c  view on Meta::CPAN

    saved_ind = ind;
    ind = func_sub_sp_offset - FUNC_PROLOG_SIZE;
#ifdef TCC_TARGET_PE
    if (v >= 4096) {
        oad(0xb8, v); /* mov stacksize, %eax */
        gen_static_call(TOK___chkstk); /* call __chkstk, (does the stackframe too) */
    } else
#endif
    {
        o(0xe58955);  /* push %ebp, mov %esp, %ebp */
        o(0xec81);  /* sub esp, stacksize */

 view all matches for this distribution


Alien-TinyCCx

 view release on metacpan or  search on metacpan

src/Changelog  view on Meta::CPAN

- prevent gcc from building (non functional) libtcc.a (grischka)
- fix warning related to PE file generation on x86-64 (grischka)
- stop mixing ordinary and implicit rule in Makefile (Iavael)
- fix integer to double conversion on ARM (Thomas Preud'homme)
- fix parameter passing of structure < 4 bytes on ARM (Thomas Preud'homme)
- disable builtin_frame_address test on ARM due to gcc bug (Thomas Preud'homme)
- fix initialization of struct on ARM (Thomas Preud'homme)
- fix parameter passing of (unsigned) long long bitfield (Thomas Preud'homme)
- improve float to integer tests (Thomas Preud'homme)
- fix relocation of Thumb branch to ARM function (Thomas Preud'homme)
- fix char wrong compatibility with [un]signed char (Thomas Preud'homme)

 view all matches for this distribution


Alien-Web-ExtJS-V3

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

share/adapter/prototype/ext-prototype-adapter.js
share/adapter/yui/ext-yui-adapter-debug.js
share/adapter/yui/ext-yui-adapter.js
share/docs/app-1c3b39672c292d36e4a5ff05c1bb7035.js
share/docs/data-218318ee90d3522428760e464306d0ed.js
share/docs/eg-iframe.html
share/docs/extjs/ext-all.js
share/docs/extjs/resources/themes/images/default/boundlist/trigger-arrow.png
share/docs/extjs/resources/themes/images/default/box/corners-blue.gif
share/docs/extjs/resources/themes/images/default/box/corners.gif
share/docs/extjs/resources/themes/images/default/box/l-blue.gif
share/docs/extjs/resources/themes/images/default/box/l.gif
share/docs/extjs/resources/themes/images/default/box/r-blue.gif
share/docs/extjs/resources/themes/images/default/box/r.gif
share/docs/extjs/resources/themes/images/default/box/tb-blue.gif
share/docs/extjs/resources/themes/images/default/box/tb.gif
share/docs/extjs/resources/themes/images/default/btn-group/btn-group-default-framed-corners.gif
share/docs/extjs/resources/themes/images/default/btn-group/btn-group-default-framed-notitle-corners.gif
share/docs/extjs/resources/themes/images/default/btn-group/btn-group-default-framed-notitle-sides.gif
share/docs/extjs/resources/themes/images/default/btn-group/btn-group-default-framed-sides.gif
share/docs/extjs/resources/themes/images/default/btn/btn-default-large-bg.gif
share/docs/extjs/resources/themes/images/default/btn/btn-default-large-corners.gif
share/docs/extjs/resources/themes/images/default/btn/btn-default-large-disabled-bg.gif
share/docs/extjs/resources/themes/images/default/btn/btn-default-large-disabled-corners.gif
share/docs/extjs/resources/themes/images/default/btn/btn-default-large-disabled-sides.gif

MANIFEST  view on Meta::CPAN

share/docs/extjs/resources/themes/images/default/menu/menu-item-active-sides.gif
share/docs/extjs/resources/themes/images/default/menu/menu-parent.gif
share/docs/extjs/resources/themes/images/default/menu/menu.gif
share/docs/extjs/resources/themes/images/default/menu/unchecked.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-bottom-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-bottom-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-bottom-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-bottom-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-bottom-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-left-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-right-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-collapsed-top-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-left-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-left-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-left-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-right-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-right-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-right-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-top-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-top-corners.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-framed-top-sides.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-left-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-right-bg.gif
share/docs/extjs/resources/themes/images/default/panel-header/panel-header-default-top-bg.gif
share/docs/extjs/resources/themes/images/default/panel/panel-default-framed-corners.gif
share/docs/extjs/resources/themes/images/default/panel/panel-default-framed-sides.gif
share/docs/extjs/resources/themes/images/default/progress/progress-default-bg.gif
share/docs/extjs/resources/themes/images/default/shared/blue-loading.gif
share/docs/extjs/resources/themes/images/default/shared/calendar.gif
share/docs/extjs/resources/themes/images/default/shared/glass-bg.gif
share/docs/extjs/resources/themes/images/default/shared/hd-sprite.gif

 view all matches for this distribution


Alien-Web-HalBrowser

 view release on metacpan or  search on metacpan

share/js/hal/views/documentation.js  view on Meta::CPAN

HAL.Views.Documenation = Backbone.View.extend({
  className: 'documentation',

  render: function(url) {
    this.$el.html('<iframe src=' + url + '></iframe>');
  }
});

 view all matches for this distribution


Alien-XGBoost

 view release on metacpan or  search on metacpan

xgboost/R-package/DESCRIPTION  view on Meta::CPAN

Author: Tianqi Chen <tianqi.tchen@gmail.com>, Tong He <hetong007@gmail.com>,
    Michael Benesty <michael@benesty.fr>, Vadim Khotilovich <khotilovich@gmail.com>,
    Yuan Tang <terrytangyuan@gmail.com>
Maintainer: Tong He <hetong007@gmail.com>
Description: Extreme Gradient Boosting, which is an efficient implementation
    of the gradient boosting framework from Chen & Guestrin (2016) <doi:10.1145/2939672.2939785>.
    This package is its R interface. The package includes efficient linear 
    model solver and tree learning algorithms. The package can automatically 
    do parallel computation on a single machine which could be more than 10 
    times faster than existing gradient boosting packages. It supports
    various objective functions, including regression, classification and ranking.

 view all matches for this distribution


Alien-YARA

 view release on metacpan or  search on metacpan

lib/Alien/YARA.pm  view on Meta::CPAN


=over 4

=item * L<YaraFFI> - The primary FFI interface built on top of this module.

=item * L<Alien::Base> - The base framework powering this installer wrapper.

=item * L<Alien::Build> - The underlying tools used to configure, download, and build YARA.

=item * L<https://github.com/VirusTotal/yara> - The official YARA open-source repository.

 view all matches for this distribution


Alien-cares

 view release on metacpan or  search on metacpan

libcares/config.guess  view on Meta::CPAN

	else # Add other i860-SVR4 vendors below as they are discovered.
	  echo i860-unknown-sysv${UNAME_RELEASE}  # Unknown i860-SVR4
	fi
	exit ;;
    mini*:CTIX:SYS*5:*)
	# "miniframe"
	echo m68010-convergent-sysv
	exit ;;
    mc68k:UNIX:SYSTEM5:3.51m)
	echo m68k-convergent-sysv
	exit ;;

 view all matches for this distribution


Alien-catch

 view release on metacpan or  search on metacpan

src/catch.hpp  view on Meta::CPAN

    #define CATCH_TRAP() __asm__("int $3\n" : : ) /* NOLINT */

#elif defined(CATCH_PLATFORM_LINUX)
    // If we can use inline assembler, do it because this allows us to break
    // directly at the location of the failing check instead of breaking inside
    // raise() called from it, i.e. one stack frame below.
    #if defined(__GNUC__) && (defined(__i386) || defined(__x86_64))
        #define CATCH_TRAP() asm volatile ("int $3") /* NOLINT */
    #else // Fall back to the generic way.
        #include <signal.h>

src/catch.hpp  view on Meta::CPAN

                << "For more detailed usage please see the project docs\n" << std::endl;
    }
    void Session::libIdentify() {
        Catch::cout()
                << std::left << std::setw(16) << "description: " << "A Catch test executable\n"
                << std::left << std::setw(16) << "category: " << "testframework\n"
                << std::left << std::setw(16) << "framework: " << "Catch Test\n"
                << std::left << std::setw(16) << "version: " << libraryVersion() << std::endl;
    }

    int Session::applyCommandLine( int argc, char const * const * argv ) {
        if( m_startupExceptions )

 view all matches for this distribution


Alien-ckdl

 view release on metacpan or  search on metacpan

lib/Alien/ckdl.pm  view on Meta::CPAN


=head1 SEE ALSO

L<Text::KDL::XS>, the Perl XS binding that consumes this Alien.

L<Alien::Base> and L<Alien::Build>, the framework this distribution
plugs into.

L<https://github.com/tjol/ckdl>, the upstream C library.

L<https://github.com/kdl-org/kdl>, the KDL specification.

 view all matches for this distribution


Alien-ggml

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

    * CMake 3.14+
    * Make or Ninja

Optional for optimizations:

    * macOS: Metal framework, Accelerate (included with Xcode)
    * Linux: OpenBLAS

INSTALLATION

To install this module, run the following commands:

 view all matches for this distribution


Alien-libpanda

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

    test             => { SRC => 't', BIN_DEPS => 'Test::Catch' },
    LIBS             => ['-lexecinfo', ''],
);

if ($ENV{SANITIZE}) {
    ($params{CCFLAGS}||='') .= ' -fsanitize=undefined -fsanitize=address -fno-omit-frame-pointer';
    $params{LIBS}[1] .= ' -lubsan -lasan'; #sanitizer
    $params{LIBS}[0] .= ' -lubsan -lasan'; #sanitizer
}

write_makefile(%params);

 view all matches for this distribution


Alien-uv

 view release on metacpan or  search on metacpan

libuv/README.md  view on Meta::CPAN

## Documentation

### Official documentation

Located in the docs/ subdirectory. It uses the [Sphinx](http://sphinx-doc.org/)
framework, which makes it possible to build the documentation in multiple
formats.

Show different supported building options:

```bash

 view all matches for this distribution


Alien-wxWidgets

 view release on metacpan or  search on metacpan

inc/My/Build/MacOSX_wx_config.pm  view on Meta::CPAN

    my $self = shift;
    return $self->{awx_data} if $self->{awx_data};
    my %data = ( linkflags => '', %{$self->SUPER::awx_wx_config_data} );

    # MakeMaker does not like some options
    $data{libs} =~ s{-framework\s+\w+}{}g;
    $data{libs} =~ s{-isysroot\s+\S+}{}g;
    $data{libs} =~ s{-L/usr/local/lib\s}{}g;

    $data{libs} =~ s{\s(-arch\s+\w+)}
                    {$data{linkflags} .= " $1 ";

 view all matches for this distribution


AlignDB-Codon

 view release on metacpan or  search on metacpan

lib/AlignDB/Codon.pm  view on Meta::CPAN

}

sub translate {
    my $self  = shift;
    my $seq   = shift;
    my $frame = shift;

    # check $frame
    if ( defined $frame ) {
        if ( List::MoreUtils::PP::none { $_ == $frame } ( 0 .. 2 ) ) {
            confess Dump( { frame => $frame } ), "Wrong frame\n";
        }
    }
    else {
        $frame = 0;
    }

    if ( $frame != 0 ) {
        $seq = substr( $seq, $frame );    # delete first $frame bases from $seq
    }
    my $offset = length($seq) - ( length($seq) % 3 );
    substr( $seq, $offset, length($seq), '' );    # now $seq is 3n bp

    my $peptide    = "";

 view all matches for this distribution


Alt-Acme-Math-XS-CPP

 view release on metacpan or  search on metacpan

inc/Acme/Math/XS/Inline.pm  view on Meta::CPAN

#
# GENERATED BY: Inline::Module 0.30
#
# This module is for author-side development only. When this module is shipped
# to CPAN, it will be automagically replaced with content that does not
# require any Inline framework modules (or any other non-core modules).
#
# To regenerate this stub module, run this command:
#
#   perl -MInline::Module=makestub,Acme::Math::XS::Inline

 view all matches for this distribution


Alt-Acme-Math-XS-ModuleBuild

 view release on metacpan or  search on metacpan

inc/Acme/Math/XS/Inline.pm  view on Meta::CPAN

#
# GENERATED BY: Inline::Module 0.30
#
# This module is for author-side development only. When this module is shipped
# to CPAN, it will be automagically replaced with content that does not
# require any Inline framework modules (or any other non-core modules).
#
# To regenerate this stub module, run this command:
#
#   perl -MInline::Module=makestub,Acme::Math::XS::Inline

 view all matches for this distribution


Alt

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN


    When a user installs your module like so:

        PERL_ALT_INSTALL=OVERWRITE cpanm Alt::Foo::Bar::better

    they will get your version of the Foo::Bar framework (Foo::Bar,
    Foo::Bar::Baz).

    Obviously, this completely overlays the old Foo::Bar install, but that's
    the whole idea. The user isn't surprised by this because they just asked
    for an Alternate implementation. If they don't like it, they can simply

README  view on Meta::CPAN

            my $alt = $ENV{PERL_ALT_INSTALL} || '';
            $WriteMakefileArgs{DESTDIR} =
              $alt ? $alt eq 'OVERWRITE' ? '' : $alt : 'no-install-alt';

        Similar techniques should be available for other module release
        frameworks.

    Module for CPAN Indexing
        You will need to provide a module like "Alt::IO::All::MSTROUT" so
        that CPAN will index something that can cause your distribution to
        get installed by people:

 view all matches for this distribution


( run in 2.072 seconds using v1.01-cache-2.11-cpan-e1769b4cff6 )