Skip to content
#

bpf

Here are 195 public repositories matching this topic...

danobi
danobi commented Jun 10, 2021

Is your feature request related to a problem? Please describe.

Useful for networking tracing to convert from network order to host order.

Describe the solution you'd like

int[8|16|32|64] bswap(int[8|16|32|64])

We can make bswap() infer the integer width and return the appropriate integer. Previous discussi

enhancement good first issue
itaysk
itaysk commented Dec 28, 2021

Currently we have just one type of docs which are "reference" documentation. We should add a "how-to/tutorials" section with goal-driven content. We can start by drawing already available content:

https://blog.aquasec.com/kubernetes-runtime-security-ebpf
https://blog.aquasec.com/tracee-runtime-malware-alerts-aqua-postee
https://blog.aquasec.com/runtime-security-tracee-rules
https://github.co

blanquicet
blanquicet commented Mar 16, 2022

Current situation

When users want to restart the Inspektor Gadget, they have to run:

kubectl gadget undeploy
kubectl wait --for=delete namespace gadget --timeout=-1s
kubectl gadget deploy | kubectl apply -f -

Ideal future situation

Users do not have to manually wait for the namespace to get deleted but it is embedded in the undeploy command.

Implementatio

enhancement good first issue area/kubectl-gadget
seanyoung
seanyoung commented Mar 23, 2022

Given this solidity:

contract C {
	function foo(int a) public {}
	function foo(int a, int b) public {}
	function foo(int a, int b, int c) public {}
	function bar() public {
		foo(true);
	}
	function bar2() public {
		foo({a:true});
	}
}

The error message you get is:

/home/sean/git/solang/overloaded.sol:6:3-12: error: cannot find overloaded function which matches signa
good first issue

Improve this page

Add a description, image, and links to the bpf topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bpf topic, visit your repo's landing page and select "manage topics."

Learn more