mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore: update copyright headers (#10243)
This commit is contained in:
parent
2079da0f1c
commit
8424647d22
24 changed files with 25 additions and 4 deletions
1
.github/mtime_cache/action.js
vendored
1
.github/mtime_cache/action.js
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
// This file contains the implementation of a Github Action. Github uses
|
// This file contains the implementation of a Github Action. Github uses
|
||||||
// Node.js v12.x to run actions, so this is Node code and not Deno code.
|
// Node.js v12.x to run actions, so this is Node code and not Deno code.
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
[package]
|
[package]
|
||||||
name = "bench_util"
|
name = "bench_util"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use bencher::Bencher;
|
use bencher::Bencher;
|
||||||
use deno_core::v8;
|
use deno_core::v8;
|
||||||
use deno_core::JsRuntime;
|
use deno_core::JsRuntime;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
mod js_runtime;
|
mod js_runtime;
|
||||||
mod profiling;
|
mod profiling;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use bencher::{DynBenchFn, StaticBenchFn, TestDescAndFn, TestOpts};
|
use bencher::{DynBenchFn, StaticBenchFn, TestDescAndFn, TestOpts};
|
||||||
|
|
||||||
pub fn is_profiling() -> bool {
|
pub fn is_profiling() -> bool {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
// Run with: deno run -A ./cli/bench/deno_common.js
|
// Run with: deno run -A ./cli/bench/deno_common.js
|
||||||
function benchSync(name, n, innerLoop) {
|
function benchSync(name, n, innerLoop) {
|
||||||
const t1 = Date.now();
|
const t1 = Date.now();
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
/// Raise soft file descriptor limit to hard file descriptor limit.
|
/// Raise soft file descriptor limit to hard file descriptor limit.
|
||||||
/// This is the difference between `ulimit -n` and `ulimit -n -H`.
|
/// This is the difference between `ulimit -n` and `ulimit -n -H`.
|
||||||
pub fn raise_fd_limit() {
|
pub fn raise_fd_limit() {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use deno_core::error::AnyError;
|
use deno_core::error::AnyError;
|
||||||
use deno_core::op_async;
|
use deno_core::op_async;
|
||||||
use deno_core::op_sync;
|
use deno_core::op_sync;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_file"
|
name = "deno_file"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_url"
|
name = "deno_url"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
"use strict";
|
"use strict";
|
||||||
((window) => {
|
((window) => {
|
||||||
const { EventTarget } = window;
|
const { EventTarget } = window;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_webgpu"
|
name = "deno_webgpu"
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "deno_webidl"
|
name = "deno_webidl"
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
console.log("Hello world!");
|
console.log("Hello world!");
|
||||||
console.log(Deno);
|
console.log(Deno);
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use deno_core::error::custom_error;
|
use deno_core::error::custom_error;
|
||||||
use deno_core::error::AnyError;
|
use deno_core::error::AnyError;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
[package]
|
[package]
|
||||||
name = "serde_v8"
|
name = "serde_v8"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use bencher::{benchmark_group, benchmark_main, Bencher};
|
use bencher::{benchmark_group, benchmark_main, Bencher};
|
||||||
|
|
||||||
use rusty_v8 as v8;
|
use rusty_v8 as v8;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use bencher::{benchmark_group, benchmark_main, Bencher};
|
use bencher::{benchmark_group, benchmark_main, Bencher};
|
||||||
|
|
||||||
use rusty_v8 as v8;
|
use rusty_v8 as v8;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use crate::error::{Error, Result};
|
use crate::error::{Error, Result};
|
||||||
use serde::ser::{Impossible, Serialize, Serializer};
|
use serde::ser::{Impossible, Serialize, Serializer};
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
mod field;
|
mod field;
|
||||||
mod value;
|
mod value;
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
use rusty_v8 as v8;
|
use rusty_v8 as v8;
|
||||||
use std::any::TypeId;
|
use std::any::TypeId;
|
||||||
use std::mem::transmute_copy;
|
use std::mem::transmute_copy;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
import { delay, join, readLines, ROOT_PATH } from "../util.js";
|
import { delay, join, readLines, ROOT_PATH } from "../util.js";
|
||||||
import { assert, ManifestTestOptions, release, runPy } from "./utils.ts";
|
import { assert, ManifestTestOptions, release, runPy } from "./utils.ts";
|
||||||
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.3-alpha2/deno-dom-wasm.ts";
|
import { DOMParser } from "https://deno.land/x/deno_dom@v0.1.3-alpha2/deno-dom-wasm.ts";
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
window.add_result_callback(({ message, name, stack, status }) => {
|
window.add_result_callback(({ message, name, stack, status }) => {
|
||||||
Deno.writeAllSync(
|
Deno.writeAllSync(
|
||||||
Deno.stderr,
|
Deno.stderr,
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
||||||
/// FLAGS
|
/// FLAGS
|
||||||
|
|
||||||
import { parse } from "https://deno.land/std@0.84.0/flags/mod.ts";
|
import { parse } from "https://deno.land/std@0.84.0/flags/mod.ts";
|
||||||
|
|
Loading…
Reference in a new issue