タグ

2007年9月28日のブックマーク (3件)

  • Maven2でSelenium RC - まとばと!

    id:matobat:20061216:1166264864ではSeleniumの実行はAntに任せてたけど、やっとMaven2プラグインでも出来るようになったみたい。 http://mojo.codehaus.org/selenium-maven-plugin/ <build> <finalName>${artifactId}</finalName> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>selenium-maven-plugin</artifactId> <executions> <execution> <id>selenese-ie</id> <phase>integration-test</phase> <goals> <goal>selenese</goal> </goals> <c

    Maven2でSelenium RC - まとばと!
  • あるSEのつぶやき: Ajaxライブラリまとめ

    Ajax/JavaScriptライブラリをまとめておきます。(順不同) | 基 | 統合 | 表示系 | GUI部品 | イメージ | PGM連携 | ブラウザ | Flash | その他 | | 部品集 | リンク | 編集履歴 | ・基ライブラリ ・・・Ajax開発のベースになるもの ↑TOP prototype.js 超メジャーなAjaxライブラリ prototype.js の開発者向けメモ prototype.jsリファレンス prototype.jsリファレンス(JavaScriptist) prototype.js逆引きサンプル集 Prototype 1.5.0 Cheat Sheet Prototype 1.5 PDFAPI/サンプル/解説 Prototype.js Documentation - まとめサイト Prototype 1.6.0へのアップグレード実例紹

    w650
    w650 2007/09/28
  • URLConnection の timeout - 麦酒堂

    忘れないようにメモ書き. java.net.URLConnection のタイムアウトを設定する方法. Networking Properties System.setProperty ( "sun.net.client.defaultConnectTimeout" , Integer.toString ( URLCONNECTION_TIMEOUT ) ); System.setProperty ( "sun.net.client.defaultReadTimeout" , Integer.toString( URLCONNECTION_TIMEOUT ) ); これをやらないとかなりの時間待ち続けます.せっかくマルチスレッドにしたのに,意味なし.最初は こんな記述 を見つけてげんなりしたのだけれど,一次情報源にあたると解がありました. ちょっと毛色は違うけれど,こうい

    w650
    w650 2007/09/28