Found 32 packages
Common.SmartCache provides intelligent loading for data providers such as external apis or databases. Age conscious data management is applied to allow automatic cache or data preload. AI assisted algorithms can be used to ensure data preloading, based on application use.
EZCache allows you to cache various types of items in caches that are configured for each cached item type, using a simple fluent API. Each item type cache can be configured to be singletons, or multi-instance caches. Items in the cache can be preloaded, set to expire, auto-reload, marked dirty, cleared, and optionally set to use strong or weak referencing allowing less used items to be garbage collected and reloaded when needed.
Preloadjs binding library for Bridge.NET projects.
library that allows embeding gecko in C# applications. Example Usage: // In MonoDevelop Project Options -> Run -> Configuration -> Default set the following envrionment variables. // set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64 // set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux64/libgeckofix.so using System; using System.Windows.Forms; using Gecko; [STAThread] static void Main(string[] args) { Xpcom.Initialize("Firefox"); var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill}; Form f = new Form(); f.Controls.Add(geckoWebBrowser); geckoWebBrowser.Navigate("www.google.com"); Application.Run(f); } You will also have to install gtk-sharp3 deb package if not already installed. apt-get install gtk-sharp3
library that allows embeding gecko in C# applications. Example Usage: // set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox // set env var LD_PRELOAD to $(ProjectDir)/Firefox/libgeckofix.so // add using Gecko [STAThread] static void Main(string[] args) { Xpcom.Initialize("Firefox"); var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill}; Form f = new Form(); f.Controls.Add(geckoWebBrowser); geckoWebBrowser.Navigate("www.google.com"); Application.Run(f); }
FunScript binding for preloadjs (BETA version).
A library for simplifying preload patches
A Simple preloader for winforms (With progress bar)
This project provides .NET binding to LLVM dynamic library for Win32 and x64. To get the native library itself, you can reference LLVM.NativeLibrary from NuGet, and call LLVMDLL.Load. This will preload an LLVM DLL that matches your current processor architecture.
library that allows embeding gecko in C# applications. Depends on Gtk3 ubuntu packages: libgtk-3-0, libgtk3.0-cil Example Usage: // set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux32 // set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux32/libgeckofix.so // add using Gecko [STAThread] static void Main(string[] args) { Xpcom.Initialize("Firefox"); var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill}; Form f = new Form(); f.Controls.Add(geckoWebBrowser); geckoWebBrowser.Navigate("www.google.com"); Application.Run(f); }
library that allows embeding gecko in C# applications. Depends on Gtk3 ubuntu packages: libgtk-3-0, libgtk3.0-cil Example Usage: // set env var LD_LIBRARY_PATH to $(ProjectDir)/Firefox-Linux64 // set env var LD_PRELOAD to $(ProjectDir)/Firefox-Linux64/libgeckofix.so // add using Gecko [STAThread] static void Main(string[] args) { Xpcom.Initialize("Firefox"); var geckoWebBrowser = new GeckoWebBrowser {Dock = DockStyle.Fill}; Form f = new Form(); f.Controls.Add(geckoWebBrowser); geckoWebBrowser.Navigate("www.google.com"); Application.Run(f); }
Core classes and utilities for BepInEx Preloader
A .NET library for creating customizable splash screens in WPF applications, supporting application initialization, update management, and preloading tasks with modern UI design
Dynamo geometry library assemblies. It contains the following files: 1) LibG.AsmPreloader.Managed.dll 2) LibG.AsmPreloader.Unmanaged.dll 3) LibG.dll 4) LibG.Managed.dll 5) LibG.ProtoInterface.dll 6) LibGCore.dll 7) libiconv.dll 8) libintl.dll 9) ProtoGeometry.dll 10) ProtoGeometry.xml 11) LibG.Interface.dll
Lazy Load is a jQuery plugin written in JavaScript. It delays loading of images in long web pages. Images outside of viewport (visible part of web page) wont be loaded before user scrolls to them. This is opposite of image preloading. Using Lazy Load on long web pages containing many large images makes the page load faster. Browser will be in ready state after loading visible images. In some cases it can also help to reduce server load. Lazy Load is inspired by YUI ImageLoader Utility by Matt Mlinac.