소스 검색

add copyright to benchmark

Saul Shanabrook 4 년 전
부모
커밋
bf68cf670c

+ 4 - 0
benchmarks/src/compare.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import * as quantile from '@stdlib/stats/base/dists/t/quantile';
 import * as meanpw from '@stdlib/stats/base/meanpw';
 import * as variancepn from '@stdlib/stats/base/variancepn';

+ 4 - 0
benchmarks/src/fixedDataTable.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import makeNotebook from './makeNotebook';
 import NotebookType from './notebookType';
 

+ 2 - 0
benchmarks/src/index.ts

@@ -1,4 +1,6 @@
 /**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
  * Runs a number of benchmarks and saves the results to the
  */
 import * as child_process from 'child_process';

+ 4 - 0
benchmarks/src/largePlotly.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import makeNotebook from './makeNotebook';
 import waitForPlotly from './waitForPlotly';
 import NotebookType from './notebookType';

+ 4 - 0
benchmarks/src/longOutput.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import makeNotebook from './makeNotebook';
 import NotebookType from './notebookType';
 

+ 4 - 0
benchmarks/src/makeNotebook.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 export default function makeNotebook(cells: Array<object>): object {
   return {
     cells,

+ 4 - 0
benchmarks/src/manyOutputs.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import makeNotebook from './makeNotebook';
 import NotebookType from './notebookType';
 

+ 4 - 0
benchmarks/src/manyPlotly.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import waitForPlotly from './waitForPlotly';
 import makeNotebook from './makeNotebook';
 import NotebookType from './notebookType';

+ 4 - 0
benchmarks/src/notebookType.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import * as playwright from 'playwright';
 
 type NotebookType = {

+ 4 - 0
benchmarks/src/waitForPlotly.ts

@@ -1,3 +1,7 @@
+/**
+ * Copyright (c) Jupyter Development Team.
+ * Distributed under the terms of the Modified BSD License.
+ */
 import * as playwright from 'playwright';
 
 /**