This file contains 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
import { createContainerBuilder } from "./di-container" | |
test.concurrent("no dependency", () => { | |
const container = createContainerBuilder() | |
.add("a", () => ({ a: "Hello" })) | |
.add("b", () => ({ b: "World" })) | |
.build() | |
expect(container.get("a").a).toBe("Hello") | |
expect(container.get("b").b).toBe("World") |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
- name: Create directory | |
file: | |
path: /var/src/{{ compose_name }} | |
state: directory | |
owner: root | |
group: docker | |
- name: Copy directory | |
synchronize: | |
src: '{{ compose_name }}/' |
This file contains 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
@startuml | |
package rac { | |
class RacInput24 { | |
+ bool read_12bit_chance(uint16_t) | |
+ bool read_bit() | |
} | |
} | |
package symbol { | |
class UniformSymbolCoder { |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Collections.Immutable; | |
using System.Linq; | |
using System.Text; | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>TODO になる予定</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="app">Loading</div> |
This file contains 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
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace VeronaLike | |
{ | |
public delegate void WhenCallback<T>(ref T value); | |
public class Cown<T> |
This file has been truncated, but you can view the full file.
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head><meta charset="utf-8" /> | |
<title>TrafficLight</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
This file contains 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
public static float[] ForwardFloatSimd(IReadOnlyList<float> input) | |
{ | |
if (input == null) throw new ArgumentNullException(nameof(input)); | |
var inputArray = (float[])input; // TODO: 型検証 | |
float[] factorVector = null; | |
if (Vector.IsHardwareAccelerated) | |
factorVector = new float[Vector<float>.Count * 2]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder