malloc.c
#include <stdio.h>
#include <stdlib.h>
int main (void) {
int n = 0;
while (1) {
| version: 2.1 | |
| orbs: | |
| aws-ecr: circleci/[email protected] # ECRのOrbをインポート | |
| aws-ecs: circleci/[email protected] # ECSのOrbをインポート | |
| workflows: | |
| build-and-deploy: | |
| jobs: | |
| - aws-ecr/build_and_push_image: # 用意されているジョブにパラメータを渡して呼ぶ | |
| account-url: AWS_ECR_ACCOUNT_URL # ECRのアカウントの環境変数 | |
| repo: 'nginx' # イメージのレポジトリ |
| package clone | |
| import ( | |
| "os" | |
| "golang.org/x/crypto/ssh" | |
| "gopkg.in/src-d/go-git.v4" | |
| gitssh "gopkg.in/src-d/go-git.v4/plumbing/transport/ssh" | |
| "io/ioutil" | |
| "testing" |
malloc.c
#include <stdio.h>
#include <stdlib.h>
int main (void) {
int n = 0;
while (1) {
| {"status":"latest: Pulling from library/busybox"} | |
| {"status":"56bec22e3559: Already exists"} | |
| {"status":"Digest: sha256:29f5d56d12684887bdfa50dcd29fc31eea4aaf4ad3bec43daf19026a7ce69912"} | |
| {"status":"Status: Downloaded newer image for busybox:latest"} |
| { | |
| "Id":"e90e34656806", | |
| "Warnings":[] | |
| } |
| [ | |
| { | |
| "Id": "8dfafdbc3a40", | |
| "Names":["/boring_feynman"], | |
| "Image": "ubuntu:latest", | |
| "ImageID": "d74508fb6632491cea586a1fd7d748dfc5274cd6fdfedee309ecdcbc2bf5cb82", | |
| "Command": "echo 1", | |
| "Created": 1367854155, | |
| "State": "Exited", | |
| "Status": "Exit 0", |
| package mytest | |
| import ( | |
| "errors" | |
| "fmt" | |
| "net/http" | |
| "io" | |
| "io/ioutil" | |
| "testing" | |
| "context" |