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 main | |
| import ( | |
| "context" | |
| "log" | |
| "net/http" | |
| "os" | |
| "os/signal" | |
| "time" | |
| ) |
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
| public class UnityWebRequestAwaiter : INotifyCompletion | |
| { | |
| private UnityWebRequestAsyncOperation asyncOp; | |
| private Action continuation; | |
| public UnityWebRequestAwaiter(UnityWebRequestAsyncOperation asyncOp) | |
| { | |
| this.asyncOp = asyncOp; | |
| asyncOp.completed += OnRequestCompleted; | |
| } |
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 main | |
| import ( | |
| "context" | |
| "flag" | |
| "log" | |
| "github.com/docker/distribution/registry/client" | |
| heroku "github.com/heroku/docker-registry-client/registry" | |
| "github.com/motemen/go-loghttp" |
OlderNewer