$ clang -O3 -Wall -c -target bpf hello_xdp.c -o hello_xdp.bpf
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
From 00f3bad3bd4e9b4a60983857b805082750de30ed Mon Sep 17 00:00:00 2001 | |
From: Kamillaova <[email protected]> | |
Date: Sat, 6 Apr 2024 21:53:42 +0300 | |
Subject: [PATCH] Driver of Intel(R) Gaussian & Neural Accelerator | |
Link: https://lore.kernel.org/dri-devel/[email protected] | |
--- | |
Documentation/gpu/drivers.rst | 1 + | |
Documentation/gpu/gna.rst | 64 +++++ | |
MAINTAINERS | 7 + |
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
#!/usr/bin/env bash | |
__basename() { | |
local tmp | |
tmp=${1%"${1##*[!/]}"} | |
tmp=${tmp##*/} | |
tmp=${tmp%"${2/"$tmp"}"} | |
printf '%s\n' "${tmp:-/}" | |
} |
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
import com.esotericsoftware.kryo.Kryo; | |
import com.esotericsoftware.kryo.io.Input; | |
import com.esotericsoftware.kryo.io.Output; | |
import com.esotericsoftware.kryo.serializers.ImmutableSerializer; | |
import java.net.Inet4Address; | |
import java.net.Inet6Address; | |
import java.net.InetAddress; | |
import java.net.UnknownHostException; |
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 kamillaova.botscommand; | |
import net.md_5.bungee.api.CommandSender; | |
import net.md_5.bungee.api.plugin.Plugin; | |
import net.md_5.bungee.api.scheduler.ScheduledTask; | |
import java.util.concurrent.TimeUnit; | |
@SuppressWarnings("unused") // Убрать предупреждение Class 'BotsProtection' is never used | |
public class BotsProtection extends Plugin { |
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
#!/usr/bin/env bash | |
LC_ALL=C | |
if ! [ -x "$(command -v identify)" ]; then | |
echo 'Error: imagemagick is not installed.' >&2 | |
exit 1 | |
fi | |
IMGS=./imgs |