This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date,Signal,Signal2 | |
8/20/2020 16:00:00,0,0 | |
8/21/2020 16:00:00,1,1 | |
8/24/2020 16:00:00,1,1 | |
8/25/2020 16:00:00,1,1 | |
8/26/2020 16:00:00,1,1 | |
8/27/2020 16:00:00,1,1 | |
8/28/2020 16:00:00,1,1 | |
8/31/2020 16:00:00,1,1 | |
9/1/2020 16:00:00,1,1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
/** | |
* Base class for managed objects. It expects it's descendants to have a pool | |
* array. Initialization and de-initialization logic should be moved to the | |
* initInternal and releaseInternal. | |
* Managed objects are marked as reusable by a call to the release method. | |
*/ | |
var Managed = function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict';function a(c, f) { | |
var h = Array.prototype.slice.call(arguments, 1); | |
return function() { | |
var d = Array.prototype.slice.call(arguments); | |
d.unshift.apply(d, h); | |
return c.apply(this, d) | |
} | |
} | |
;function b(c, f) { | |
return f[c - 1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2008 Google Inc. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software |