Piscina & tinypool hang, workerpool hangs with child_process and returns but prints errors with threads.
Available scripts:
- piscina
- tinypool
- workerpool-threads
- workerpool-childprocess
Each script should print '7', and log when the pool is destroyed.
Piscina & tinypool hang, workerpool hangs with child_process and returns but prints errors with threads.
Available scripts:
Each script should print '7', and log when the pool is destroyed.
| import * as h from "hyperscript"; | |
| import morphdom from "morphdom"; | |
| import { nanoid } from "nanoid"; | |
| abstract class Coordinator< | |
| Attrs extends Record<string, any> | null, | |
| State extends Record<string, any> | |
| > extends HTMLElement { | |
| static readonly forwardedAttrs: Map<string, unknown> = new Map(); | |
| static attrsAttr = "data-attrs"; |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| var beautify = require('js-beautify').js_beautify; | |
| var pretty = require("js-object-pretty-print").pretty; | |
| function show(el, val) { | |
| document.getElementById(el).innerHTML = pretty(val, 4, "HTML"); | |
| } | |
| // Declare our initial value | |
| var original = { | |
| a: 1, |
| diff --git a/Web.config b/Web.config | |
| new file mode 100644 | |
| index 0000000..053354f | |
| --- /dev/null | |
| +++ b/Web.config | |
| @@ -0,0 +1,358 @@ | |
| +<configuration> | |
| + <configSections> | |
| + <sectionGroup name="elmah"> | |
| + <!-- NOTE! If you are using ASP.NET 1.x then remove the |
| # coding: utf-8 | |
| require 'rubygems' | |
| require 'hpricot' | |
| require 'nokogiri' | |
| require 'fileutils' | |
| require 'safe_yaml' | |
| require 'time' | |
| require 'uri' | |
| require 'open-uri' |
I hereby claim:
To claim this, I am signing this object:
| def attr_update(obj, child=None, _call=True, **kwargs): | |
| '''Updates attributes on nested namedtuples. | |
| Accepts a namedtuple object, a string denoting the nested namedtuple to update, | |
| and keyword parameters for the new values to assign to its attributes. | |
| You may set _call=False if you wish to assign a callable to a target attribute. | |
| Example: to replace obj.x.y.z, do attr_update(obj, "x.y", z=new_value). | |
| Example: attr_update(obj, "x.y.z", prop1=lambda prop1: prop1*2, prop2='new prop2') | |
| Example: attr_update(obj, "x.y", lambda z: z._replace(prop1=prop1*2, prop2='new prop2')) |