Package br.edu.utfpr.cm.JGitMinerWeb.services.matrix.nodes

Examples of br.edu.utfpr.cm.JGitMinerWeb.services.matrix.nodes.NodeGeneric


            System.out.println("countTemp: " + countTemp);
            System.out.println("countTotal: " + countTotal);
            System.out.println("Transformando em Nodes...");
            for (Iterator<AuxFileFilePull> it = resultTemp.iterator(); it.hasNext();) {
                AuxFileFilePull aux = it.next();
                incrementNode(nodes, new NodeGeneric(aux.getFileName(), aux.getFileName2()));
            }
            System.out.println("Transformação concluída!");
            offset += limit;
            System.gc();
        } while (countTemp >= limit);
View Full Code Here


                            // então eles mexeram no mesmo arquivo no mesmo pull request
                            AuxUserUserPullFile control = new AuxUserUserPullFile(aux.getUserIdentity(), aux2.getUserIdentity(), aux.getPullNumber(), aux.getFileName());
                            // verifica se já foi gravado registo semelhante, se não foi então grave
                            if (!controls.contains(control)) {
                                controls.add(control);
                                incrementNode(nodes, new NodeGeneric(control.getUserIdentity(), control.getUserIdentity2()));
                            }
                        }
                    }
                }
            }
View Full Code Here

        System.out.println("query: " + query.size());

        List<NodeGeneric> nodes = new ArrayList<>();
        for (AuxUserFile aux : query) {
            NodeGeneric rec = new NodeGeneric(
                    aux.getUser(),
                    aux.getFile());
            incrementNode(nodes, rec);
        }
View Full Code Here

TOP

Related Classes of br.edu.utfpr.cm.JGitMinerWeb.services.matrix.nodes.NodeGeneric

Copyright © 2018 www.massapicom. 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.