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 ( | |
| "encoding/binary" | |
| "fmt" | |
| "reflect" | |
| "syscall" | |
| "time" | |
| "unsafe" | |
| ) |
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/env perl | |
| use strict; | |
| use warnings; | |
| use v5.12; | |
| sub aggressively_memoize { | |
| my $caller_num = shift // 1; | |
| my $caller = (caller($caller_num))[3]; |
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
| { | |
| "$id": "https://kubeflow.org/model-registry/catalog.yaml", | |
| "$schema": "https://json-schema.org/draft/2020-12/schema", | |
| "title": "Model Catalog", | |
| "type": "object", | |
| "properties": { | |
| "source": { | |
| "type": "string", | |
| "description": "The name of the catalog provider.", | |
| "example": "Red Hat" |
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
| # Guestbook | |
| => /cgi-bin/guestbook.pl Add your entry |
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 ( | |
| "fmt" | |
| ) | |
| func main() { | |
| fmt.Printf("U+%04X\n", decode([]byte{0x61})) | |
| fmt.Printf("U+%04X\n", decode([]byte{0xc2, 0xa1})) | |
| fmt.Printf("U+%04X\n", decode([]byte{0xea, 0x9c, 0xb3})) |