小编Dav*_*ang的帖子

如何在jenkins中获得构建的持续时间

在jenkins仪表板中,有一列用于上次构建的持续时间.

我如何获得不是最后一次构建的构建的持续时间?

jenkins

4
推荐指数
1
解决办法
3807
查看次数

用于Web应用程序的Hadoop

我是初学者使用Hadoop.我只是想知道我是否可以在Web应用程序中使用Hadoop作为后端而不是使用关系数据库?

database hadoop web-applications

3
推荐指数
1
解决办法
2666
查看次数

如何在apache服务器中部署ember-cli项目

我有以下问题.

我用ember-cli创建了一个ember应用程序.

http://localhost:4200/运行该命令时,应用程序通过url在nodejs上正常工作ember serve

我想在apache httpd服务器上部署此应用程序.

为了使这个工作,我认为它在firefox中打开时也应该是独立的.

当我在Firefox中打开它时,我收到一个错误:

要求没有定义

生成的index.html是

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>Foo</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no">

    <base href="/" />

    <link rel="stylesheet" href="assets/vendor.css">
    <link rel="stylesheet" href="assets/foo.css">
  </head>
  <body>
    <script>
      window.FooENV = {"environment":"development","baseURL":"/","locationType":"auto","EmberENV":{"FEATURES":{}},"APP":{"LOG_RESOLVER":true,"LOG_ACTIVE_GENERATION":true,"LOG_MODULE_RESOLVER":true,"LOG_VIEW_LOOKUPS":true},"LOG_MODULE_RESOLVER":true};
      window.EmberENV = window.FooENV.EmberENV;
    </script>
    <script src="assets/vendor.js"></script>
    <script src="assets/foo.js"></script>
    <script>
      window.Foo = require('foo/app')['default'].create(FooENV.APP);
    </script>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

我该如何解决这个问题?

谢谢,

大卫

ember.js ember-cli

2
推荐指数
2
解决办法
4698
查看次数

如何用usemin替换ui-router的版本化文件的链接

给出以下文件app.js

$stateProvider
      .state('intro', {
        url: '/intro',
        templateUrl: 'partials/intro.html',
        controller: 'IntroController as IntroCtrl'
      })
      .state('search', {
        url: '/search',
        templateUrl: 'partials/search.html',
        controller: 'SearchController as searchCtrl'
      })
      ;
Run Code Online (Sandbox Code Playgroud)

任务是将templateUrl文件更改为使用grunt filerev修订的修订版对应文件.

我有一个带有咕噜声的usemin目标

useminPrepare: {// configuration which tasks usemin will change/run
       html: build_src + '/index.html',             
       options: {
            dest: build_dest + '',
        }
},      
usemin: {           
     html: [build_dest + '/index.html'],            
     options: {
            dirs: [build_dest + '', build_dest + '/dist']           
     }      
}
Run Code Online (Sandbox Code Playgroud)

记录了如何在html中插入块注释,然后使用min执行修订以及更换修订文件.

如何实现javascript文件?

javascript gruntjs angular-ui-router grunt-usemin

2
推荐指数
1
解决办法
370
查看次数

htmlunit javascript性能

我用firefoxdriver和firefox 21对htmlunit进行了对硒
的性能测试.性能测试是在我的windows7机器上通过Eclipse进行的.
当两者都禁用javascript时,性能是相同的.
当两个都打开javascript htmlunit 2.12 比firefox慢150%.
我想这是因为spidermonkey引擎对犀牛的优越性.
有没有办法配置rhino会更快?
有没有更好的方式我们可以加速htmlunit?

package utils;

import java.io.IOException;
import java.net.MalformedURLException;
import java.text.DateFormat;
import java.util.Date;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxProfile;

import com.gargoylesoftware.htmlunit.BrowserVersion;
import com.gargoylesoftware.htmlunit.FailingHttpStatusCodeException;
import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

public class PerformanceTest {
public static void main(String[] args)  {
    String[] urls = new String[] {
...
};
      Date beforeSelenium = new Date();
      System.out.println("Going to run selenium");
      testSelenium(urls);
      Date afterSelenium = new Date();

      Date beforehtmlUnit= new Date();
      System.out.println("Going to run htmlunit");
      testHtmlUnit(urls);
      Date …
Run Code Online (Sandbox Code Playgroud)

performance rhino htmlunit

1
推荐指数
1
解决办法
4767
查看次数

我如何创建一个巨大的json文件

我想创建一个包含数据库中大量记录的大文件.此文件由另一个进程使用.

使用xml时,我不必将所有内容加载到内存中,只需使用XML :: Writer即可

使用JSON时,我们通常会创建一个perl数据结构,并使用to_json函数来转储结果.

这意味着我必须将所有内容加载到内存中.

有没有办法避免它?

JSON适合大文件吗?

perl json

1
推荐指数
1
解决办法
931
查看次数