由买买提看人间百态

topics

全部话题 - 话题: repository
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
o**2
发帖数: 168
1
来自主题: Java版 - A rookie question on Java GUI
It is available through maven central repository.
http://search.maven.org/remotecontent?filepath=com/fastmessenge
w**z
发帖数: 8232
2
来自主题: Java版 - Java Map 存 1 million 记录
Java Hashmap implementation does a supplement hash on the hasCode caller
provides.
http://grepcode.com/file/repository.grepcode.com/java/root/jdk/
It's not likely you will have a lot of hash collisions for random String Key
.
Another way to avoid rehashing is to set a bigger initial size if you are
sure you will have 1M records.
I agree with goodbug, at least do some benchmarking before trying to tune
anything.

less
approach
b***i
发帖数: 3043
3
来自主题: Java版 - Spring例子求解释
先问薪问题
Spring已经在openshift上运行了,我发现,重启后,信息就丢了。那么,这个例子是
不是没有真正的数据库?说是叫H2 databas。如何让Spring把数据填入数据库?我看到
如下代码,那么EntityManager em被wire到哪里去了?应该在哪里查找设置?
@Controller
@RequestMapping(value="/")
public class MemberController
{
@Autowired
private MemberDao memberDao;
@RequestMapping(method=RequestMethod.GET)
public String displaySortedMembers(Model model) {... }
@RequestMapping(method=RequestMethod.POST)
public String registerNewMember(@Valid @ModelAttribute("newMember")
Member n... 阅读全帖
s****s
发帖数: 628
4
jar file 在哪download?
g*****g
发帖数: 34805
s****s
发帖数: 628
6
Thanks, just got it.
w**z
发帖数: 8232
7
is the repository setting correct?
c*******e
发帖数: 290
8
可能是要把那个 package 拷贝到公司自己的 maven repository 里面?因为是走的自
己的 tunnel.
w**z
发帖数: 8232
9
try command line mvn clean compile -U
any error? is the repository accessible?
D*****r
发帖数: 6791
10
比如这个重新整理topcoder direct界面的题目,5天时间。
http://www.topcoder.com/challenge-details/30039552/?type=develo
据说涉及不少java相关技术:
Java 1.5
JBoss 4.2.3
Struts 2.3
Informix 11.5
AJAX
EJB 3
Spring 3
CSS
HTML
Javascript
参赛给分配一个EC2上的VM,还给SVN Repository里一个branch,似乎比较接近实际工作
的场景,这是不是个学java的好方式?
还有没有别的什么好的办法来学java呢?
u****s
发帖数: 2186
11
http://zeroturnaround.com/rebellabs/java-tools-and-technologies
The 2014 Leaderboard of Java Tools & Technologies
JUnit – 82.5%* - Top testing framework used by developers
Jenkins – 70%º - Most used CI server in the industry
Git – 69%* - #1 version control technology out there
Hibernate – 67.5%*/º - The top ORM framework used
Java 7 – 65% - The industry leader for SE development
Maven – 64% - Most used build tool in Java
Nexus – 64%º - The main reposito... 阅读全帖
b***i
发帖数: 3043
12
来自主题: Java版 - GIT一问
在eclipse里面import一个GIT的项目,然后发现,如果我new class,那么报告说这个
不是java project。我可以new 一个文件,但是是不是git必须这样?
在workspace里面,src里面什么都没有,因为所以的文件都在repository里面。
b***i
发帖数: 3043
13
来自主题: Java版 - GIT一问
在git的repository里面找到了.project,加入了nature, 和buildcommand,这样就是
java project.这个项目有pom.xml,是不是原来就是maven项目?
现在这个SpringMVC可以显示/welcome了,因为有@RequestMapping("/welcome")
但是,无法解析/,就是说 www.myweb.com看不到结果,
例子在http://www.mkyong.com/spring3/spring-3-mvc-hello-world-example/
这个如何修改?

java
z****e
发帖数: 54598
14
来自主题: Java版 - mvn真是让人头疼
刚下了一个android studio的最新版
beta版,开开心心从preview版给换过去
setting设置的export/import这些都搞定了
然后升级各种plugins,也都没问题
但是android studio突然花了20多分钟在updating maven repository上
觉得很奇怪,后来进.m2文件夹看看
哎哟,我的妈呀
太久没删了,里面一堆东西
主要是倒腾vert.x和以前写的不少项目,都用maven在管
所以.m2越来越大,因为都是用eclipse在写,所以每次新增依赖
eclipse都会自动更新index,所以在eclipse感觉不出来
但是换到android studio需要重新建index就变得很慢
全删了,android studio陡然快了起来
maven这个设置实在是很糟糕,换个ide,每次建个mavn index都非常慢
以后还是用gradle了
i**w
发帖数: 883
15
来自主题: Java版 - mvn真是让人头疼
行艺?Andriod Studio(Intellij IDEA)和eclipse本来就不是同根生,当然不能互用
index。而且Intellj IDEA建index是出名的慢——十年前用3.0的时候就很有体会
gradle同样用的是maven的repository吧,很是怀疑换了gradle就会在这方面有所改进
t*********e
发帖数: 630
16
来自主题: Java版 - 问个 Maven 的问题
如果一个 open sourced library 不在公共的 apache maven respository 中,为了共
享,是不是就只有建立自己的 repository? Nexus OSS 是不是可以?
另外,如果安装了 Nexus OSS,那是不是以前在 Maven Central 上可直接引用的 .jar
也需要先上载到自己的 Nexus OSS 服务器中?
F****n
发帖数: 3271
17
来自主题: Java版 - 问个 Maven 的问题
1. 还可建local repository然后放到source code repo 里
2. 不用

jar
c*****t
发帖数: 1879
18
我的一个 OSS project 以前是用 ant 来 build 的。但是有人 request
把它放到 maven 上。我看了
http://central.sonatype.org/pages/requirements.html
这上面介绍怎么弄 pom.xml ,但是我还是没明白怎么 upload 法。。。
谁能给解释一下?
r**i
发帖数: 1222
c*****t
发帖数: 1879
20
你这没回答问题啊。
g*****g
发帖数: 34805
r**i
发帖数: 1222
22
http://ant.apache.org/ivy/history/2.1.0/tutorial/multiproject.h
我证明ivy publish的是可以供maven用,只是ivysettings稍微有点tricky
c*****t
发帖数: 1879
23
i.c. I will look into that.
c*****t
发帖数: 1879
24
I will try that as well. Thanks.
p*****o
发帖数: 1285
25
来自主题: Linux版 - thinkpad 无线问题
ubuntu 自带的那个是Gnome的NetworkManager, wicd不再ubuntu的repository里:
http://wicd.sourceforge.net/download.php
不过我的t61无线在一装好就能正常工作,从8.04开始就没有问题。

见。
p***o
发帖数: 1252
26
你可以用linux自己的用户权限控制,把repository里的所有东西
设成组(g)可读(r)可写(w),目录再加上传播组名(s),这样组里的
人就能修改了。你再把其他人(o)的权限都关掉,他们不在组里就
没法访问了。此方法适用于NIS+NFS+SSH。web的svn没试过,不知道。
g**s
发帖数: 79
27
来自主题: Linux版 - subversion 初学者问题
推荐的repository 子目录是:
/trunk
/branches
/tags
但是如果用svnadmin create 创建,就会产生
conf/ dav/ db/ format hooks/ locks/
这样一些目录。
这两者有矛盾吗?
g****e
发帖数: 1829
28
如果这还不行,你就把该选的repository选上
a*****i
发帖数: 4391
29
来自主题: Linux版 - 装了一个rhel5后
get repository file from http://pidgin.im, then yum install pidgin.
a*****i
发帖数: 4391
30
来自主题: Linux版 - 装了一个rhel5后

While using RHEL/CentOS, you only get to yum update the security backports.
I am using CentOS5.2 @ work, and there isn't python 2.5 yum repository. I am
stuck with python 2.4.
If you want bleeding edge desktop, go for ubuntu/fedora.
s**i
发帖数: 381
31
来自主题: Linux版 - SLES怎么升级kernel啊?
刚装了SUSE Linux Enterprise Server 10, SP2
default kernel is 2.6.16.60-0.21-default
为了装lustre,需要升级到2.6.16.60-0.31
看了看http://wiki.novell.com/index.php/Kernel_versions
确实应该有这个版本的kernel
可是online update 总是找不到任何patch
activate了evaluation code也是不行
实在是搞不懂这些SLES, RHEL是怎么运作的?
还是ubuntu/debian/gentoo比较好,都在repository里
请用过SLES的大虾帮帮忙吧。
谢谢
y*******g
发帖数: 6599
32
8.10用这个吧
deb http://archive.ubuntu.com/ubuntu/ intrepid main restricted
deb-src http://archive.ubuntu.com/ubuntu/ intrepid main restricted
## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu/ intrepid-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu/ intrepid-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL
a*****i
发帖数: 4391
33

I only update when there is change in repository.
x****t
发帖数: 34
34
想装一些软件都装不上啊
a*****i
发帖数: 4391
35
来自主题: Linux版 - Debian users
Does official debian repository have stuff like flash-plugins?
(Since Debian is all about having 100% free and open software.)
y*******g
发帖数: 6599
36
来自主题: Linux版 - Debian users
有。
flashplugin-nonfree
repository有main, non-free和contrib三类
a*****i
发帖数: 4391
37
It is a popularity contest for distros that target
regular users. yum and apt-get are both good tools, but
for some reason, it never caught on. Maybe because of
the good launchpad site...
Because of ubuntu's popularity, it is very easy to get a
new software that is in ubuntu's repository. I don't think
I know any softwares that you can not apt-get but you
can yum yet.
i*****f
发帖数: 578
38
来自主题: Linux版 - ubuntu 9.04登陆画面变成花屏
ArchLinux User-community Repository,就是archlinux非官方的repo。对arch用户很
有用啊。aur上有的别的地方也该有吧
a*****i
发帖数: 4391
l*****g
发帖数: 547
40
来自主题: Linux版 - My emacs script repository!
interesting!
o******b
发帖数: 37
41
来自主题: Linux版 - My emacs script repository!
are all of those your personal config files?
this is incredible, my .vimrc is 200 lines long plus another 50 lines of
color setup, that's all i need to get a comfortable and fully-fledged vim...
a*****i
发帖数: 4391
42
来自主题: Linux版 - My emacs script repository!

..
Also I have a vim setup too. :)
http://github.com/turbowei/DotVim/tree
m******t
发帖数: 2416
43
来自主题: Linux版 - My emacs script repository!

Man taht's lots of color schemes and plugins.
u**s
发帖数: 50
44
来自主题: Linux版 - My emacs script repository!
checkout emacs23 and it has merged most of the third party els.
a*****i
发帖数: 4391
45
来自主题: Linux版 - My emacs script repository!

I am using a CVS snapshot of emacs23.
a*****i
发帖数: 4391
46
来自主题: Linux版 - 很奇怪的crash.
莫名其妙的crash过好几会了,就是GUI全部死掉。也不知道是不是kernel问题。
stock install jaunty on T61.
没装古怪软件。全部都是从repository来的。
有其他T61用户有类似症状么?
Z****e
发帖数: 2999
47
来自主题: Linux版 - dog fart git.
重新init你的repository? 乱猜猜的
D*********s
发帖数: 555
48
来自主题: Linux版 - dog fart git.
我说了什么都没改
其实我就是想sync那个repository
f********1
发帖数: 1601
49
来自主题: Linux版 - Fedora11的发布怎么一拖再拖
俺要等最近的repository全更新了再换,省得yum安装包裹慢
m********r
发帖数: 811
50
来自主题: Linux版 - APT认证问题
W: A error occurred during the signature verification. The repository is not
updated and the previous index files will be used.GPG error: http://ubuntu.media.mit.edu jaunty-updates Release: 下列签名无效: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key
W: 无法下载 http://ubuntu.media.mit.edu/ubuntu/dists/jaunty-updates/Release
W: 有一些索引文件不能下载,它们可能被忽略了,也可能转而使用了旧的索引文件。

.
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)