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" | |
"fmt" | |
"log" | |
"net/http" | |
"os" | |
"os/signal" |
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" | |
"io" | |
"io/ioutil" | |
"net" | |
"os" | |
"strings" |
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 float10 implements decimal floating point numbers | |
// using uint64 to hold the coefficient. | |
package float10 | |
import "strconv" | |
import "errors" | |
import "strings" | |
import "math" | |
// value is -1^sign * coef * 10^exp |
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
pkgname=vagrant | |
pkgver=1.2.1 | |
pkgrel=4 | |
pkgdesc="Tool for building and distributing virtualized development environments" | |
arch=('i686' 'x86_64') | |
url='http://vagrantup.com/' | |
license=('MIT') | |
depends=('ruby' 'virtualbox>=4.0' 'ruby-net-ssh>=2.6.6' \ | |
'ruby-net-scp>=1.1.0' 'ruby-erubis>=2.7.0' 'ruby-i18n>=0.6.0' \ | |
'ruby-log4r>=1.1.9' 'ruby-childprocess>=0.3.7') |