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
/** @jsx React.DOM */ | |
var React = require('react'); | |
var rd3 = require("react-d3"); | |
var LineGraph = rd3.LineChart; | |
var App = React.createClass({ | |
render: function() { | |
var lineData = [{"name":"Series 1","values":[{"x":0,"y":0},{"x":1,"y":1},{"x":2,"y":2},{"x":3,"y":3},{"x":4,"y":4},{"x":5,"y":5}]}]; | |
return <LineGraph data={ lineData } width={ 672 } height = { 300 } /> |
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
root@73c27eec175f:/busybox# cat nsinit/checkpoint/dump.log | |
(00.000061) Probing sock diag modules | |
(00.000134) Done probing | |
(00.000140) ======================================== | |
(00.000145) Dumping processes (pid: 51) | |
(00.000148) ======================================== | |
(00.000298) Found anon-shmem device at 4 | |
(00.000310) Reset 87's dirty tracking | |
(00.000351) ... done | |
(00.000385) Dirty track supported on kernel |
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
(00.000068) Probing sock diag modules | |
(00.043462) Done probing | |
(00.043492) ======================================== | |
(00.043497) Dumping processes (pid: 127) | |
(00.043501) ======================================== | |
(00.043605) Found anon-shmem device at 4 | |
(00.043803) Reset 159's dirty tracking | |
(00.043881) ... done | |
(00.043934) Dirty track supported on kernel | |
(00.044004) irmap: Searching irmap cache in work dir |
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
INFO[0016] POST /v1.19/containers/df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad/restore | |
INFO[0016] +job restore(df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad) | |
INFO[0016] +job allocate_interface(df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad) | |
WARN[0016] using already allocated ip 172.17.0.2 | |
INFO[0016] -job allocate_interface(df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad) OK | |
INFO[0016] +job log(restore, df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad, busybox:latest) | |
INFO[0016] -job log(restore, df1a39d41e1fa7fb48ff2ddfdc3afda04b8e36afa395bcb7f611a60f6f81abad, busybox:latest) OK | |
panic: runtime error: invalid memory address or nil pointer dereference | |
[signal 0xb code=0x1 addr=0x10 pc=0x500676] |
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
cmd := exec.Command(c.criuPath, args...) | |
cmd.Stdin = process.Stdin | |
cmd.Stdout = process.Stdout | |
cmd.Stderr = process.Stderr | |
if err := cmd.Start(); err != nil { | |
return err | |
} | |
// cmd.Wait() waits cmd.goroutines which are used for proxying file descriptors. | |
// Here we want to wait only the CRIU process. |
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
---> Making bundle: cross (in bundles/1.5.0-dev/cross) | |
Created symlinks: /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/amd64/docker /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/amd64/docker-1.5.0-dev /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/amd64/docker-1.5.0-dev.md5 /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/amd64/docker-1.5.0-dev.sha256 | |
Created binary: /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/386/docker-1.5.0-dev | |
Created binary: /go/src/github.com/docker/docker/bundles/1.5.0-dev/cross/linux/arm/docker-1.5.0-dev | |
# github.com/docker/libcontainer/configs | |
vendor/src/github.com/docker/libcontainer/configs/namespaces.go:101: undefined: syscall.CLONE_NEWNET | |
vendor/src/github.com/docker/libcontainer/configs/namespaces.go:102: undefined: syscall.CLONE_NEWNS | |
vendor/src/github.com/docker/libcontainer/configs/namespaces.go:103: undefined: syscall.CLONE_NEWUSER | |
vendor/src/github.com/docker/libcontainer/configs/namespaces.g |
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
boring_engelbart|Error (cr-service.c:58): Failed unpacking request: Success | |
boring_engelbart|Error (cr-service.c:694): Can't recv request: Success | |
boring_engelbart|data too short after length-prefix of 1204 |
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
(00.169395) Error (cr-restore.c:1597): Can't interrupt task: No such process | |
(00.169400) Restore finished successfully. Resuming tasks. | |
(00.169445) Error (arch/x86/crtools.c:550): Unable to disable the breakpoint | |
(00.169449) Error (cr-restore.c:1831): Unable to flush breakpoints | |
(00.169461) Error (cr-restore.c:1666): Unable to execute 6727: No such process |
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
(00.000042) Added /var/lib/docker/aufs/mnt/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/app/available_modules:/var/lib/docker/vfs/dir/25194a66f9d81334b1136c836b20ad86df2b35631616fdfb0c4836807dd0f729 ext mount mapping | |
(00.000069) Added /var/lib/docker/aufs/mnt/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/app/modules/db:/var/lib/docker/vfs/dir/a0d6bf94637ae5f085f0188d905cdaa44b9f333e0c0aad3f707d712cce216f15 ext mount mapping | |
(00.000072) Added /var/lib/docker/aufs/mnt/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/etc/resolv.conf:/var/lib/docker/containers/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/resolv.conf ext mount mapping | |
(00.000075) Added /var/lib/docker/aufs/mnt/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/etc/hostname:/var/lib/docker/containers/aef1fe98f05bd8385acb231400f83b4ffa1a0cc891dede16d73dfb77df564220/hostname ext mount mapping | |
(00.000077) Added /var/lib/docker/aufs/mnt/aef1fe98f05bd8385acb231400f8 |
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
# entries-in-buffer/entries-written: 99/99 #P:2 | |
# | |
# _-----=> irqs-off | |
# / _----=> need-resched | |
# | / _---=> hardirq/softirq | |
# || / _--=> preempt-depth | |
# ||| / delay | |
# TASK-PID CPU# |||| TIMESTAMP FUNCTION | |
# | | | |||| | | | |
sh-22291 [001] d... 5148.873034: signal_generate: sig=17 errno=0 code=262145 comm=sudo pid=22290 grp=1 res=0 |
OlderNewer