Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
G
go-ipfs
概览
概览
详情
活动
周期分析
版本库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
jihao
go-ipfs
Commits
d7438016
提交
d7438016
authored
3月 01, 2015
作者:
Henry
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
godep: changed back to inflect upstream
上级
d69bdecb
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
Godeps.json
Godeps/Godeps.json
+4
-4
.gitignore
..._workspace/src/github.com/chuckpreslar/inflect/.gitignore
+0
-0
README.md
.../_workspace/src/github.com/chuckpreslar/inflect/README.md
+0
-0
inflect.go
..._workspace/src/github.com/chuckpreslar/inflect/inflect.go
+0
-0
inflect_test.go
...space/src/github.com/chuckpreslar/inflect/inflect_test.go
+0
-0
languages.go
...orkspace/src/github.com/chuckpreslar/inflect/languages.go
+2
-2
english.go
.../src/github.com/chuckpreslar/inflect/languages/english.go
+1
-1
irregular.go
...ce/src/github.com/chuckpreslar/inflect/types/irregular.go
+0
-0
language.go
...ace/src/github.com/chuckpreslar/inflect/types/language.go
+0
-0
rule.go
...rkspace/src/github.com/chuckpreslar/inflect/types/rule.go
+0
-0
uncountable.go
.../src/github.com/chuckpreslar/inflect/types/uncountable.go
+0
-0
workers.go
exchange/bitswap/workers.go
+1
-1
没有找到文件。
Godeps/Godeps.json
浏览文件 @
d7438016
...
...
@@ -46,10 +46,6 @@
"Rev"
:
"5958552242606512f714d2e93513b380f43f9991"
},
{
"ImportPath"
:
"github.com/briantigerchow/inflect"
,
"Rev"
:
"cef1f9cc2234281dc58ea10be7e9aad5e282ecab"
},
{
"ImportPath"
:
"github.com/briantigerchow/pubsub"
,
"Rev"
:
"39ce5f556423a4c7223b370fa17a3bbd75b2d197"
},
...
...
@@ -66,6 +62,10 @@
"Rev"
:
"e8c7cc515bfde3e267957a3b110080ceed51354e"
},
{
"ImportPath"
:
"github.com/chuckpreslar/inflect"
,
"Rev"
:
"423e3ac59c611e2d549527ab8c15fb99335d30ba"
},
{
"ImportPath"
:
"github.com/coreos/go-semver/semver"
,
"Rev"
:
"6fe83ccda8fb9b7549c9ab4ba47f47858bc950aa"
},
...
...
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/.gitignore
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/.gitignore
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/README.md
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/README.md
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/inflect.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/inflect.go
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/inflect_test.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/inflect_test.go
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/languages.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/languages.go
浏览文件 @
d7438016
...
...
@@ -2,8 +2,8 @@
package
inflect
import
(
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
briantigerchow
/inflect/languages"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/languages"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types"
)
var
(
...
...
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/languages/english.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/languages/english.go
浏览文件 @
d7438016
...
...
@@ -2,7 +2,7 @@
package
languages
import
(
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types"
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types"
)
// Defines irregular words, uncountables words, and pluralization/singularization rules for the English language.
...
...
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types/irregular.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types/irregular.go
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types/language.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types/language.go
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types/rule.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types/rule.go
浏览文件 @
d7438016
File moved
Godeps/_workspace/src/github.com/
briantigerchow
/inflect/types/uncountable.go
→
Godeps/_workspace/src/github.com/
chuckpreslar
/inflect/types/uncountable.go
浏览文件 @
d7438016
File moved
exchange/bitswap/workers.go
浏览文件 @
d7438016
...
...
@@ -3,7 +3,7 @@ package bitswap
import
(
"time"
inflect
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
briantigerchow
/inflect"
inflect
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/
chuckpreslar
/inflect"
process
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/github.com/jbenet/goprocess"
context
"github.com/jbenet/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论