repo
stringlengths
1
191
file
stringlengths
23
351
code
stringlengths
0
5.32M
file_length
int64
0
5.32M
avg_line_length
float64
0
2.9k
max_line_length
int64
0
288k
extension_type
stringclasses
1 value
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/EvaluateGameState/NormalizedAbsoluteDifferenceOld.java
package EvaluateGameState; import java.util.List; import rts.GameState; import rts.PhysicalGameState; import rts.units.Unit; public class NormalizedAbsoluteDifferenceOld implements EvaluateGS { int worker; int light; int ranged; int heavy; int base; int barrack; int saved_resource; public NormalizedAbsolu...
3,408
25.022901
83
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/EvaluateGameState/Perfect.java
package EvaluateGameState; import java.util.ArrayList; import java.util.List; import AbstrationGameState.AbstrationGS; import AbstrationGameState.AbstrationGS1; import ai.core.AI; import rts.GameState; import rts.PlayerAction; import rts.units.UnitTypeTable; public class Perfect implements EvaluateGS { public List...
1,724
21.697368
95
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/EvaluateGameState/Playout.java
package EvaluateGameState; import ai.core.AI; import rts.GameState; import util.Pair; public interface Playout { Pair<Double,Double> run(GameState gs,int player,int max_cycle,AI ai1,AI ai2,boolean exibe) throws Exception; }
227
21.8
109
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/EvaluateGameState/SimplePlayout.java
package EvaluateGameState; import javax.swing.JFrame; import ai.core.AI; import gui.PhysicalGameStatePanel; import rts.GameState; import rts.PlayerAction; import rts.units.UnitTypeTable; import util.Pair; public class SimplePlayout implements Playout { public EvaluateGS eval; public SimplePlayout() { // TODO A...
2,334
27.13253
123
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/EvaluateGameState/Super.java
package EvaluateGameState; import Oracle.ActionState; import rts.GameState; public class Super implements EvaluateGS { Perfect perfect; NormalizedAbsoluteDifferenceOld cd; NormalizedAbsoluteDifference cd2; LTD3 ltd3; public Super(ActionState EAs,int play) { // TODO Auto-generated constructor stub perfec...
1,058
18.611111
57
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Evaluations/Evaluation.java
package Evaluations; import CFG_UCT.Factory; import CFG_UCT.Node; import rts.GameState; import util.Pair; public interface Evaluation { boolean evaluation(GameState gs, Pair<Node,Node> ais, int max_cycle,Factory f) throws Exception; Pair<Node,Node> getAIS(); }
267
19.615385
97
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Evaluations/Playout.java
package Evaluations; import javax.swing.JFrame; import AIs.Interpreter; import CFG_UCT.Factory; import CFG_UCT.Node; import ai.core.AI; import gui.PhysicalGameStatePanel; import rts.GameState; import rts.PlayerAction; import rts.units.UnitTypeTable; public class Playout { static public int n; public Playout() { ...
1,771
22.626667
124
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Evaluations/SimplesEvaluations.java
package Evaluations; import CFG_UCT.Control; import CFG_UCT.Empty; import CFG_UCT.Factory; import CFG_UCT.Node; import CFG_UCT.S; import rts.GameState; import util.Pair; public class SimplesEvaluations implements Evaluation { Pair<Node, Node> best; public SimplesEvaluations() { // TODO Auto-generated construct...
1,045
21.255319
106
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Evaluations/SimulatedAnnealing.java
package Evaluations; import java.util.Random; import CFG_UCT.Control; import CFG_UCT.Empty; import CFG_UCT.Factory; import CFG_UCT.Node; import CFG_UCT.S; import rts.GameState; import util.Pair; public class SimulatedAnnealing implements Evaluation { Pair<Node, Node> best; double T0; double T; double alpha; ...
1,371
19.477612
107
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/LocalSearch/SA.java
package LocalSearch; import java.util.ArrayList; import java.util.List; import java.util.Random; import AIs.Interpreter; import CFG_UCT.Control; import CFG_UCT.Factory; import CFG_UCT.Node; import EvaluateGameState.Playout; import EvaluateGameState.SimplePlayout; import CFG_UCT.FactoryBase; import CFG_UCT.S; import a...
5,212
26.010363
97
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/LocalSearch/SARollout.java
package LocalSearch; import java.util.ArrayList; import java.util.List; import java.util.Random; import AIs.Interpreter; import CFG_UCT.Factory; import CFG_UCT.Node; import EvaluateGameState.Playout; import EvaluateGameState.SimplePlayout; import CFG_UCT.FactoryBase; import CFG_UCT.S; import ai.core.AI; import rts.Ga...
4,232
27.033113
135
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/LocalSearch/Search.java
package LocalSearch; import CFG_UCT.Node; import rts.GameState; import util.Pair; public interface Search { Node run(GameState gs,int max_cicle,int lado) throws Exception; Pair<Double, Double> getBestScore(); }
216
17.083333
64
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/LocalSearch/UCT.java
package LocalSearch; import java.util.ArrayList; import java.util.HashMap; import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Queue; import java.util.Random; import AIs.Interpreter; import CFG_UCT.Node; import EvaluateGameState.Playout; import CFG_UCT.Factory; import CFG_UCT.Fa...
10,721
27.745308
123
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Oracle/ActionState.java
package Oracle; import java.io.BufferedReader; import java.io.File; import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.io.PrintWriter; import java.util.ArrayList; import java.util.List; import javax.swing.JFrame; import org.jdom.Document; import org.jdom.JDOMException; impo...
5,014
26.404372
136
java
sketch-learning
sketch-learning-master/microrts-sketch-learning/UCT/UCTSynthesizerMicroRTS/UCTSynthesis/Tests/TestUCT.java
package Tests; import java.util.List; import CFG_UCT.Node; import EvaluateGameState.ActionPlayout; import EvaluateGameState.NormalizedAbsoluteDifferenceOld; import EvaluateGameState.NormalizedAbsoluteDifference; import EvaluateGameState.NoInfo; import EvaluateGameState.EvaluateGS; import EvaluateGameState.LTD3; impor...
4,154
25.806452
92
java
sigir16-eals
sigir16-eals-master/src/algorithms/ItemKNN.java
package algorithms; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import utils.CommonUtils; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure.SparseVector; /** * Implement ItemKNN method for topK recommendation, as describ...
3,227
26.355932
83
java
sigir16-eals
sigir16-eals-master/src/algorithms/ItemPopularity.java
package algorithms; import java.util.ArrayList; import java.util.HashMap; import data_structure.Rating; import data_structure.SparseMatrix; public class ItemPopularity extends TopKRecommender { double[] item_popularity; public ItemPopularity(SparseMatrix trainMatrix, ArrayList<Rating> testRatings, int topK, i...
820
22.457143
80
java
sigir16-eals
sigir16-eals-master/src/algorithms/MF_ALS.java
package algorithms; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure.DenseVector; import data_structure.DenseMatrix; import data_structure.Pair; import data_structure.SparseVector; import happy.coding.math.Randoms; import java.util.ArrayList; import java.util.Collections; import...
6,557
25.767347
81
java
sigir16-eals
sigir16-eals-master/src/algorithms/MF_CD.java
package algorithms; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure.DenseVector; import data_structure.DenseMatrix; import data_structure.Pair; import data_structure.SparseVector; import happy.coding.math.Randoms; import java.util.ArrayList; import java.util.Collections; import...
9,276
29.516447
91
java
sigir16-eals
sigir16-eals-master/src/algorithms/MF_fastALS.java
package algorithms; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure.DenseVector; import data_structure.DenseMatrix; import data_structure.Pair; import data_structure.SparseVector; import happy.coding.math.Randoms; import java.util.ArrayList; import java.util.Collections; import...
9,591
26.883721
100
java
sigir16-eals
sigir16-eals-master/src/algorithms/MFbpr.java
package algorithms; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure.DenseVector; import data_structure.DenseMatrix; import data_structure.Pair; import java.util.ArrayList; import java.util.Collections; import java.util.Random; import utils.Printer; /** * Implement the standa...
5,834
29.710526
143
java
sigir16-eals
sigir16-eals-master/src/algorithms/TopKRecommender.java
package algorithms; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.HashSet; import java.util.List; import utils.CommonUtils; import utils.Printer; import data_structure.DenseVector; import data_structure.Rating; import data_structure.SparseMatrix; import data_structure...
9,129
29.637584
98
java
sigir16-eals
sigir16-eals-master/src/data_structure/DataMap.java
package data_structure; import java.util.HashMap; import java.util.Iterator; import java.io.Serializable; /** * This is a class implementing HashMap-based data map. * This data structure is used for implementing sparse vector and matrix. * * @author Joonseok Lee * @since 2012. 4. 20 * @version 1.1 */ public cl...
2,523
22.588785
95
java
sigir16-eals
sigir16-eals-master/src/data_structure/DenseMatrix.java
// Copyright (C) 2014 Guibing Guo // // This file is part of LibRec. // // LibRec is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. //...
16,925
21.811321
96
java
sigir16-eals
sigir16-eals-master/src/data_structure/DenseVector.java
// Copyright (C) 2014 Guibing Guo // // This file is part of LibRec. // // LibRec is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. //...
6,252
19.501639
85
java
sigir16-eals
sigir16-eals-master/src/data_structure/Pair.java
package data_structure; import java.util.Objects; public class Pair<F, S> { public final F first; public final S second; public Pair(F first, S second) { this.first = first; this.second = second; } @Override public boolean equals(Object o) { if (!(o instanceof Pair)) { return...
701
20.9375
80
java
sigir16-eals
sigir16-eals-master/src/data_structure/Rating.java
package data_structure; public class Rating { public int userId; // user id, starts from 0 public int itemId; // item id, starts from 0 public float score; public long timestamp; public Rating(int userId, int itemId, float score, long timestamp) { this.userId = userId; this.itemId = itemId; this.score = s...
707
25.222222
75
java
sigir16-eals
sigir16-eals-master/src/data_structure/SparseMatrix.java
package data_structure; import java.io.Serializable; import java.util.ArrayList; import data_structure.Pair; /** * This class implements sparse matrix, containing empty values for most space. * * @author Joonseok Lee * @since 2012. 4. 20 * @version 1.1 */ public class SparseMatrix implements Serializable{ pri...
29,309
23.425
116
java
sigir16-eals
sigir16-eals-master/src/data_structure/SparseVector.java
package data_structure; import java.io.Serializable; import java.util.ArrayList; import java.util.HashMap; import java.util.HashSet; import utils.CommonUtils; /** * This class implements sparse vector, containing empty values for most space. * * @author Joonseok Lee * @since 2012. 4. 20 * @version 1.1 */ publi...
18,133
21.415328
98
java
sigir16-eals
sigir16-eals-master/src/main/main.java
package main; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Arrays; import java.util.Collection; import java.util.Collection...
17,765
35.036511
93
java
sigir16-eals
sigir16-eals-master/src/main/main_MF.java
package main; import java.io.IOException; import data_structure.DenseMatrix; import utils.Printer; import algorithms.MF_fastALS; import algorithms.MF_ALS; import algorithms.MF_CD; import algorithms.ItemPopularity; public class main_MF extends main { public static void main(String argv[]) throws IOException { Stri...
3,092
33.366667
97
java
sigir16-eals
sigir16-eals-master/src/main/main_bpr.java
package main; import java.io.IOException; import utils.Printer; import algorithms.MFbpr; import algorithms.ItemPopularity; import algorithms.TopKRecommender; import data_structure.Rating; import java.util.ArrayList; public class main_bpr extends main { public static void main(String argv[]) throws IOException { ...
1,339
28.130435
89
java
sigir16-eals
sigir16-eals-master/src/main/main_online.java
package main; import java.io.IOException; import data_structure.DenseMatrix; import utils.Printer; import algorithms.MF_fastALS; import algorithms.MF_ALS; import algorithms.MF_CD; import algorithms.ItemPopularity; import algorithms.MFbpr; public class main_online extends main { public static void main(String argv[]...
3,049
32.516484
130
java
sigir16-eals
sigir16-eals-master/src/utils/CommonUtils.java
package utils; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.PriorityQueue; import java.util.HashMap; import java.util.Random; public class CommonUtils { /** ...
3,542
25.051471
104
java
sigir16-eals
sigir16-eals-master/src/utils/DatasetUtil.java
package utils; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection...
51,351
35.970482
135
java
sigir16-eals
sigir16-eals-master/src/utils/Printer.java
package utils; /** * This is a class containing printing functions * in human-readable format from various kinds of data. * * @author Joonseok Lee * @author Mingxuan Sun * @since 2012. 4. 20 * @version 1.1 */ public class Printer { /** * Print each element in a double array. * * @param A The array t...
1,955
20.26087
79
java
sigir16-eals
sigir16-eals-master/src/utils/SortMapExample.java
package utils; import java.util.Comparator; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import java.util.Map.Entry; import java.util.TreeMap; public class SortMapExample { /** * The main method. * * @param args the arguments */ public static void main(String[] args) { T...
747
21
78
java
sigir16-eals
sigir16-eals-master/src/utils/StopwordsFilter.java
package utils; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStreamReader; import java.util.*; public class StopwordsFilter { private static HashSet<String> stopwords = new HashSet<String>(); private static boole...
1,265
24.836735
105
java
sigir16-eals
sigir16-eals-master/src/utils/TopKPriorityQueue.java
package utils; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; import java.util.Map; import java.util.PriorityQueue; import java.util.AbstractMap; import data_structure.DenseVector; /** * Using PriorityQueue to implement Mi...
2,782
27.111111
92
java
InfMax
InfMax-master/java/src/ca/ubc/InfluenceMaximization.java
package ca.ubc; import ca.ubc.algo.CelfAlgo; import ca.ubc.algo.CelfPlusAlgo; import ca.ubc.algo.EvaluateInfluenceSpread; import ca.ubc.util.Config; import ca.ubc.util.Graph; import java.io.BufferedWriter; import java.io.FileWriter; import java.io.IOException; import java.util.logging.Logger; /** * main class for r...
2,744
29.5
132
java
InfMax
InfMax-master/java/src/ca/ubc/algo/CelfAlgo.java
package ca.ubc.algo; import ca.ubc.InfluenceMaximization; import ca.ubc.model.IndependentCascade; import ca.ubc.util.CelfNode; import ca.ubc.util.Config; import ca.ubc.util.Graph; import ca.ubc.util.InfMaxUtils; import java.io.BufferedWriter; import java.io.IOException; import java.util.HashSet; import java.util.Prior...
2,701
28.369565
117
java
InfMax
InfMax-master/java/src/ca/ubc/algo/CelfPlusAlgo.java
package ca.ubc.algo; import ca.ubc.InfluenceMaximization; import ca.ubc.model.IndependentCascade; import ca.ubc.util.CelfNode; import ca.ubc.util.CelfPlusNode; import ca.ubc.util.Config; import ca.ubc.util.Graph; import ca.ubc.util.InfMaxUtils; import java.io.BufferedWriter; import java.io.IOException; import java.uti...
4,270
32.629921
108
java
InfMax
InfMax-master/java/src/ca/ubc/algo/EvaluateInfluenceSpread.java
package ca.ubc.algo; import ca.ubc.model.IndependentCascade; import ca.ubc.util.Config; import ca.ubc.util.Graph; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.HashSet; import java.util.Set; /** * Evaluating influence spread for a given seed set */ public cl...
1,359
25.153846
106
java
InfMax
InfMax-master/java/src/ca/ubc/model/IndependentCascade.java
package ca.ubc.model; import ca.ubc.util.Config; import ca.ubc.util.Graph; import ca.ubc.util.InfMaxUtils; import java.util.Arrays; import java.util.LinkedList; import java.util.List; import java.util.Queue; import java.util.Random; import java.util.Set; /** * Implement spread computation for the IC model * * TO...
5,483
25.365385
171
java
InfMax
InfMax-master/java/src/ca/ubc/tools/SeedGeneration.java
package ca.ubc.tools; import java.util.Random; /** * Generate N independent seeds */ public class SeedGeneration { public static void main(String[] args) { final long startTime = System.currentTimeMillis(); int numSeeds = 20; if (args.length > 0) { numSeeds = Integer.parseInt(args[0]); } ...
800
21.885714
66
java
InfMax
InfMax-master/java/src/ca/ubc/tools/SimplifyNodeIds.java
package ca.ubc.tools; import java.io.*; import java.util.HashMap; import java.util.Map; import java.util.logging.Logger; /** * Simplify node ids from 0 : N-1 */ public class SimplifyNodeIds { // internal Node class class Node { long oldNodeId; // input node id int newNodeId; // new node id, from 0 : N-...
3,330
25.023438
108
java
InfMax
InfMax-master/java/src/ca/ubc/util/CelfNode.java
package ca.ubc.util; import ca.ubc.algo.CelfAlgo; import java.util.Comparator; /** * Used by {@link CelfAlgo} in its priority queue for seed selection */ public class CelfNode extends Node { public static class NodeComparator implements Comparator<CelfNode> { @Override public int compare(CelfNode n1, Ce...
943
19.977778
77
java
InfMax
InfMax-master/java/src/ca/ubc/util/CelfPlusNode.java
package ca.ubc.util; import ca.ubc.algo.CelfPlusAlgo; /** * Used by {@link CelfPlusAlgo} in its priority queue for seed selection */ public class CelfPlusNode extends CelfNode { public double mg2; public int prevBest; public CelfPlusNode(int id, double mg, double mg2, int flag, int prevBest) { this.id =...
421
19.095238
78
java
InfMax
InfMax-master/java/src/ca/ubc/util/Config.java
package ca.ubc.util; import ca.ubc.InfluenceMaximization; import java.io.FileInputStream; import java.io.InputStream; import java.util.Properties; import java.util.logging.Logger; /** * Config class saves all config paramters. * TODO: Ideally, all attributes of this class should be final, unless we want to override...
4,894
29.403727
110
java
InfMax
InfMax-master/java/src/ca/ubc/util/Graph.java
package ca.ubc.util; import ca.ubc.InfluenceMaximization; import java.io.BufferedReader; import java.io.FileReader; import java.io.IOException; import java.util.ArrayList; import java.util.List; import java.util.logging.Logger; /** * A directed graph with edge probabilities */ public class Graph { private stat...
2,991
25.245614
104
java
InfMax
InfMax-master/java/src/ca/ubc/util/InfMaxUtils.java
package ca.ubc.util; import java.io.BufferedWriter; import java.io.IOException; import java.util.logging.FileHandler; import java.util.logging.Logger; import java.util.logging.SimpleFormatter; /** * Misc utils methods */ public class InfMaxUtils { private static final String TAB = "\t"; /** * log seed sel...
2,879
29
132
java
InfMax
InfMax-master/java/src/ca/ubc/util/Node.java
package ca.ubc.util; public abstract class Node { public int id; }
70
10.833333
28
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/augmentedfaces/AugmentedFaceRenderer.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
7,653
38.453608
104
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/augmentedfaces/AugmentedFacesActivity.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
14,784
41.363897
108
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/CameraPermissionHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,289
39.175439
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DepthSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
3,306
38.843373
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DisplayRotationHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,892
34.5
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/EisSettings.java
/* * Copyright 2023 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,867
33.592593
97
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/FullScreenHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,790
37.106383
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/InstantPlacementSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,036
37.433962
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/LocationPermissionHelper.java
/* * Copyright 2022 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,666
38.220588
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/SnackbarHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,749
34.9375
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/TapHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,235
30.055556
98
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/TrackingStateHelper.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
3,454
36.967033
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/BackgroundRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
12,665
38.58125
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/ObjectRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
18,249
37.50211
110
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/PlaneRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
15,897
38.645885
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/PointCloudRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
6,007
38.012987
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_faces_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/ShaderUtil.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
4,667
34.633588
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_c/app/src/main/java/com/google/ar/core/examples/c/augmentedimage/AugmentedImageActivity.java
/* * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
7,488
32.58296
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_c/app/src/main/java/com/google/ar/core/examples/c/augmentedimage/CameraPermissionHelper.java
/* * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,280
39.017544
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_c/app/src/main/java/com/google/ar/core/examples/c/augmentedimage/JniInterface.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,497
31.868421
97
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/augmentedimage/AugmentedImageActivity.java
/* * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
15,826
37.045673
108
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/augmentedimage/rendering/AugmentedImageRenderer.java
/* * Copyright 2018 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,334
40.356589
95
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/CameraPermissionHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,289
39.175439
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DepthSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
3,306
38.843373
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DisplayRotationHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,892
34.5
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/EisSettings.java
/* * Copyright 2023 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,867
33.592593
97
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/FullScreenHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,790
37.106383
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/InstantPlacementSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,036
37.433962
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/LocationPermissionHelper.java
/* * Copyright 2022 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,666
38.220588
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/SnackbarHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,749
34.9375
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/TapHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,235
30.055556
98
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/TrackingStateHelper.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
3,454
36.967033
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/BackgroundRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
12,665
38.58125
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/ObjectRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
18,249
37.50211
110
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/PlaneRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
15,897
38.645885
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/PointCloudRenderer.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
6,007
38.012987
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/augmented_image_java/app/src/main/java/com/google/ar/core/examples/java/common/rendering/ShaderUtil.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
4,667
34.633588
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/cloudanchor/CloudAnchorActivity.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
25,643
37.620482
108
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/cloudanchor/CloudAnchorManager.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
5,506
38.618705
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/cloudanchor/FirebaseManager.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
6,349
36.134503
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/cloudanchor/PrivacyNoticeDialogFragment.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
3,557
33.882353
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/cloudanchor/ResolveDialogFragment.java
/* * Copyright 2019 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to ...
2,557
34.041096
92
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/CameraPermissionHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,289
39.175439
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DepthSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
3,306
38.843373
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/DisplayRotationHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
5,892
34.5
100
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/EisSettings.java
/* * Copyright 2023 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,867
33.592593
97
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/FullScreenHelper.java
/* * Copyright 2017 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
1,790
37.106383
99
java
arcore-android-sdk
arcore-android-sdk-master/samples/cloud_anchor_java/app/src/main/java/com/google/ar/core/examples/java/common/helpers/InstantPlacementSettings.java
/* * Copyright 2020 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in ...
2,036
37.433962
100
java