View istio-1.8.0.patch
diff --git a/.SRCINFO b/.SRCINFO | |
index 314521a..93d49ee 100644 | |
--- a/.SRCINFO | |
+++ b/.SRCINFO | |
@@ -1,6 +1,6 @@ | |
pkgbase = istio-bin | |
pkgdesc = An open platform to connect, manage, and secure microservices | |
- pkgver = 1.7.4 | |
+ pkgver = 1.8.0 | |
pkgrel = 1 |
View main.go
package main | |
import ( | |
"bytes" | |
"fmt" | |
"os" | |
) | |
func main() { | |
if len(os.Args) < 2 || len(os.Args[1]) != 25 { |
View publish.go
package main | |
import ( | |
"archive/tar" | |
"compress/gzip" | |
"crypto/md5" | |
"fmt" | |
"io" | |
"log" | |
"os" |
View designer.html
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; |
View designer.html
<link rel="import" href="../core-icons/core-icons.html"> | |
<link rel="import" href="../core-icons/iconsets/av-icons.html"> | |
<link rel="import" href="../paper-fab/paper-fab.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { |
View colorize.sh
#!/bin/bash | |
while read NAME HEX; do | |
for i in `find -name "*-white.svg"`; do | |
FILENAME=`echo $i | sed -e "s/white/$NAME/g"` | |
sed -e "s/#FFFFFF/$HEX/g" $i >$FILENAME | |
PNG=`echo $FILENAME | sed -e "s/svg/png/g"` | |
convert $FILENAME -transparent white $PNG | |
done | |
for i in "" "filetypes" "halflings" "social"; do | |
WHERE="_$i" |
View example_wrapio.go
package main | |
import ( | |
"bytes" | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"fmt" | |
"github.com/icub3d/wrapio" | |
"io" |
View mysort.go
package mysort | |
func min(a, b int) int { | |
if a < b { | |
return a | |
} | |
return b | |
} | |
func insertionSort(data []int, a, b int) { |
View main.go
package main | |
import ( | |
"bufio" | |
"bytes" | |
"flag" | |
"fmt" | |
"github.com/golang/groupcache" | |
"github.com/ha/doozer" | |
"io" |
View main.go
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"labix.org/v2/mgo" | |
"os" | |
"path" | |
"strings" |
NewerOlder