SET(Software Engineer in Test) のグループのマネージャ。専門は ソフトウェアテスト/Lint/C#/Git。実務経験のあるプログラミング言語は JavaScript, TypeScript, Swift, C#, Go (コードは OSS を参照)。
(2024/03現在)転職は考えていませんが、情報を収集しています。
SET(Software Engineer in Test) のグループのマネージャ。専門は ソフトウェアテスト/Lint/C#/Git。実務経験のあるプログラミング言語は JavaScript, TypeScript, Swift, C#, Go (コードは OSS を参照)。
(2024/03現在)転職は考えていませんが、情報を収集しています。
namespace Playground.CopilotTDD; | |
public static class NumberGenerator | |
{ | |
public static int GetBetween0To100BySeed(int seed) | |
{ | |
return new Random(seed).Next(0, 100); | |
} | |
} |
// https://chat.openai.com/share/a75ee402-3131-4ee8-9a9d-54bf1b81071c | |
using System; | |
namespace Playground.CopilotTDD.Tests | |
{ | |
public static class NumberGenerator | |
{ | |
public static int GetBetween0To100BySeed(int seed) | |
{ | |
// 線形合同法のパラメータ |
theory Scratch | |
imports Main | |
begin | |
no_notation relcomp (infixr "O" 75) | |
(* oreo 型の内部表現 *) | |
datatype oreo0 = O0 | Ore0 oreo0 | Reo0 oreo0 |
theory "Well_Not_Dense_Order" imports Main begin | |
context wellorder | |
begin | |
definition bot :: 'a | |
where "bot ≡ LEAST x. True" | |
sublocale order_bot bot less_eq less | |
proof standard | |
fix a |
theory "Well_Dense_Order" imports Main begin | |
datatype a = A | |
text "a は整列順序である。" | |
instantiation a :: wellorder | |
begin | |
definition less_eq_a :: "a ⇒ a ⇒ bool" | |
where "less_eq_a a b ≡ True" |
.. | |
.::::. | |
___________ :;;;;:`____________ | |
\_________/ ?????L \__________/ | |
|.....| ????????> :.......' | |
|:::::| $$$$$$"`.:::::::' , | |
,|:::::| $$$$"`.:::::::' .OOS. | |
,7D|;;;;;| $$"`.;;;;;;;' .OOO888S. | |
.GDDD|;;;;;| ?`.;;;;;;;' .OO8DDDDDNNS. | |
'DDO|IIIII| .7IIIII7' .DDDDDDDDNNNF` |
theorem | |
fixes f :: "'x ⇒ 'y ⇒ 'y" | |
assumes finite: "finite X" | |
and eq: "⋀x. x ∈ X ⟹ f x = g x" | |
shows "Finite_Set.fold f z X = Finite_Set.fold g z X" | |
using finite using eq by (rule_tac fold_closed_eq[where ?B=UNIV]; simp) |
--- appium-base-driver/lib/express/server.js 2019-07-17 12:37:19.000000000 +0900 | |
+++ appium-base-driver/lib/express/server.js 2019-07-17 12:37:49.000000000 +0900 | |
@@ -49,7 +49,7 @@ async function server (configureRoutes, | |
reject(err); | |
}); | |
httpServer.on('connection', (socket) => { | |
- socket.setTimeout(600 * 1000); // 10 minute timeout | |
+ socket.setTimeout(600 * 10000); // 10 minute timeout | |
socket.on('error', reject); | |
}); |