Examples of calculeNumberOfIssues()


Examples of br.edu.utfpr.cm.JGitMinerWeb.dao.BichoPairFileDAO.calculeNumberOfIssues()

        Map<AuxFileFile, DirectedSparseGraph<String, String>> pairFileNetwork = new HashMap<>();
       
        int countIgnored = 0;
        BichoFileDAO bichoFileDAO = new BichoFileDAO(dao, repository);
        BichoPairFileDAO bichoPairFileDAO = new BichoPairFileDAO(dao, repository, 20);
        Long issuesSize = bichoPairFileDAO
                .calculeNumberOfIssues(futureBeginDate, futureEndDate, true);
       
        System.out.println("Number of all pull requests: " + issuesSize);
       
        //Map<String, Long> futurePullRequest = new HashMap<>();
View Full Code Here

Examples of br.edu.utfpr.cm.JGitMinerWeb.dao.BichoPairFileDAO.calculeNumberOfIssues()

            ownershipAvg = (double) ownershipSum / (double) committers;

//            double majorContributorsRate = (double) majorContributors / (double) committers; // % de major
//            double minorContributorsRate = (double) minorContributors / (double) committers; // % de minor

            Long updates = bichoPairFileDAO.calculeNumberOfIssues(
                    fileFile.getFileName(), fileFile.getFileName2(),
                    beginDate, endDate, true);

            Long futureUpdates;
            if (beginDate.equals(futureBeginDate) && endDate.equals(futureEndDate)) {
View Full Code Here

Examples of br.edu.utfpr.cm.JGitMinerWeb.dao.BichoPairFileDAO.calculeNumberOfIssues()

            Long futureUpdates;
            if (beginDate.equals(futureBeginDate) && endDate.equals(futureEndDate)) {
                futureUpdates = updates;
            } else {
                futureUpdates = bichoPairFileDAO.calculeNumberOfIssues(
                        fileFile.getFileName(), fileFile.getFileName2(),
                        futureBeginDate, futureEndDate, true);
            }

            // list all issues and its comments
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.