Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
import org.gradle.kotlin.dsl.* | |
import org.gradle.plugin.use.* | |
import org.slf4j.LoggerFactory | |
/** Build source logger */ | |
val logger = LoggerFactory.getLogger("build-logic") | |
/** Dependency versions. */ | |
object Deps { |
fun main() { | |
""" | |
CI=Always set to true. | |
GITHUB_ACTION=The name of the action currently running, or the id of a step. For example, for an action, __repo-owner_name-of-action-repo. GitHub removes special characters, and uses the name __run when the current step runs a script without an id. If you use the same script or action more than once in the same job, the name will include a suffix that consists of the sequence number preceded by an underscore. For example, the first script you run will have the name __run, and the second script will be named __run_2. Similarly, the second invocation of actions/checkout will be actionscheckout2. | |
GITHUB_ACTION_PATH=The path where an action is located. This property is only supported in composite actions. You can use this path to access files located in the same repository as the action. For example, /home/runner/work/_actions/repo-owner/name-of-action-repo/v1. | |
GITHUB_ACTION_REPOSITORY=For a step executing an action, this is the owner and repository name of the action. Fo |
{ | |
"$schema": "https://vega.github.io/schema/vega-lite/v5.json", | |
"description": "A dual axis chart, created by setting y's scale resolution to `\"independent\"`", | |
"width": 400, | |
"height": 300, | |
"data": { | |
"values": [ | |
{ | |
"process": "java", | |
"time": "2023-04-27 00:00:00", |
#!/usr/bin/env java --enable-preview --enable-native-access=ALL-UNNAMED --source 21 | |
import java.lang.foreign.*; | |
import java.lang.foreign.MemoryLayout.PathElement; | |
import java.lang.invoke.MethodHandle; | |
public class FFMCrash { | |
static Linker LINKER = Linker.nativeLinker(); | |
static SymbolLookup loaderLookup = SymbolLookup.loaderLookup(); |
### Llama 2 Chat | |
POST http://127.0.0.1:8080/completion | |
Content-Type: application/json | |
{ | |
"prompt": "What is Java Language?", | |
"temperature": 0.7 | |
} | |
### Llama 2 tokenize |
Kotlin/Native requires that C libraries are compiled with a specific verison of GCC.
You can use the GCC used by Kotlin/Native itself. These Gradle tasks will help with this.
// build.gradle.kts
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile