repo_id stringlengths 21 96 | file_path stringlengths 31 155 | content stringlengths 1 92.9M | __index_level_0__ int64 0 0 |
|---|---|---|---|
rapidsai_public_repos/node/modules/cugraph/test | rapidsai_public_repos/node/modules/cugraph/test/community/spectral-clustering-tests.ts | // Copyright (c) 2022, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/package.json | {
"name": "@rapidsai/glfw",
"version": "22.12.2",
"description": "Platform-native (and headless) GPU-accelerated OpenGL windows",
"license": "Apache-2.0",
"main": "index.js",
"types": "build/js",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
"Paul Taylor <paul.e.taylor@me.com>"
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/index.js | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/jest.config.js | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/CMakeLists.txt | #=============================================================================
# Copyright (c) 2020-2021, NVIDIA CORPORATION.
#
# 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://ww... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/README.md | ### node-glfw (`npm install @rapidsai/glfw`)
A node native addon that provides bindings to the platform window manager via GLFW (https://www.glfw.org/).
GLFW provides cross-platform multi-display support for creating native windows that host an
OpenGL or Vulkan rendering context. These bindings provide a st... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/tsconfig.json | {
"include": ["src"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@rapidsai/glfw": ["src/index"],
"@rapidsai/glfw/*": ["src/*"]
},
"target": "ESNEXT",
"module": "commonjs",
"outDir": "./build/js",
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/LICENSE | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/glfw/typedoc.js | module.exports = {
entryPoints: ['src/index.ts'],
out: 'doc',
name: '@rapidsai/glfw',
tsconfig: 'tsconfig.json',
excludePrivate: true,
excludeProtected: true,
excludeExternals: true,
};
| 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/.vscode/launch.json | {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"compounds": [
{
"name": "Debug Tests (TS and C++)",
"con... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/.vscode/tasks.json | {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Rebuild node_glfw TS and C++ (slow)",
"group": { "kind": "build", "isDefault": true, },
"command": "if [[ \"${input:CMAKE_BUILD_TYPE}\" == \"Release\" ]]; then yarn rebuild; else yarn rebuild:debug; f... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/index.ts | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/monitor.ts | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/callbacks.cpp | // Copyright (c) 2020-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/window.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/vulkan.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/glfw.hpp | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/glfw.ts | // Copyright (c) 2020-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/monitor.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/joystick.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/addon.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/addon.cpp | // Copyright (c) 2020-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/errors.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/cursor.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/events.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/src/macros.hpp | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/test/tsconfig.json | {
"extends": "../tsconfig.json",
"include": [
"../src/**/*.ts",
"../test/**/*.ts"
],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"importHelpers": false,
"noEmitHelpers": false,
"noEmitOnError": false,
... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/test/cuda-gl-interop-tests.js | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/glfw | rapidsai_public_repos/node/modules/glfw/test/glfw-tests.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/package.json | {
"name": "@rapidsai/jsdom",
"version": "22.12.2",
"description": "JSDOM extensions for running browser-ish code in platform-native (and headless) GPU-accelerated GLFW windows",
"license": "Apache-2.0",
"main": "index.js",
"types": "build/js",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/index.js | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/jest.config.js | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/tsconfig.json | {
"include": ["src"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@rapidsai/jsdom": ["src/index"],
"@rapidsai/jsdom/*": ["src/*"]
},
"target": "ESNEXT",
"module": "commonjs",
"outDir": "./build/js",
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/LICENSE | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/jsdom/typedoc.js | module.exports = {
entryPoints: ['src/index.ts'],
out: 'doc',
name: '@rapidsai/jsdom',
tsconfig: 'tsconfig.json',
excludePrivate: true,
excludeProtected: true,
excludeExternals: true,
};
| 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/.vscode/launch.json | {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug Tests",
"type": "nod... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/.vscode/tasks.json | {
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"group": "build",
"label": "Recompile @rapidsai/jsdom TS (fast)",
"script": "tsc:build",
"detail": "yarn tsc:build",
"problemMatcher": ["$tsc"],
},
],
}
| 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/src/index.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/src/resourceloader.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/streams.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/image.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/object-url.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/worker.ts | // Copyright (c) 2022, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/raf.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/fetch.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/jsdom.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/glfw.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src | rapidsai_public_repos/node/modules/jsdom/src/polyfills/canvas.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/mjolnir.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/transform.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/import.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/require.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/resolve.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/reactmapgl.ts | // Copyright (c) 2022, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/modules/vm.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/monitor.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/wheel.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/mouse.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/event.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/window.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/dnd.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/src/polyfills | rapidsai_public_repos/node/modules/jsdom/src/polyfills/events/keyboard.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/utils.ts | // Copyright (c) 2021-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/window-tests.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/canvas-tests.ts | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/require-tests-transpiled.ts | // Copyright (c) 2023, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/tsconfig.json | {
"extends": "../tsconfig.json",
"include": [
"../src/**/*.ts",
"../test/**/*.ts"
],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"importHelpers": false,
"noEmitHelpers": false,
"noEmitOnError": false,
... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/test-import.js | // Copyright (c) 2022-2023, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom | rapidsai_public_repos/node/modules/jsdom/test/require-tests.ts | // Copyright (c) 2021-2022, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/jsdom/test | rapidsai_public_repos/node/modules/jsdom/test/files/test-esm-module.js | Object.defineProperty(Object, 'aGlobalField', {value: 10});
export default {aGlobalField: Object.aGlobalField};
| 0 |
rapidsai_public_repos/node/modules/jsdom/test | rapidsai_public_repos/node/modules/jsdom/test/files/test-esm-import.js | import testESMModule from './test-esm-module';
export default {
importedModuleSharesGlobalsWithThisModule: Object.aGlobalField === testESMModule.aGlobalField,
};
| 0 |
rapidsai_public_repos/node/modules/jsdom/test | rapidsai_public_repos/node/modules/jsdom/test/files/test-cjs-import.js | const testCJSModule = require('./test-cjs-module');
module.exports = {
importedModuleSharesGlobalsWithThisModule: Object.aGlobalField === testCJSModule.aGlobalField,
};
| 0 |
rapidsai_public_repos/node/modules/jsdom/test | rapidsai_public_repos/node/modules/jsdom/test/files/test-cjs-module.js | Object.defineProperty(Object, 'aGlobalField', {value: 10});
exports.foo = 'foo';
exports.aGlobalField = Object.aGlobalField;
exports.setFooToBar = () => { exports.foo = 'bar'; };
| 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/package.json | {
"name": "@rapidsai/rmm",
"version": "22.12.2",
"description": "RMM - NVIDIA RAPIDS Memory Manager",
"main": "index.js",
"types": "build/js",
"license": "Apache-2.0",
"author": "NVIDIA, Inc. (https://nvidia.com/)",
"maintainers": [
"Paul Taylor <paul.e.taylor@me.com>"
],
"homepage": "https://gi... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/index.js | // Copyright (c) 2020, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/jest.config.js | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/CMakeLists.txt | #=============================================================================
# Copyright (c) 2020-2022, NVIDIA CORPORATION.
#
# 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://ww... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/README.md | # <div align="left"><img src="https://rapids.ai/assets/images/rapids_logo.png" width="90px"/> node-rapids RMM - RAPIDS Memory Manager</div>
### Installation
`npm install @rapidsai/rmm`
### About
The js bindings for [RMM](https://github.com/rapidsai/rmm).
For detailed node-RMM API, follow our [API Documentati... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/tsconfig.json | {
"include": ["src"],
"exclude": ["node_modules"],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@rapidsai/rmm": ["src/index"],
"@rapidsai/rmm/*": ["src/*"]
},
"target": "ESNEXT",
"module": "commonjs",
"outDir": "./build/js",
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/LICENSE | Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
... | 0 |
rapidsai_public_repos/node/modules | rapidsai_public_repos/node/modules/rmm/typedoc.js | module.exports = {
entryPoints: ['src/index.ts'],
out: 'doc',
name: '@rapidsai/rmm',
tsconfig: 'tsconfig.json',
excludePrivate: true,
excludeProtected: true,
excludeExternals: true,
};
| 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/.vscode/launch.json | {
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"compounds": [
{
"name": "Debug Tests (TS and C++)",
"con... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/.vscode/tasks.json | {
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Rebuild node_rmm TS and C++ (slow)",
"group": { "kind": "build", "isDefault": true, },
"command": "if [[ \"${input:CMAKE_BUILD_TYPE}\" == \"Release\" ]]; then yarn rebuild; else yarn rebuild:debug; fi... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/node_rmm.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/index.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/memory_resource.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/device_buffer.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/addon.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/memory_resource.cpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/src/addon.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm/src | rapidsai_public_repos/node/modules/rmm/src/node_rmm/device_buffer.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm/src | rapidsai_public_repos/node/modules/rmm/src/node_rmm/types.hpp | // Copyright (c) 2021, NVIDIA CORPORATION.
//
// 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 ... | 0 |
rapidsai_public_repos/node/modules/rmm/src | rapidsai_public_repos/node/modules/rmm/src/node_rmm/memory_resource.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm/src/node_rmm | rapidsai_public_repos/node/modules/rmm/src/node_rmm/utilities/napi_to_cpp.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm/src/node_rmm | rapidsai_public_repos/node/modules/rmm/src/node_rmm/utilities/cpp_to_napi.hpp | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/test/utils.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/test/device-buffer-tests.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm | rapidsai_public_repos/node/modules/rmm/test/tsconfig.json | {
"extends": "../tsconfig.json",
"include": [
"../src/**/*.ts",
"../test/**/*.ts"
],
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"allowJs": true,
"importHelpers": false,
"noEmitHelpers": false,
"noEmitOnError": false,
... | 0 |
rapidsai_public_repos/node/modules/rmm/test | rapidsai_public_repos/node/modules/rmm/test/memory_resource/utils.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
rapidsai_public_repos/node/modules/rmm/test | rapidsai_public_repos/node/modules/rmm/test/memory_resource/current-device-resource-tests.ts | // Copyright (c) 2020-2021, NVIDIA CORPORATION.
//
// 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 la... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.