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
ivrs_ioapic[4]=00:14.0 ivrs_ioapic[5]=00:00.2 |
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
version: "3" | |
services: | |
web: | |
image: emilevauge/whoami | |
networks: | |
- default | |
- traefik-net | |
deploy: | |
labels: | |
- "traefik.port=80" |
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
#!/bin/sh | |
# see https://superuser.com/a/862395/1001553 if you can use bash and want to avoid temp file | |
# let curl fail on error and print response code while redirecting body to file | |
# read curl stdout into variable | |
http_status=$(curl --request POST \ | |
--fail \ | |
--silent --write-out '%{http_code}' \ | |
--output response.json \ | |
--url http://gitlab.dzbw.de/api/v4/projects/4560/merge_requests \ |
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
package de.kommone.kmc.api; | |
import java.util.TimeZone; | |
import javax.ws.rs.Produces; | |
import javax.ws.rs.ext.ContextResolver; | |
import javax.ws.rs.ext.Provider; | |
import com.fasterxml.jackson.databind.ObjectMapper; |
OlderNewer