This file contains hidden or 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
| { | |
| "Ansi 1 Color" : { | |
| "Green Component" : 0, | |
| "Blue Component" : 0, | |
| "Red Component" : 0.73333334922790527 | |
| }, | |
| "Tags" : [ | |
| ], | |
| "Ansi 12 Color" : { |
This file contains hidden or 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
| DROP FUNCTION IF EXISTS fconsider_null_as_max; | |
| DELIMITER // | |
| CREATE FUNCTION fconsider_null_as_max (originalYear INT) | |
| RETURNS INT | |
| BEGIN | |
| RETURN CASE | |
| WHEN MAX(originalYear IS NULL) = 0 THEN MAX(originalYear) | |
| ELSE originalYear | |
| END; | |
| END; // |
This file contains hidden or 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 --platform=linux/amd64 golang:1.22.4 | |
| WORKDIR /app | |
| COPY main.go ./ | |
| RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=off go build -o /go-hpa | |
| EXPOSE 8080 | |
| CMD ["/go-hpa"] |
OlderNewer