Socket
Socket
Sign inDemoInstall

fiftyone.pipeline.engines

Package Overview
Dependencies
Maintainers
3
Versions
124
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fiftyone.pipeline.engines - npm Package Compare versions

Comparing version 4.4.92 to 4.4.93

24

examples/caching.js

@@ -24,14 +24,14 @@ /* *********************************************************************

/**
@example caching.js
This example demonstrates how to add a cache to an aspect engine.
The fiftyone.pipeline.engines module comes with an implementation
of a Least Recently Used (lru) cache that can be used in
place of the custom cache created in this example.
To construct the lru cache pass in a size (in entries)
parameter to its constructor.
let lruCache = new engine.lruCache(100);
* @example caching.js
*
* This example demonstrates how to add a cache to an aspect engine.
* The fiftyone.pipeline.engines module comes with an implementation
* of a Least Recently Used (lru) cache that can be used in
* place of the custom cache created in this example.
*
* To construct the lru cache pass in a size (in entries)
* parameter to its constructor.
*
* let lruCache = new engine.lruCache(100);
*
*/

@@ -38,0 +38,0 @@

@@ -24,10 +24,10 @@ /* *********************************************************************

/**
@example onPremiseFlowElement.js
This example demonstrates the creation of a custom flow element which takes a
birth date as evidence and uses it to check a lookup table for a starsign.
This lookup table is stored in a JSON file which is registered using the
datafile update service. In this case the file has a simple watcher which
checks if the file has changed.
* @example onPremiseFlowElement.js
*
* This example demonstrates the creation of a custom flow element which takes a
* birth date as evidence and uses it to check a lookup table for a starsign.
* This lookup table is stored in a JSON file which is registered using the
* datafile update service. In this case the file has a simple watcher which
* checks if the file has changed.
*
*/

@@ -34,0 +34,0 @@ const path = require('path');

@@ -74,2 +74,3 @@ /* *********************************************************************

* @param {FlowElement} flowElement The flow element to check
* @returns {boolean} Is CloudEngine
*/

@@ -76,0 +77,0 @@ _isCloudEngine (flowElement) {

{
"name": "fiftyone.pipeline.engines",
"version": "4.4.92",
"version": "4.4.93",
"description": "Shared base functionality for implementing engines for the 51Degrees Pipeline API",

@@ -5,0 +5,0 @@ "keywords": [

@@ -19,4 +19,7 @@ {

"moduleResolution": "Node",
"noImplicitAny": true
"noImplicitAny": true,
"paths": {
"fiftyone.pipeline.core": ["../fiftyone.pipeline.core"]
},
}
}

@@ -10,1 +10,2 @@ export const AspectData: typeof import("./aspectData");

export const Tracker: typeof import("./tracker");
export const DataFileUpdateService: typeof import("./dataFileUpdateService");
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc