| カテゴリ | 必須要素 | 詳細 |
|---|---|---|
| CI/CD | 自動化された結合・デプロイ | AIがプロダクトを人間に提示できる完全な環境が必要。 |
| Testing | フルオートメーション | 網羅的なE2Eテスト。AIによるテストコードの自己生成と修正。 |
| Observability | AI可読なログ | 構造化されたログ、メトリクス収集。AIが解釈可能な診断レポート。 |
| AI environment | AI実行環境 | AIエージェントがコード操作・API実行を行うための24時間、必要数稼働する環境。 |
31 Aug 2011
私は人々にGitを教えるためにあちこちを飛び回っているが、最近のほぼすべてのクラスやワークショップで git-flow についてどう思うかを尋ねられた。私はいつも、git-flowは素晴らしいと思うと答えている。何百万ものワークフローを持ったシステム(Git)を提供し、ドキュメントもあるし、よくテストされている。フレキシブルなワークフローは、実に容易なやり方で多くの開発者の役に立つ。標準的なものになりつつあり、開発者はプロジェクトや企業の間を移動しつつこの標準的なワークフローに馴染むことができる。
This file contains hidden or 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
| <html> | |
| <head> | |
| <title>QiitaStockChecker</title> | |
| <script type="text/javascript" src="https://www.google.com/jsapi"></script> | |
| <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> | |
| <script type="text/javascript"> | |
| google.load("visualization", "1", {packages:["corechart"]}); | |
| google.setOnLoadCallback(setData); | |
| var countStartQiitaId = 74479; |
This file contains hidden or 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
| @Test | |
| public void testPlus() throws ScriptException, IOException { | |
| ScriptEngine engine = new ScriptEngineManager().getEngineByName("javascript"); | |
| FileReader reader = new FileReader("WebContent/js/scriptTobeTested.js"); | |
| engine.eval(reader); | |
| Assert.assertEquals(true, engine.eval("plus(1, 1) == 2")); | |
| reader.close(); | |
| } |
This file contains hidden or 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
| Host github.com | |
| HostName github.com | |
| IdentityFile /Users/user/.ssh/github.key | |
| User XXXXX |