代码搜索:Lua

找到约 9,588 项符合「Lua」的源代码

代码结果 9,588
www.eeworm.com/read/313686/13582844

lua listop.lua

-- See nmaps COPYING for licence module(..., package.seeall) --[[ -- Functional programming style 'list' operations bool is_empty(list) bool is_list(value) value apply(function, list) list map(
www.eeworm.com/read/313686/13582845

lua packet.lua

-- license = "See nmaps COPYING for license" module("packet" ,package.seeall) -- Raw package parsing functions. Used with raw sockets -- in nse. -- Author: Marek Majkowski --
www.eeworm.com/read/313686/13582846

lua ipops.lua

-- See nmaps COPYING for licence module(...,package.seeall) -- check to see if ip is part of RFC 1918 address space isPrivate = function(ip) local a, b a, b = get_parts_as_number(ip) if a == 10
www.eeworm.com/read/313686/13582847

lua match.lua

-- See nmaps COPYING for licence module(..., package.seeall) require "pcre" --various functions for use with nse's nsock:receive_buf - function -- e.g. -- sock:receivebuf(regex("myregexpattern"))
www.eeworm.com/read/137626/5822737

lua config.lua

-- Configuration for hooks.lua file, put in ~/.elinks/ as config.lua. -- $Id: config.lua,v 1.4 2003/10/02 12:16:04 kuser Exp $ -- ** IMPORTANT ** -- For security reasons, systems functions are not en
www.eeworm.com/read/137626/5822738

lua remote.lua

-- ELinks-side part of elinks-remote -- $Id: remote.lua,v 1.2 2003/10/02 12:16:04 kuser Exp $ -- See script elinks-remote for explanation what's this about. -----------------------------------------
www.eeworm.com/read/137626/5822740

in hooks.lua.in

-- Example hooks.lua file, put in ~/.elinks/ as hooks.lua. -- $Id: hooks.lua.in,v 1.27 2004/05/01 05:29:36 miciah Exp $ -- TODO: Bookmarks stuff should be completely moved to bm.lua. --pasky -- Take
www.eeworm.com/read/137626/5822741

lua bm.lua

-- Bookmark system for Links-Lua. -- $Id: bm.lua,v 1.3 2003/11/24 13:30:01 zas Exp $ ----------------------------------------------------------------------- -- User options -------------------------
www.eeworm.com/read/137626/5823066

h lua.h

/* $Id: lua.h,v 1.1.2.1 2005/01/29 00:53:54 jonas Exp $ */ #ifndef EL__SCRIPTING_LUA_LUA_H #define EL__SCRIPTING_LUA_LUA_H #include "modules/module.h" extern struct module lua_scripting_module; #e
www.eeworm.com/read/124989/6035096

lua format.lua

-- test format function s = format("%s %d\n", "Hello Lua", 42) print(s)