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
+ | |
+func TestExecinPassExtraFiles(t *testing.T) { | |
+ if testing.Short() { | |
+ return | |
+ } | |
+ rootfs, err := newRootfs() | |
+ if err != nil { | |
+ t.Fatal(err) | |
+ } | |
+ defer remove(rootfs) |
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
diff --git a/vendor/src/github.com/docker/libcontainer/process_linux.go b/vendor/src/github.com/docker/libcontainer/process_linux.go | |
index 1c74b65..fc9a733 100644 | |
--- a/vendor/src/github.com/docker/libcontainer/process_linux.go | |
+++ b/vendor/src/github.com/docker/libcontainer/process_linux.go | |
@@ -127,12 +127,13 @@ func (p *setnsProcess) terminate() error { | |
} | |
func (p *setnsProcess) wait() (*os.ProcessState, error) { | |
- err := p.cmd.Wait() | |
- if err != nil { |
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
package main | |
import ( | |
"log" | |
"os" | |
"os/exec" | |
"time" | |
) | |
func main() { |
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
zipkin_1 | 2016-04-13 16:56:37.062 ERROR 1 --- [nio-9411-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.jooq.exception.DataAccessException: SQL [select distinct `zipkin_spans`.`trace_id` from `zipkin_spans` join `zipkin_annotations` on (`zipkin_spans`.`trace_id` = `zipkin_annotations`.`trace_id` and `zipkin_spans`.`id` = `zipkin_annotations`.`span_id`) where (`zipkin_annotations`.`endpoint_service_name` = ? and `zipkin_spans`.`start_ts` between ? and ?) order by `zipkin_spans`.`start_ts` desc limit ?]; Expression #1 of ORDER BY clause is not in SELECT list, references column 'zipkin.zipkin_spans.start_ts' which is not in SELECT list; this is incompatible with DISTINCT] with root cause | |
zipkin_1 | | |
zipkin_1 | org.mariadb.jdbc.internal.util.dao.QueryException: Expression #1 of ORDER BY clause is not in SELECT list, references column 'zipkin.zipkin_spans.start_ts' which |
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
❯ sudo cilium status | |
Allocated IPv4 addresses: | |
10.1.0.1 | |
10.1.0.2 | |
10.1.0.3 | |
10.1.0.4 | |
10.1.0.5 | |
10.1.0.6 | |
10.1.0.7 | |
10.1.0.8 |
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
package benchzstd | |
import ( | |
"bytes" | |
"io/ioutil" | |
"testing" | |
"github.com/DataDog/zstd" | |
"github.com/valyala/gozstd" | |
) |
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
diff --git a/CMakeLists.txt b/CMakeLists.txt | |
index 3c1a689..7603e6e 100644 | |
--- a/CMakeLists.txt | |
+++ b/CMakeLists.txt | |
@@ -25,7 +25,8 @@ option(JAEGERTRACING_WARNINGS_AS_ERRORS "Treat compiler warnings as errors" OFF) | |
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR | |
CMAKE_CXX_COMPILER_ID MATCHES "Clang") | |
- set(cxx_flags -Wall -pedantic) | |
+ set(cxx_flags -Wall -pedantic -static-libasan -fsanitize=address -fno-omit-frame-pointer) |
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
#!/bin/sh | |
# Run Chrome in a container | |
runtime=$1 | |
ARGS="--net host" | |
if [ -z $runtime ]; then | |
ARGS="${ARGS}" | |
else | |
echo "running with $runtime" |
OlderNewer