query_id
stringlengths
32
32
query
stringlengths
7
129k
positive_passages
listlengths
1
1
negative_passages
listlengths
88
101
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "87cf0171d61855ca13bf5f4e817c4571", "score": "0.0", "text": "@Override\n\tprotected String getView() {\n\t\treturn ORSView.MY_PROFILE_VIEW;\n\t}", "title": "" } ]
[ { "docid": "74a4209c94e08d9f5eb0b60e580f5e04", "score": "0.6887003", "text": "@Override\r\n\tpublic void comit() {\n\t\t\r\n\t}", "title": "" }, { "docid": "b645eacb329adc01490ab5013a6c4f7f", "score": "0.673024", "text": "@Override\n\t\t\tpublic void perfom() {\n\n\t\t\t}", "titl...
518bf5364cda3c6202a1a392996f93d1
Inflate the menu; this adds items to the action bar if it is present.
[ { "docid": "3d581f8da4e634e0c085638e968bf6dd", "score": "0.0", "text": "@Override\n public boolean onCreateOptionsMenu(Menu menu) {\n getMenuInflater().inflate(R.menu.main, menu);\n return true;\n }", "title": "" } ]
[ { "docid": "4a7f83039295e93d133f65a9d6162925", "score": "0.7133835", "text": "@Override\n public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {\n if(activity!=null) {\n activity.getMenuInflater().inflate(R.menu.main, menu);\n }\n super.onCreateOptionsMenu...
28d85c5e01f2719f5b38c2375f3f1dc5
Allows to enable strict mode (disabled by default) By default, MiniMessage will try to catch some common mistakes and print helpful messages to the console instead of aborting the parse. This will lead to message that are most likely slightly broken, but don't crash your whole plugin when a user writes slightly malform...
[ { "docid": "4d0eb5d4d4f178a85864f7ad912cd749", "score": "0.49963284", "text": "@NonNull Builder strict(boolean strict);", "title": "" } ]
[ { "docid": "471890ccec33d523a8bec2f907f384ac", "score": "0.673096", "text": "void setStrictMode(boolean strictMode);", "title": "" }, { "docid": "77994130390bc0884471bb585f1375f9", "score": "0.62761396", "text": "void showStrictModeViolation(boolean on);", "title": "" }, { ...
61cd769a36e6e35705ae6a6a927cabf5
Gets the blue value of an ARGB colour int
[ { "docid": "f200bab6256e2eb1842734d910d8fe90", "score": "0.79498917", "text": "public static int getBlue(int argb) {\n\t\treturn ((argb)&255);\n\t}", "title": "" } ]
[ { "docid": "0fb6df635b424448f7251609a87f6d76", "score": "0.77755183", "text": "public static int blue(int rgb) {\n return (rgb) & 0xff;\n }", "title": "" }, { "docid": "bf8ad579a1eca441b9fbbd4a8e4ab592", "score": "0.75416195", "text": "public int blue255() {\n return...
2e76f6de4fea0e71991954bc27227414
Use ParseLgxRequestMessage.newBuilder() to construct.
[ { "docid": "a0e96d9eba8fb10221d6e66277a01aac", "score": "0.79347", "text": "private ParseLgxRequestMessage(com.google.protobuf.GeneratedMessage.Builder<?> builder) {\n super(builder);\n this.unknownFields = builder.getUnknownFields();\n }", "title": "" } ]
[ { "docid": "6ab4a3f18aeec3f38327aa4e97b6928f", "score": "0.7342517", "text": "private ParseLgxLogRequestMessage(com.google.protobuf.GeneratedMessage.Builder<?> builder) {\n super(builder);\n this.unknownFields = builder.getUnknownFields();\n }", "title": "" }, { "docid": "105e15...
875207709a8bc806a6f8511b68351bbd
optional int64 use_count = 22;
[ { "docid": "bee8489378c3852553a4000fdbe9f3c5", "score": "0.0", "text": "public Builder clearUseCount() {\n copyOnWrite();\n instance.clearUseCount();\n return this;\n }", "title": "" } ]
[ { "docid": "d2ceeac37dee1118457df0c1e41a368a", "score": "0.6925253", "text": "private void setUseCount(long value) {\n bitField0_ |= 0x00000004;\n useCount_ = value;\n }", "title": "" }, { "docid": "9d3428d3aee19b0616af9cfcf6f96631", "score": "0.6595653", "text": "public void ...
b17e399f0d4581779ad2a8b56471277b
This method was generated by MyBatis Generator. This method sets the value of the database column regys_score.cent_name
[ { "docid": "ce908b7495fc46c30256f63ed578efa9", "score": "0.5871695", "text": "public void setCentName(String centName) {\n this.centName = centName;\n }", "title": "" } ]
[ { "docid": "fb4f4d97a01d7fd495d7ee2c6b96d3b3", "score": "0.5805894", "text": "public void setScore(BigDecimal score) {\n this.score = score;\n }", "title": "" }, { "docid": "93a4a1c3470c8d86e8ee7ad800a49bb3", "score": "0.56113905", "text": "public ContainScore(String name, ...
c2b3a18cc687d8c6a43d7b868cd6a6c8
displays an intro to the game
[ { "docid": "79c82317ade65b45d09d84bb21cac82e", "score": "0.0", "text": "public static void main (String [] args){\n System.out.println(\"You are now playing a memory matching game. Your goal is to find matches\");\r\n System.out.println(\"within the game board and they will stay face up.\");\r...
[ { "docid": "697396e81afd5b2b7242dc6b25af0c04", "score": "0.83864415", "text": "public void displayIntro() {\n\t\tdisplay.clear();\n\t\tdisplay.drawString(\"Welkom! Ik ben uw\", LCD_LINKS_UITGELIJND, LCD_EERSTE_REGEL);\n\t\tdisplay.drawString(\"Quizmaster!\", LCD_LINKS_UITGELIJND, LCD_TWEEDE_REGEL);\n\t\...
03e188e3d22df00d008b87cb0f2eb251
Instantiates a new cache of key type and value type references.
[ { "docid": "cd4dce2b62273fd0b8cc681561c3fdb7", "score": "0.77108544", "text": "public ReferenceCache(Type keyType, Type valueType) {\n this(keyType, valueType, 0);\n }", "title": "" } ]
[ { "docid": "d6513633e8b0487969514257d4073584", "score": "0.69959646", "text": "public ReferenceCache(Type keyType, Type valueType, int initialSize) {\n keyFactory = toFactory(keyType);\n valueFactory = toFactory(valueType);\n lookupFactory = new HardReferenceFactory();\n cach...
9bdb70cf1b6dc5daa05076d63807cb09
Env where = oldEnv; check over attributes
[ { "docid": "fa13452d3814c9a607c396821171eb67", "score": "0.53265977", "text": "private Env _buildEnvClass(ASTClass _class, Env where){\n\t\tfor (ASTAttribute a : _class.getAttributes()) {\n\t\t\t//a.setTimeCritical(\n\t\t\t//\t\ttypeTimeRelevant.stream().anyMatch(type -> (type.equals(a.getType())))\n\t\...
[ { "docid": "81b1c457863d2c6a591facfe0b31b078", "score": "0.5497604", "text": "public VarEnv check(Context ctxt, VarEnv env) {\n for (int i=0; i<used; i++) {\n env = stmts[i].check(ctxt, env);\n }\n return env;\n }", "title": "" }, { "docid": "b1152ec9ecb9744...
b85eade4e88076f20e38a170532181f0
Get the time to live for a key
[ { "docid": "1082f3bb49c3602dd983b408a3c1ac53", "score": "0.0", "text": "public IntegerReply ttl(Object key) throws RedisException {\n return (IntegerReply) execute(TTL, TTL_BYTES, key);\n }", "title": "" } ]
[ { "docid": "933cdb78e2825b785adc7b2eb11a9fcb", "score": "0.7517839", "text": "long getTimeToLive();", "title": "" }, { "docid": "d28b30b18f08a6bdcba96ba929c1fcbb", "score": "0.70295376", "text": "String getKvsCacheMaihamadbTtl();", "title": "" }, { "docid": "3b49eb89a690b...
1e1f72fa6381d67991774b4778e869b5
getting the total count of letters so that we can createa box +13 for extra letters
[ { "docid": "9bdb384eff8902abcdb0dc3e8c475d41", "score": "0.0", "text": "public void Error(String message) {\n int count=message.length()+13;\n \n //printing the above line\n for(int i=0;i<count;i++)\n System.out.print(\"*\");\n \n //printing the messa...
[ { "docid": "c205cebb97d558b37c9e8a5a76b51f43", "score": "0.737251", "text": "int getCharCount();", "title": "" }, { "docid": "78157ab61372ae599f07d575f9e9fd19", "score": "0.7344721", "text": "public int countLetters() {\n return word.length();\n }", "title": "" }, {...
45de1bc9820417a36880aaa6a4f24ad4
$ANTLR end synpred37_InternalHLScel $ANTLR start synpred38_InternalHLScel
[ { "docid": "0c1adfd783ce0d25c67dec393e03adad", "score": "0.6431787", "text": "public final void synpred38_InternalHLScel_fragment() throws RecognitionException { \n // ../org.cmg.resp.xtext.hlscel/src-gen/org/cmg/resp/xtext/hlscel/parser/antlr/internal/InternalHLScel.g:5568:5: ( 'finally' )\n ...
[ { "docid": "153ad823f0ff951ba6843ae60cca15ff", "score": "0.7240556", "text": "public final void synpred36_InternalHLScel_fragment() throws RecognitionException { \n // ../org.cmg.resp.xtext.hlscel/src-gen/org/cmg/resp/xtext/hlscel/parser/antlr/internal/InternalHLScel.g:5447:2: ( 'extends' | 'st...
16dd8511ec04d876767f1af6549614a7
Creates a new user account with the given properties
[ { "docid": "09c639d793404a92f916e549604fc9dc", "score": "0.7755903", "text": "User createUser(CreateAccountRequestContract contract) throws EmailAlreadyInUseException, InvalidPropertyException;", "title": "" } ]
[ { "docid": "1986a56de2d8c2febc0a9c7313baff06", "score": "0.7463761", "text": "public void createUser(String login, String lastName, String firstName, String accountNumber, String phone, String email);", "title": "" }, { "docid": "a0c0291e745b58af99e00da86517d235", "score": "0.7443803", ...
bd9c8e370ec1023f75a4e82c18034c79
IntervallNumber: min=INT '..' (maxNumber=INT | maxUnlimited?='');
[ { "docid": "fde3fd7ea8aaa795a77a717ff5aa14b7", "score": "0.0", "text": "public IntervallNumberElements getIntervallNumberAccess() {\n\t\treturn pIntervallNumber;\n\t}", "title": "" } ]
[ { "docid": "c33dab6255b1ec886fc0f1ce5e9d9f8e", "score": "0.6649116", "text": "private static int getRangedInteger(String prompt, int min, int max) {\n\t\tint answer = getInteger(prompt);\n\t\twhile (answer > max || answer < min) {\n\t\t\tanswer = getInteger(\"Please enter a number from \" + min + \" to ...
a2b6dea36b09b0ec660b98a0c964b23e
if (isEmpty()) return null; return set.toList().filter(x > x.key == k).isEmpty() ? null : set.toList().filter(x > x.key == k).head().value;
[ { "docid": "cd9b070483a0bc750c1b09353ec3e02d", "score": "0.7622885", "text": "@Override\n public V get(K k) {\n return this.contains(k) ? set.toList().filter(x -> x.key.equals(k)).head().value : null;\n }", "title": "" } ]
[ { "docid": "86e88268b4c33d1b3154f1b8b92294c5", "score": "0.6280546", "text": "private Value get(Node x, Key key) {\n while (x != null) {\n int cmp = key.compareTo(x.key);\n if (cmp < 0) x = x.left;\n else if (cmp > 0) x = x.right;\n else ...
79f16cb59ef168922180651d823a9a3b
Sets the observable parent.
[ { "docid": "6cfce72838420c433b7cd486d5779bb4", "score": "0.79318213", "text": "public void setParent(IObservable<HandDetectionEventArgs> parent) {\n\t\tthis.parent = parent;\n\t}", "title": "" } ]
[ { "docid": "dc7063d6f7ca6c264ef92a5e216e4c1d", "score": "0.7047224", "text": "public void setParent( MutableContainer parent );", "title": "" }, { "docid": "fe59ad639a08bb17b28444b2bb6e2573", "score": "0.69765013", "text": "protected void setParent(Group parent) {\n\t\tthis.parent = ...
75b3095d158ac4932ca60803f650705f
[TrainingPointsNS] phmin=00 00 00 00 22 00 phmax=40 40 40 40 40 40 trmin=00 00 00 00 00 00 trmax=13 13 13 13 13 13 camin=00 00 00 00 00 00 camax=13 13 13 13 13 13 comin=00 00 00 00 00 00 comax=13 13 13 13 13 13 pimin=00 00 00 00 00 00 pimax=13 13 13 13 13 13
[ { "docid": "8086f5a688da9a4f5c5704f5fa86d4cd", "score": "0.0", "text": "public void testCheckDistribution() {\n\t\tBridgeDealParam param = new BridgeDealParam();\n\t\tparam.ptsHonMin[0] = 0; param.ptsHonMin[1] = 0; param.ptsHonMin[2] = 0; param.ptsHonMin[3] = 0; param.ptsHonMin[4] = 22;param.ptsHonMin[5...
[ { "docid": "dd36d1005d30209cf9784e7c22d57755", "score": "0.56102914", "text": "private void getInputParameters(){\n\t\t//SIMULATION PARAMATERS\n\t\tip.STOP_TIME.value= simulationParamaters.STOP_TIME.getValue();\t\n\t\tip.ENSEMBLE_SIZE.value= simulationParamaters.ENSAMBLE_SIZE.getValue();\t\n\t\tip.RANDO...
10fb8c9e05a3879e703d4cfa87bc7724
new entity and save it.
[ { "docid": "afe9b2381f81ebdfa9d9bb1107c0e66e", "score": "0.0", "text": "@Test\n\tpublic void crudEntity() {\n\t\tResource entity = SecurityData.getRandomResource();\n\t\tentityDao.save(entity);\n\t\tflush();\n\n\t\t//find entity.\n\t\tResource entityFromDB = entityDao.findUniqueBy(\"id\", entity.getId()...
[ { "docid": "c69ea05f2aeac7caeaa59ae34691dcdf", "score": "0.7547819", "text": "E save(E entity);", "title": "" }, { "docid": "dd3bf8c5f80ee69a8a156111e6015f8d", "score": "0.75006706", "text": "public void createEntity() {\n\t\t\r\n\t}", "title": "" }, { "docid": "88529e911...
cae6ac00a378d6a116691d2f33762051
Return the size, in bytes, of the field 'dest'
[ { "docid": "cb437fccb04e7d641d8c591f47879f0e", "score": "0.778805", "text": "public static int size_dest() {\n return (8 / 8);\n }", "title": "" } ]
[ { "docid": "a7917f77be7c877bbdcd6e506c7ebe3d", "score": "0.68028", "text": "public int getProcessedDataLength() { return destPos; }", "title": "" }, { "docid": "4cb49205575b9c08fe4092dbdca57b06", "score": "0.6594235", "text": "public abstract String get_size(DataRequest source) throw...
9a990c4cecd1a397fac556efc0a7dcfc
This method was generated by MyBatis Generator. This method sets the value of the database column start_user_fee_info.user_fee
[ { "docid": "e390738cf87bae28f364c039dbd176ca", "score": "0.6870927", "text": "public void setUserFee(BigDecimal userFee) {\n this.userFee = userFee;\n }", "title": "" } ]
[ { "docid": "e9853e178ff02d824cf6e1b58d8b3327", "score": "0.632533", "text": "public void setFee(BigDecimal fee) {\n this.fee = fee;\n }", "title": "" }, { "docid": "3be7c94f8872d6bd4e433fc32eefb037", "score": "0.61950034", "text": "public void setFeeAmount(MoneyAmount feeAm...
fb1ff56bde57ca093bf92800add380be
validare campuri forma curenta
[ { "docid": "b6de65645931d9332f230cb1f2adabd3", "score": "0.0", "text": "protected abstract boolean validate();", "title": "" } ]
[ { "docid": "fc16e1b358108faed3b09da5cf780356", "score": "0.6873615", "text": "private boolean validarCampos() {\r\n\t\tif (cedula.equals(\"\") || nombre.equals(\"\") || apellido.equals(\"\") || telefono.equals(\"\")) {\r\n\t\t\treturn false;\r\n\t\t}\r\n\t\treturn true;\r\n\t}", "title": "" }, {...
fe21192459cfbdeb6e6eed3eae6cce91
Encodes a tree to a single string.
[ { "docid": "69ddf83ab93e8ce0be2a80f49422af42", "score": "0.5713583", "text": "public String serialize(TreeNode root) {\n StringBuilder stringBuilder = new StringBuilder(\"[\");\n Queue<TreeNode> queue = new LinkedList();\n queue.offer(root);\n while (!queue.isEmpty()) {\n ...
[ { "docid": "0def98db9e6759a101ec776292d0e280", "score": "0.6842415", "text": "public String tree2str(TreeNode t) {\n\n\t\tString root = \"\";\n\t\tif (t == null)\n\t\t\treturn root;\n\t\tString left = tree2str(t.left);\n\t\tString right = tree2str(t.right);\n\t\tif (left == \"\" && right != \"\") {\n\t\...
f6be38a20f0ff7e8c8f6e9e464fe3b8f
optional string user_name = 2;
[ { "docid": "6960015190d3e1c3106c585c9a70f41f", "score": "0.0", "text": "public Builder setUserName(\n java.lang.String value) {\n if (value == null) {\n throw new NullPointerException();\n }\n bitField0_ |= 0x00000002;\n userName_ = value;\n onChanged();\n retur...
[ { "docid": "ec68d62d9a2d1fbe511dfab4fe1b2925", "score": "0.71296394", "text": "public void setUserName(String userName);", "title": "" }, { "docid": "fdd47345e1850d730a73602070549221", "score": "0.6954381", "text": "void setUserName(String userName);", "title": "" }, { "d...
170dee440c9f225e7dd15a779b633a19
mapping m = new mapping();
[ { "docid": "491a8ddc4cfc4955238b83a1b376e762", "score": "0.0", "text": "public void plot_mandelbrot(Graphics g) {\n Complex compl = new Complex();\r\n Fractal frac = new Fractal();\r\n\t\t\r\n\t\tregion_y = frac.getComplex_plus_boundry() - frac.getComplex_min_boundry() ;\r\n region...
[ { "docid": "c5303703f7024f6f96569a9eaee1d922", "score": "0.7146377", "text": "Map_db() {;}", "title": "" }, { "docid": "b608689a1fbbc46ba9cc2f432733f619", "score": "0.7008743", "text": "public void map();", "title": "" }, { "docid": "8c4c0c430ca1f3b4ecc339da393ff7e3", ...
6904f3fcbb5a2e63895a350c71927871
Frequencies in a sorted array. Prints the frequency of occurence of all elements of array.
[ { "docid": "1cc4577adb334d4ece86e7d35aa1b975", "score": "0.7671302", "text": "public static void frequency(int arr[]) {\n\n int count = 1;\n for (int i = 0; i < arr.length - 1; i++) {\n\n if (arr[i] == arr[i + 1]) {\n count++;\n\n if (i == arr.lengt...
[ { "docid": "fd8daa7c6427b94226bcd44c33593a6f", "score": "0.79748297", "text": "private static void printFrequencies(int[] arr) {\n HashMap<Integer,Integer> hm = new HashMap<>();\n\n for(int i=0; i<arr.length; i++) {\n if(hm.containsKey(arr[i])) { //if element is already present ...
f80e5c2b67dca85f6e983b562b7ef13f
Test parsing of the CommunicationRequest FHIR resource.
[ { "docid": "e6910c7a32d7ae3d1feffe13aab24495", "score": "0.75307506", "text": "@Test\n public void parseCommunicationRequest() throws Exception {\n testParse(\"communicationrequest-example\", CommunicationRequest.newBuilder());\n testParse(\n \"communicationrequest-example-fm-solicit-attac...
[ { "docid": "25aaca005884209ae22314ebe7cecd40", "score": "0.64364195", "text": "@Test\n public void parseCommunication() throws Exception {\n testParse(\"communication-example\", Communication.newBuilder());\n testParse(\"communication-example-fm-attachment\", Communication.newBuilder());\n tes...
ebe4726c056ce28357bcc6fb1f951ab3
describes the steps needed to progress from the current state to the wanted state. Here, in open loop mode, we presume that the transition is instantaneous.
[ { "docid": "c8018d2da0e2581a5a97b9fadee52e4e", "score": "0.0", "text": "private SystemState defaultStateTransfer()\n {\n switch (mWantedState)\n {\n case FORWARD_INTAKE:\n return SystemState.FORWARD_INTAKING;\n case REVERSE_INTAKE:\n r...
[ { "docid": "a7e072817fe9d4416c2afcc5d8f03678", "score": "0.6603294", "text": "long getSteps();", "title": "" }, { "docid": "3416dba38bf2e0e81097f7e8cbd597cb", "score": "0.6479366", "text": "public abstract void nextStep(int delay, String label);", "title": "" }, { "docid"...
9bf7b6410307ef8d0633102adfaf8c85
String split on multicharacter delimiter.
[ { "docid": "420893cfb7cc1b88a1ef787198b095e6", "score": "0.57472396", "text": "private static String[] splitString(String stringToSplit, String delimiter, boolean takeDelimiter)\n\t{\n\t\tString[] aRet;\n\t\tint iLast;\n\t\tint iFrom;\n\t\tint iFound;\n\t\tint iRecords;\n\t\tint iJump;\n\n\t\t// return ...
[ { "docid": "df93631f9b53f403240e490c74108b5c", "score": "0.6839391", "text": "public static Vector<String> splitString(String str, String delimiter) {\n Vector<String> strVec = new Vector<>();\n int p = 0, dp;\n do {\n dp = str.indexOf(delimiter, p);\n if (dp =...
a82763ef2f691b8c14cefafb1e3d722f
Created by yuanjie.fang on 2018/2/22.
[ { "docid": "fea2e7593e3dec86c493632dcc9dab3c", "score": "0.0", "text": "public interface Visitor {\n void visit(NodeA node);\n void visit(NodeB node);\n}", "title": "" } ]
[ { "docid": "35e5940d13f06d1f0d6a21cf2739c70a", "score": "0.6238632", "text": "public function() {}", "title": "" }, { "docid": "c4efc9f9911178a27ec9261384d5f141", "score": "0.61719257", "text": "public void mo12644zk() {\n }", "title": "" }, { "docid": "5c8e848472f...
5a527bea2e47cbbdb9137c6c01fd0aed
listTasks = getListTask(new String(con.getResponseData()));
[ { "docid": "6eba0de0983127b2b780318b76cc7875", "score": "0.0", "text": "@Override\n public void actionPerformed(NetworkEvent evt) {\n JSONParser jsonp = new JSONParser();\n try {\n //renvoi une map avec clé = root et valeur le reste\n ...
[ { "docid": "803fd0b0bbe931cb30a0ba9e17a236be", "score": "0.68951213", "text": "public List<String> getTasks();", "title": "" }, { "docid": "0c1e487e173574b01b1dbe0496eee47b", "score": "0.68409437", "text": "public List<Task> getTasks();", "title": "" }, { "docid": "bf7caa...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "be38a6e51d1fbed6f85de88b3affd7ae", "score": "0.0", "text": "@Override\n\tpublic void mouseMoved(MouseEvent e) {\n\t\tmx = e.getX();\n\t\tmy = e.getY();\n\t\t\n\t\tenCaja0 = false;\n\t\tenCaja1 = false;\n\t\tenCaja2 = false;\n\t\tenCaja3 = false;\n\t\t\n\t\tmenu.cambiarXY(mx, my);\n\t\t\n\t\t...
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
b34fd32eb8e4fadeb71a92f58353ff66
test created by: Nadia Galakhova test for method setNameOfDiscipline
[ { "docid": "6346f4851f994056421a92f29c084da0", "score": "0.67151034", "text": "@Test\n public static boolean TestSetNameOfDiscipline5(){\n Discipline d = new Discipline();\n boolean result = true;\n\n String[] testData = {\"A\",\"B\",\"C\",\"D\",\"E\",\"F\",\"G\",\"H\",\"I\",\"J\...
[ { "docid": "cce64f321abe4c4b379dd019435b62ad", "score": "0.7512976", "text": "@Test\n public static boolean TestSetNameOfDiscipline3(){\n Discipline d = new Discipline();\n String testData = \"Test\";\n d.setNameOfDiscipline(testData);\n boolean result = d.getNameOfDiscipl...
cd92952ef2dfa08e3d13b1a700c2daa9
Takes a string and encodes it into a 32 bit long sequence The key is as follows: A = 00 T = 11 C = 01 G = 10 Unused beats will be leading 0's
[ { "docid": "06d53c422969933958cc101f4036c1a5", "score": "0.5907417", "text": "public static long encodeSequence(LinkedList<Character> window) {\r\n\t\t\r\n\t\tIterator<Character> it = window.iterator();\r\n\t\tStringBuilder sequence = new StringBuilder();\r\n\t\twhile(it.hasNext()) {\r\n\t\t\tsequence.a...
[ { "docid": "fa30b2a4c90729a0285f4c8840cd055d", "score": "0.69927347", "text": "public static long encodeSequence(String s) {\r\n\t\t\r\n\t\tchar[] array = s.toCharArray();\r\n\t\tStringBuilder str = new StringBuilder();\r\n\t\tfor(int i=0; i<array.length; i++) {\r\n\t\t\tchar atcg = Character.toUpperCas...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "c6814904a042ce648d6888abbe25cc80", "score": "0.0", "text": "@Override\n\t\t\tpublic void onClick(View v) {\n\t\t\t\tclickTextTab(0);\n\t\t\t}", "title": "" } ]
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
e4e1440fb63447cea358f0dcb9a019e4
CM45272 Set ListPrint demand.
[ { "docid": "22b46a89db4a2f76393998fcab41ac3b", "score": "0.0", "text": "public void setListRequestFlag(String arg)\n\t{\n\t\twListRequestFlag = arg;\n\t}", "title": "" } ]
[ { "docid": "baa4d9026e6a8d13fd11fdf601bde717", "score": "0.5701722", "text": "public void setDisplayList(int list)\r\n\t{\r\n\t\tsuper.display_list = list;\r\n\t\tcur_disp = list;\r\n\t}", "title": "" }, { "docid": "992eb0650f38989865218df994a51a32", "score": "0.5496782", "text": "pu...
2148a0559abe6075f22b445c51b007ea
Creates a new TaskRunnerPanel.
[ { "docid": "c1c9fc2233e61ad4b0dce92e254d6962", "score": "0.750486", "text": "public TaskRunnerPanel() { }", "title": "" } ]
[ { "docid": "7e3d2a0a53b07e2fb3ccce5dedeb3ce2", "score": "0.73720545", "text": "public TaskRunnerPanel(View aView, String aTitle) { super(new TaskMonitorPanel(aView, aTitle)); }", "title": "" }, { "docid": "c40378a2591d1c0d2ec0718ad998ff3d", "score": "0.7127369", "text": "public Task...
50dfc2eedc2cd6f5c8b90152fa91f4c5
/ Test method: "createTurn()" game isn't over
[ { "docid": "b0edeb6552e07f399b63f0b637fccd9f", "score": "0.81036526", "text": "@Test\r\n public void createTurnGameNotOverTest() {\r\n Turn turn = new Turn(testGame1, testUser1, new Date(), Pieces.KING, \"test f1\", \"test e1\", \"fen\");\r\n expect(mockTurnDao.createTurn(eq(turn))).and...
[ { "docid": "bb1d3bfa3baaa65a7843eb56b5e7637b", "score": "0.793245", "text": "@Test\r\n public void createTurnGameOverTest() {\r\n Turn turn = new Turn(testGame1, testUser1, new Date(), Pieces.KING, \"new f1\", \"new e1\", \"new fen\");\r\n expect(mockTurnDao.createTurn(eq(turn))).andRet...
d1b523daa7fb20dff20d19061c85639d
setter for lemma sets
[ { "docid": "748edbd40717b1032532620c8f894356", "score": "0.52094626", "text": "public void setLemma(String v) {\n if (TokenTreetagger_Type.featOkTst && ((TokenTreetagger_Type)jcasType).casFeat_lemma == null)\n jcasType.jcas.throwFeatMissing(\"lemma\", \"fr.lirmm.advanse.chv.definitionMining.uima...
[ { "docid": "899dea1044b029337738a1eb148e577f", "score": "0.5861852", "text": "void set(E... synonyms);", "title": "" }, { "docid": "9aaa31d5f6a7c15e8f0421b40edda819", "score": "0.58475184", "text": "public void setSets(List<SetType> list) {\r\n setList = list;\r\n }", "...
4ff6a4c905c7b40218c4967c142c0368
This method allows the player to give an item to another character
[ { "docid": "2de09e01c16173b6ce746c713bbfc70f", "score": "0.69112736", "text": "@Override\n public boolean execute(Command command, Player player, HashMap<String, Character> characters, HashMap<String, Monster> monsters)\n {\n // Check if either the second or the thir...
[ { "docid": "1a6faf6a7eb17b7f091f494031dd88a2", "score": "0.76261026", "text": "private void giveItem(Command command) {\n if(!command.hasSecondWord()) {\n // if there is no second word, we don't know what to give...\n System.out.println(\"Give what?\");\n return;\...
afa9021364a5ce33dea757f178890387
Creates a empty database on the system and rewrites it with your own database.
[ { "docid": "a0f1fc79537001e7834b5f483e3ed644", "score": "0.7220636", "text": "public void createDatabase() throws IOException {\n boolean dbExist = checkDatabase();\n if(dbExist){\n //do nothing - db already exists\n Log.e(TAG, \"** db already exists\");\n }els...
[ { "docid": "bedc3f09dae556247fd0835a5ab9dd3c", "score": "0.7834086", "text": "private void createDatabase() throws IOException{\n \tif(checkDatabase()){\n \t\t// If database already exists\n \t\tSystem.out.println(\"Database already exists\");\n \t}else{\n \t\t//By calling this method...
d809421977d3722cdc501ed776a3c925
Gets all of the Projects from the projects table.
[ { "docid": "c2f2a4f889b05df5503fd8cb5d412de4", "score": "0.0", "text": "public Cursor getProject(DatabaseOperations dop){\n SQLiteDatabase SQ = dop.getReadableDatabase();\n String theQuery = \"SELECT * FROM \"+ TableData.TableInfo.PROJECT_TABLE+\" ORDER BY \"+TableData.TableInfo.PROJECT_NA...
[ { "docid": "48ccbc97d54e1aeac5b35a7df6c8e389", "score": "0.8275089", "text": "public List<Project> getAll() {\n String sql = \"SELECT * FROM projects\";\n\n List<Project> projects = new ArrayList<>();\n\n Connection connection = null;\n PreparedStatement statement = null;\n\n...
203bc75bb0e3575d02c79138a8af82e9
Created by zoupeng on 16/7/5.
[ { "docid": "da21e48324b8ccc512009ce179da1539", "score": "0.0", "text": "public interface CommandExecutor {\n /**\n * 获取默认的执行实例\n * @return\n */\n Execution getDefaultExecution();\n\n /**\n * 执行command,使用默认的执行实例\n * @param command\n * @param <T>\n * @return\n */\n...
[ { "docid": "ffe5fe3cec40acf4b0b07ea257dfa06a", "score": "0.6848005", "text": "private void apparence()\r\n\t\t{\r\n\r\n\t\t}", "title": "" }, { "docid": "838a915c9ea69d56cc37df198cff9cb2", "score": "0.6382461", "text": "@Override\n\t\t\t\tpublic void pintar() {\n\t\t\t\t\t\n\t\t\t\t}...
7c1cd0465f707f24a4782bc71251c841
Adds a Container to the Set containers. Returns true, if the operation was successful
[ { "docid": "2b9a4c220d4dbd734568452f5d7f7f48", "score": "0.69853646", "text": "public boolean createContainer(Container container, User user) {\r\n\r\n\t\treturn containers.add(container);\r\n\r\n\t}", "title": "" } ]
[ { "docid": "fa462b1641fa63233d14be49b3857c90", "score": "0.719922", "text": "public boolean addContainer(String containerName){\n\n if(!hasContainer(containerName)){\n inventory.put(containerName, new ArrayList<Item>());\n return true;\n }\n return false;\n ...
f1f5170c7a94b37c7f373ba5d71ca05c
funcion booleana fin programa
[ { "docid": "e8b5fd53969fc07825489967bd63a184", "score": "0.6262063", "text": "public static boolean opcion (boolean o) {\r\n\t\tif(o) {\r\n\t\t\treturn o = true;\r\n\t\t}else {\r\n\t\t\tSystem.out.println(\".........Eso es todo !!!........\");\r\n\t\t\treturn o = false;\r\n\t\t}\r\n\t}", "title": ""...
[ { "docid": "1f46f99ac1bedef9526711b3f19cabbc", "score": "0.7131511", "text": "private boolean Cadastro() {\n\t\treturn false;\n\t}", "title": "" }, { "docid": "37dee15446512600feb88f75d2c2133f", "score": "0.7068157", "text": "public abstract boolean puedeHaberPastel();", "title":...
d718e350d3e57639d37f1597a2880726
System.out.println("create new mask for dst="+dst);
[ { "docid": "385eadde0d1b6007b535be551de7005a", "score": "0.654834", "text": "public ObfuscationMask createNewObfuscationMask(long dst) {\n\t\tObfuscationPolicy oPolicy = new ObfuscationPolicy();\n\t\t\n\t\tObfuscationMask oMask = new ObfuscationMask();\n\t\toMask.setDst(dst);\n\t\t\n\t\t// choose which ...
[ { "docid": "ded859fe072b8a38ec931eb053b0800a", "score": "0.57031554", "text": "public int getMask();", "title": "" }, { "docid": "08e09e0d8ee100fec0df1746afbe7020", "score": "0.56768274", "text": "public MarvinImageMask() {\n arrMask = null;\n }", "title": "" }, { ...
cd14be3a06191db454f580359cb1d96a
Test case number: 164 /Coverage entropy=0.4089388914174921
[ { "docid": "843da3a5e41bc1b4dc9fd716135e9f42", "score": "0.0", "text": "@Test(timeout = 4000)\n public void test164() throws Throwable {\n XPathLexer xPathLexer0 = new XPathLexer(\"$O+\\\"y.\");\n Token token0 = xPathLexer0.nextToken();\n assertEquals(26, token0.getTokenType());\n ...
[ { "docid": "8f7bb41e96af226e708f0cd19c334ab9", "score": "0.68053025", "text": "public long getCoverage();", "title": "" }, { "docid": "b69e946924bedc7e78295f5523c1e76d", "score": "0.6685308", "text": "@Test(timeout = 4000)\n public void test14() throws Throwable {\n FileSyste...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "d2e97a14e1ce7221e02df853abcc6534", "score": "0.0", "text": "@Override\n\tpublic void onClick(View v) {\n\t\tswitch (v.getId()) {\n\t\tcase R.id.backbtn:\n\t\t\tfinish();\n\t\t\tbreak;\n\t\tcase R.id.rescanbtn:\n\t\t\tIntent intent = new Intent(\"com.google.zxing.client.android.SCAN\");\n\t\t...
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
23890c7e54fe748231a1883eedc39eaa
function to get searched bgroup donors
[ { "docid": "96ff054e917c15172ebaf527237c8818", "score": "0.70473135", "text": "private void getDonors(String searchGroup) {\r\n progressBar.setVisibility(View.VISIBLE);\r\n\r\n Query query = mFireStore.collection(Constants.COLLECTION_DONORS)\r\n .whereEqualTo(Constants.PROFI...
[ { "docid": "3fc3c9341ce67d27a0ac3b5f389658ea", "score": "0.5736881", "text": "public Donor findDonor(String name) //finds donor in classes \r\n {\n SystemDonation s=SystemDonation.getInstance();\r\n for(int i=0;i<s.overAllDons.size();i++)\r\n {\r\n ...
6d093c195d6282cd479107e0bce66cfc
Builds a query string for the specified table.
[ { "docid": "8007748495d162e3ea0ccee8a39270a0", "score": "0.5620436", "text": "@SuppressWarnings({\"cast\", \"unchecked\", \"rawtypes\"})\n void buildQueryStrings(TableInfoImpl<T> table, List<StringBuilder> builders) {\n final Map<String, Triple<Object, CQLDataType, TypeCodec<?>>> columns;\n\n try...
[ { "docid": "c7d6031f6029de73985982ec1a616ac7", "score": "0.7639358", "text": "private void buildQuery(String tableName) {\n sql.append(\"Select * from \" + tableName);\n }", "title": "" }, { "docid": "76bfd57f0b579db11d942793e5d3df6e", "score": "0.69955915", "text": "public...
fea92b5442550ed4568872ce07824018
Getter for WETRN.MRKT_LCL_BILNG_OFFR_TYP.SEQ_NR. Sequence number. The sequence for displaying the values in drop down lists. This value is only unique within the market (not across the whole table). The values do not need to be contiguous.
[ { "docid": "0670766cc0c2ff5db22241801d645b96", "score": "0.6211426", "text": "public Byte getSeqNr() {\n\t\treturn (Byte) getValue(4);\n\t}", "title": "" } ]
[ { "docid": "075eb5c9147be8e2ab2a61e3031417dd", "score": "0.72055537", "text": "public Long getSEQ_NBR() {\n return SEQ_NBR;\n }", "title": "" }, { "docid": "eb54829e9da8063d5ccc886264bcdf56", "score": "0.6599897", "text": "public int getSeqNo() {\n\t\tInteger ii = (Integer)...
4c9524f4f6e52658562076fcc55e0b3b
The Unix file mode in the form "nnnn". For example, 0666 represents the default file mode inside the file share. The default value is 0666.
[ { "docid": "86f912e74e47678cd8b56022210c4d84", "score": "0.5906304", "text": "public void setFileMode(String fileMode) {\n this.fileMode = fileMode;\n }", "title": "" } ]
[ { "docid": "8a9dc089e038ae54eff3337749f74331", "score": "0.6279232", "text": "public String getFileMode()\n {\n return this.fileMode;\n }", "title": "" }, { "docid": "00e8c6ecf5f5f04bfb909f3fa6954001", "score": "0.62202144", "text": "public String getFileMode() {\n ...
144644b05ae1e11a45ab996831568098
Test case for deleted access propagation
[ { "docid": "7d6cc0f98a192d648b55f3e09bc6ee20", "score": "0.72668576", "text": "@Test\n public void checkPropagationOfDeletedAccess() {\n Role role = null;\n Role template1 = null;\n Role template2 = null;\n Role template3 = null;\n try {\n OBContext.setAdminMode(true);\n // Cre...
[ { "docid": "97371ff24adc4ec63bdcaa08eef6d928", "score": "0.66822165", "text": "@SuppressWarnings(\"unchecked\")\r\n\t@Test\r\n\tpublic void testDelete() {\r\n\t\tsuper.testDelete(createNewEntityWithoutData(),\r\n\t\t\t\t(GenericDAO) componentDAO);\r\n\t}", "title": "" }, { "docid": "af46f64f...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "7383a7390697ec6eed422ec0023b74cc", "score": "0.0", "text": "@Override\n\tpublic String getJar() {\n\t\treturn null;\n\t}", "title": "" } ]
[ { "docid": "1acc57d42c31dee937ac33ea6f2a5b0b", "score": "0.6836411", "text": "@Override\r\n\tpublic void comer() {\n\t\t\r\n\t}", "title": "" }, { "docid": "33d41636b65afa8267c9085dae3d1a2d", "score": "0.6679176", "text": "private void apparence() {\r\n\r\n\t}", "title": "" }, ...
8fa2b74a9af3d9c1fcc359245189f3af
jhipsterneedleentityaddfield JHipster will add fields here
[ { "docid": "823574a9919d9ee0ef0470408b7a800c", "score": "0.0", "text": "public Long getId() {\n return id;\n }", "title": "" } ]
[ { "docid": "99848e328ce14baa40f1942b2f7576d5", "score": "0.684529", "text": "EntityField createEntityField();", "title": "" }, { "docid": "6180865e2b28f25a1a578f4fd53eb9be", "score": "0.6454226", "text": "RepositoryFields createRepositoryFields();", "title": "" }, { "doci...
e0ac88b4c455296ee4e185b615b5a312
repeated .gameserver.network.protos.common.Msg_G2C_Ranking.Proto_legionInfo legionInfo = 4;
[ { "docid": "d03eb806aaa562be98106bf9b7e127e9", "score": "0.6936921", "text": "public gameserver.network.protos.common.ProRanking.Msg_G2C_Ranking.Proto_legionInfoOrBuilder getLegionInfoOrBuilder(\n int index) {\n return legionInfo_.get(index);\n }", "title": "" } ]
[ { "docid": "5004beae7aecc3d82795c87601dc3f80", "score": "0.74432606", "text": "gameserver.network.protos.common.ProRanking.Msg_G2C_Ranking.Proto_legionInfo getLegionInfo(int index);", "title": "" }, { "docid": "9bef7157ce658cbaf6cb49cbcd58b3a3", "score": "0.71032786", "text": "gamese...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "58792cfe9984b9d69d7de4faccde11d7", "score": "0.0", "text": "@Override\n\t\t\t\t\tpublic void onSuccess(int arg0, Header[] arg1, byte[] arg2) {\n\t\t\t\t\t\tLog.e(\"json\", \"\" + new String(arg2));\n\t\t\t\t\t\tRegisterBean bean = new Gson().fromJson(\n\t\t\t\t\t\t\t\tnew String(arg2), Regis...
[ { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n }", "title": "" }, { "docid": "fd7df110e087032be8c98522c4493f41", "score": "0.6681592", "text": "@Override\n public void otvori() {\n ...
6422054e215c1afc92423ccdd84155aa
To check if one path exists
[ { "docid": "97ed733b92d28d293540a27374fdfba4", "score": "0.0", "text": "public int hasPathSum(TreeNode A, int B) {\n if(A == null)\n return 0;\n\n if(A.left == null && A.right == null && A.val == B)\n return 1;\n\n return (hasPathSum(A.left, B - A.val)| hasPath...
[ { "docid": "ad9d8a8fda55fab900b1e60702005ac8", "score": "0.83416265", "text": "boolean hasPath();", "title": "" }, { "docid": "ad9d8a8fda55fab900b1e60702005ac8", "score": "0.83416265", "text": "boolean hasPath();", "title": "" }, { "docid": "ad9d8a8fda55fab900b1e60702005a...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "17a43906523d55a8fe34ea8c81fef716", "score": "0.0", "text": "@Override\r\n\tpublic View getView(final int position, View convertView, ViewGroup parent) {\n\t\tViewHolder holder = null;\r\n\t\tif (convertView == null) {\r\n\t\t\tholder = new ViewHolder();\r\n\t\t\tLayoutInflater inflater = (La...
[ { "docid": "e5fa0eebc721dea67da872fd14413bc7", "score": "0.69744676", "text": "@Override\n\tpublic void formule() {\n\t\t\n\t}", "title": "" }, { "docid": "8b7f87c22e268a87686c66398c2c442b", "score": "0.6936331", "text": "@Override\r\n\t\t\tpublic void atras() {\n\t\t\t\t\r\n\t\t\t}"...
2dfda9e1bc6a2f3bee275c346d51e550
Lookup object for a particular componentId and name.
[ { "docid": "f4ac43ace16d73f9d8107c06178c8ae1", "score": "0.82477564", "text": "public Object lookup(String componentId, String name) throws NamingException {\n\n return lookup(componentId, name, initialContext);\n\n }", "title": "" } ]
[ { "docid": "4366752655f7cfbc5784a2193f43670f", "score": "0.67402065", "text": "public Object lookup(String name) throws NamingException;", "title": "" }, { "docid": "2bc2a76ee8ec8a461111645eacb2d607", "score": "0.66670585", "text": "public Object lookup(Name name) throws NamingExcept...
d8ad8ed868dbe88112cf513c2d17d169
Brings the application to the front
[ { "docid": "d7b9d98218f770c07fd3cd5715fdc0c5", "score": "0.7729692", "text": "private static void mainWindowToFront() {\n WindowManager.getDefault().getMainWindow().toFront();\n\n // If OS X toFront above does not work, so...\n String os = System.getProperty(\"os.name\").toLowerCase...
[ { "docid": "0ff99fabebe033a64165ffc77a87813e", "score": "0.72813195", "text": "private String bringToFront() {\n Frame mainFrame = IGV.getMainFrame();\n mainFrame.toFront();\n mainFrame.setAlwaysOnTop(true);\n mainFrame.setAlwaysOnTop(false);\n return \"OK\";\n }", ...
ff25b4c69e7e1cfbc9d39f3df025f250
/ renamed from: OooO0OO reason: collision with other method in class
[ { "docid": "6ad89f675b15a77bed2634ed915f0686", "score": "0.0", "text": "public Bitmap m21990OooO0OO() {\n return this.f23601OooO0Oo;\n }", "title": "" } ]
[ { "docid": "c22e85d8c293c23e5270f1fbdb677ea4", "score": "0.649667", "text": "@Override\r\n protected void doo_()\r\n {\n }", "title": "" }, { "docid": "4140506dba901af104a0200733dcc9f8", "score": "0.6244578", "text": "@Override\n\tpublic void methodCommon() {\n\t\t\n\t}", "tit...
732fb04425f4186a2462c5d253cc00bb
Start of user code for OnAcceptBranchSequenceKey specific getters and setters declaration
[ { "docid": "bfbd2cdb10f796173f4219980d7c75a2", "score": "0.71052635", "text": "public RegistryKeyProperty getOnAcceptBranchSequenceKey();", "title": "" } ]
[ { "docid": "a0b6b2b474bceea0191cfbea4a36eebc", "score": "0.6583765", "text": "public RegistryKeyProperty getOnRejectBranchSequenceKey();", "title": "" }, { "docid": "c493d1fca17a60a3a7de76b6fff4cc6f", "score": "0.55840254", "text": "public void setOnAcceptBranchsequenceType(Enumerato...
320d449cbfcc874f6bf6b792c316074a
Insert the count of attribute within each category
[ { "docid": "3aac7407da7674eb5abc950913e3e231", "score": "0.5542297", "text": "public void insertUpdateTweetCategoryWordCount(Map<TweetCategoryType, Map<String, Integer>> tweetCategoryWordCountMap);", "title": "" } ]
[ { "docid": "09f8c92041124dae35f6825d339c21f6", "score": "0.66009843", "text": "private void countCategories() {\r\n\t\tint i = 0;\r\n\t\tfor (String c: masterTree.keys())\r\n\t\t{\r\n\t\t\tcatCount[i] = masterTree.get(c).size();\r\n\t\t\ti++;\r\n\t\t}\r\n\t\t\r\n\t\t//Rather redudant, but we divide each...
1c6f4f544d3ac4d967f8620c0f5e829f
Use VmLog.newBuilder() to construct.
[ { "docid": "8340f2fc32aaad3e6350fa4eb0159e11", "score": "0.7565062", "text": "private VmLog(com.google.protobuf.GeneratedMessageV3.Builder<?> builder) {\n super(builder);\n }", "title": "" } ]
[ { "docid": "1967324cd7544abe17c7b43864d7df78", "score": "0.61345434", "text": "public static VoucherLog createEntity(EntityManager em) {\n VoucherLog voucherLog = new VoucherLog()\n .voucherLogID(DEFAULT_VOUCHER_LOG_ID)\n .voucherLogStatus(DEFAULT_VOUCHER_LOG_STATUS)\n ...
089fd7fe5f9fef90fcd20a3ac5bd8a47
Set parameter numeric as true or false
[ { "docid": "fad9fdee9777e0ef355df1d6c54f81d4", "score": "0.7580817", "text": "public void setNumeric(boolean value) {\n\t\tnumeric = value;\n\t}", "title": "" } ]
[ { "docid": "b201d30a7ba92b011d8e860e968f8b2b", "score": "0.6994943", "text": "public void setIsPositiveOnly (boolean IsPositiveOnly)\n{\nset_Value (\"IsPositiveOnly\", new Boolean(IsPositiveOnly));\n}", "title": "" }, { "docid": "9aa9999ab5569beb556985a9d6650f7f", "score": "0.66258746", ...
a59da8491c92dda4837aff3fee23e578
end of method Controlla la stringa della preliminary request Controlla che sia valida Inserisce un tag specifico iniziale In alcune query (AQueryWiki e sottoclassi) codifica i caratteri del wikiTitle Sovrascritto nelle sottoclassi specifiche
[ { "docid": "75c10d25bf1f4529d5a8ddd659347793", "score": "0.0", "text": "public String fixUrlPreliminaryDomain(String urlDomain) {\n return FIRST_REQUEST_GET;\n }", "title": "" } ]
[ { "docid": "34b57c2fc814bbcb1e71b1ebef6703e7", "score": "0.5302338", "text": "@Given(\"^Validar title \\\"([^\\\"]*)\\\"$\")\r\n\tpublic void validar_title(String title) throws Exception {\n\t\tutil.validar_title(title);\r\n\t \r\n\t}", "title": "" }, { "docid": "068596605ec6682a78ac89739b...
7efea0dcda32f97a5e4f0446e4fb84a9
the output for the shape data
[ { "docid": "7ef83ceec91aab0639b8be3089dc6e86", "score": "0.0", "text": "public FinalProject() {\r\n\r\n\t\t// Gets the config info by parser into list then put into Singleton\r\n\t\tConfigManager.getConfigManager().setConfiguration(ConfigParser.getConfig(\"configuration.json\"));\r\n\r\n\t\tsetSize(Conf...
[ { "docid": "57cee35327cac9fe4ad367a6bbbd13eb", "score": "0.7350472", "text": "public int[] get_output_shape() { return this.out.O().get_shape(); }", "title": "" }, { "docid": "5b6cbdd24b072a54a3ae112455543aaf", "score": "0.6920593", "text": "public List<int[]> calculateOutputShape() ...
edf6f751a1987a75d6b6d56ba771de5a
Mouth closed event is called
[ { "docid": "8cd2a968896b388154d4a4d9786a9203", "score": "0.81252605", "text": "@Subscribe(threadMode = ThreadMode.MAIN)\n public void mouthClosed(MouthClosedEvent event) {\n yawnPlayer.start();\n releaseUpdatingLock();\n }", "title": "" } ]
[ { "docid": "8ba26c899b2216fd7e8073d2ec39846a", "score": "0.7658504", "text": "public void onClosed() {\t\t\r\n\t}", "title": "" }, { "docid": "cb790dc5990e50eee8917b6566fded20", "score": "0.747644", "text": "void onClosed();", "title": "" }, { "docid": "e23aaae522c81c8059...
bfb81d4b3339f81f7559883691795425
Check if attribute value is set to its default value.
[ { "docid": "c76830cd08edff730c98b662b79122ba", "score": "0.6526454", "text": "public final boolean isId_CuentaBancariaDefaultValue() {\r\n return isDefaultValue(getId_CuentaBancariaAttribute(getMtDatabase()));\r\n }", "title": "" } ]
[ { "docid": "9e4f69b5af53fcdddd75f9636a11b4ef", "score": "0.7728941", "text": "public boolean isSetDefault()\r\n {\r\n synchronized (monitor())\r\n {\r\n check_orphaned();\r\n return get_store().find_attribute_user(DEFAULT$6) != null;\r\n ...
1b0db9a86fbc30535f4932272842fb48
/ renamed from: a
[ { "docid": "324239f9c3df090f826135cbfa411440", "score": "0.0", "text": "public Collection<E> read(com.google.a.d.a aVar) throws IOException {\n if (aVar.f() == com.google.a.d.b.NULL) {\n aVar.j();\n return null;\n }\n Collection<E> collectio...
[ { "docid": "cf68b8623ef8f2e72e5d568391d43ec2", "score": "0.622906", "text": "protected interface C3579b<T> {\n /* renamed from: a */\n void mo55348a(T t);\n }", "title": "" }, { "docid": "a738e6fdc907c3783fa577aa7db7f737", "score": "0.6167874", "text": "public interf...
7c53e627b2ab94d3423964653a2a1e72
Configure the transaction to not write or synchronously flush the log it when commits. This behavior may be set for a database environment using the Environment.setMutableConfig method. Any value specified to this method overrides that setting. The default is false for this class and the database environment.
[ { "docid": "b9ee9dd9140375d4cfaf3f12427790a7", "score": "0.0", "text": "public void setNoSync(final boolean noSync) {\n this.noSync = noSync;\n }", "title": "" } ]
[ { "docid": "03876db2560698c6985abd4a25186911", "score": "0.6570429", "text": "@Override\n public boolean isTransactionEnabled() {\n return config.isTransactionEnabled();\n }", "title": "" }, { "docid": "35b4baf34718fb681363137f32ebca0f", "score": "0.64375895", "text": "p...
6eb25d3919a513f6951d8506dc320b40
Method startLeaders is called by method handleLeaders and sets up selectLeaderController
[ { "docid": "3081ed464ddb95e51e416c89303ac634", "score": "0.8291997", "text": "public void startLeaders() {\n Set<Integer> ids = modelView.getMyDashboard().getLeaderCards().keySet();\n FXMLLoader loader = new FXMLLoader(getClass().getResource(\"/view/scenes/sceneSelectLeaders.fxml\"));\n ...
[ { "docid": "f04a9b06c06438fc4da3e76398095d9d", "score": "0.67891276", "text": "public void start() throws IOException {\n leaderSelector.start();\n }", "title": "" }, { "docid": "e8aebed368b5e0599f5bca835749b410", "score": "0.671724", "text": "@Override\n public void han...
ea5907b66ffa2146b9d98d9b9e10a1ec
Menghapus Record pada ArrayList outcome.
[ { "docid": "e534357e3c938a4953c92944e3533c3b", "score": "0.0", "text": "public void deleteExpense(int idx) {\n Expense tempexp = new Expense(\"00/00/0000\",\"0\",\"\",\"\");\n frmodel.setExpense(\"delete\", idx, tempexp);\n }", "title": "" } ]
[ { "docid": "e1d6f7ed19645f52c388423463006162", "score": "0.56700677", "text": "int insertSelective(ListSong record);", "title": "" }, { "docid": "4c2835a1ceeafe62266d93466edda569", "score": "0.553033", "text": "@ResponseBody\n \t@RequestMapping(\"/saveRow\")\n private List<Map<S...
92bd206e042b7a06a3b9fd58b23bf71e
Extracts the first element name in the given xml source.
[ { "docid": "fa60991f5839308e9f0cf6568c66aefd", "score": "0.6699396", "text": "private static String getFirstTag(String xml){\r\n\t\tFuzzyXMLDocument doc = new FuzzyXMLParser(false).parse(xml);\r\n\t\tFuzzyXMLNode[] nodes = doc.getDocumentElement().getChildren();\r\n\t\tfor(int i=0;i<nodes.length;i++){\r...
[ { "docid": "70149d7576365bdb262ef3dec705c188", "score": "0.6610471", "text": "private static Element getFirstNamedElement(Element element, String name) {\n/* 480 */ NodeList list = element.getElementsByTagName(name);\n/* 481 */ if (list.getLength() == 0) {\n/* 482 */ return null;\n/* *...
308d9b4b78435ce7a840802b6ec05b00
Returns the value of the 'Undoable' attribute. If the meaning of the 'Undoable' attribute isn't clear, there really should be more of a description here...
[ { "docid": "c1f95dc01ec71ff531ebfd6c2e207184", "score": "0.71851206", "text": "boolean isUndoable();", "title": "" } ]
[ { "docid": "3fd10d174af592dc9f87d9a77108d76e", "score": "0.7589997", "text": "public\t\tboolean\t\tisUndoable()\n\t\t{\n\t\treturn(true);\n\t\t}", "title": "" }, { "docid": "55a2bdd7f3b27c63768f382ac3730c29", "score": "0.71506214", "text": "String getUndo();", "title": "" }, ...
f8f3336d3f060559c6eee7f5701d8da6
returns the first row position where sTestCaseId(test case name) isn't existing OR the total number of rows of sheet
[ { "docid": "6866642f63b7ff9bc67e23a2ffb6470a", "score": "0.64430225", "text": "public int retrieveTestStepsCount(String sheetName, String sTestCaseID, int iTestCaseStart, int testCaseId) throws Exception {\r\n int totalRowCount = 0;\r\n String cellData = \"\";\r\n try {\r\n ...
[ { "docid": "054f20a028cdec0e6f3e6baf8990280f", "score": "0.6747862", "text": "public static int getRowNum(Xls_Reader xls, String id){\n\t\tfor(int i=2; i<= xls.getRowCount(\"Test Cases\") ; i++){\n\t\t\tString tcid=xls.getCellData(\"Test Cases\", \"TCID\", i);\n\t\t\tif(tcid.equals(id)){\n\t\t\t\txls=nu...
964a5bfddb5d6c9d6962f23c28253bbf
needed to "squeeze" 64 bit primitive types
[ { "docid": "0b4282631df8ea5ce3ce98966beff20a", "score": "0.0", "text": "private static Function<List<CallParam>, List<CallParam>> squeeze() {\n return callParams -> {\n if (callParams.size() == 0) {\n return callParams;\n }\n int maxLocal = callPara...
[ { "docid": "e4b5113ee06ab8b4ff2166a780dd97b8", "score": "0.6591782", "text": "long getInt64F();", "title": "" }, { "docid": "908764a9dfe5bcb35a12e3fbcf4d6b7e", "score": "0.6303925", "text": "public native final void putInt64(long offset, long x);", "title": "" }, { "docid...
a107f8c87dd01311b9b671d67e60bb88
/ JADX WARNING: Removed duplicated region for block: B:17:0x0044
[ { "docid": "b8464b815f8ba2d981fec809692705dd", "score": "0.0", "text": "@org.jetbrains.annotations.Nullable\n public final java.lang.Object doResume(@org.jetbrains.annotations.Nullable java.lang.Object r5, @org.jetbrains.annotations.Nullable java.lang.Throwable r6) {\n /*\n r4 = this;\n...
[ { "docid": "544a3a3298beca231b970348148a7b27", "score": "0.5798449", "text": "int numberOfBlocksToRemove();", "title": "" }, { "docid": "544a3a3298beca231b970348148a7b27", "score": "0.5798449", "text": "int numberOfBlocksToRemove();", "title": "" }, { "docid": "626d5a749b...
2a338b17c1bbf8eff29993f9b2e4d9ea
repeated string sdata = 5; used for string data
[ { "docid": "90f9f2ee53b3cdf469c39d48fc0ee5b8", "score": "0.55960697", "text": "public java.lang.String getSdata(int index) {\n return sdata_.get(index);\n }", "title": "" } ]
[ { "docid": "28017eed63d9ba798d6ec5d69286dc29", "score": "0.6832144", "text": "public void parsingNBytestATime(String data){\n int flag = 0;\n String finalOne = \"\";\n for (char c : data.toCharArray()) {\n if (numOfChars != Constants.MAX_NUMBER_OF_BYTES) {\n ...
4f91850f06fe8e9cb7588c2044acb1dc
bjProduto = new BjProduto();
[ { "docid": "de1e434760bd47eca6ba67970372c7b7", "score": "0.0", "text": "public String validaProduto(String sCodigoProduto){\n bjProduto.setSCodigo(sCodigoProduto);\n try{\n bjProduto = daobjProduto.findBySCodigo(bjProduto);\n }catch(NoResultException e){\n retu...
[ { "docid": "ca0dd9c45014b80cdc1f7a3b1a58aa90", "score": "0.7235603", "text": "public SeteoProd() {\n }", "title": "" }, { "docid": "8e09f78ac1ef6ce691edf847e3e30cb5", "score": "0.71243286", "text": "public Producto() {\n }", "title": "" }, { "docid": "59a14d57c88cae...
21b00d777603e064a5904e5fb01834e9
put a colon '.' at the end of non empty pathNames
[ { "docid": "1a430342dc9b66204c5d4c986273a0ec", "score": "0.0", "text": "@SuppressWarnings(\"unchecked\")\r\n\tprivate Map<String, Object> prepareComponentPathForLookup(Map<String, Object> components) {\r\n\t\tMap<String, Object> copy = BeanUtils.instantiate(components.getClass());\r\n\t\tfor (String pa...
[ { "docid": "ef395e0849478f933422e0da35811f20", "score": "0.59760135", "text": "String getPathSuffix();", "title": "" }, { "docid": "f52e22670bd437bbf873cfdcc77ca61e", "score": "0.5849543", "text": "static protected String joinKeyPath(String[] keyPath) {\n return String.join(\"...
e25720f0f9e5b6f0ca7bed6ce0815256
optional string min_msg_sent = 6 [default = "30"];
[ { "docid": "4d06a6d50dd8db013ad8f5e531302362", "score": "0.5877766", "text": "public com.google.protobuf.ByteString\n getMinMsgSentBytes() {\n java.lang.Object ref = minMsgSent_;\n if (ref instanceof String) {\n com.google.protobuf.ByteString b = \n ...
[ { "docid": "f6d33c94dd990bf31b033b659cb7f224", "score": "0.7671935", "text": "java.lang.String getMinMsgSent();", "title": "" }, { "docid": "f6d33c94dd990bf31b033b659cb7f224", "score": "0.7671935", "text": "java.lang.String getMinMsgSent();", "title": "" }, { "docid": "f4...
5ff98289d4112f9974d4a72302651d7b
Format the score of a given player.
[ { "docid": "5ac5ca1d37dd9c5d495a79c402598a32", "score": "0.68768716", "text": "String format(Player p);", "title": "" } ]
[ { "docid": "4509451b7c1907bfa3bf8eed03253856", "score": "0.7730834", "text": "public interface ScoreFormatter {\n\t\t\n\t\t/**\n\t\t * Format the score of a given player.\n\t\t * @param p The player and its score\n\t\t * @return Formatted score.\n\t\t */\n\t\tString format(Player p);\n\t}", "title":...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "5cf5a010efafddb3c963b3d049d795a4", "score": "0.0", "text": "@Override\n\tpublic void render(Graphics g1) {\n\t\tg1.setColor(new Color(110, 151, 255));\n\t\t/*\n\t\t//BORDE\n\t\tif(tipoEnemigo == 'H') {\n\t\t\tif(ubicacionEnemigo == 'A') {\n\t\t//\t\tg.fillRect(0, 0, ancho, altura);\n\t\t\t...
[ { "docid": "f4bccec648e6eb25ae6f4d7165ffc5a1", "score": "0.7037216", "text": "@Override\n\t\t\tpublic void Goruntule() {\n\t\t\t\t\n\t\t\t}", "title": "" }, { "docid": "27bc40cf2c5e26e0bf8b70807e0bcaed", "score": "0.68683225", "text": "@Override\r\n\tpublic void caminar() {\n\t\t\r\n...
fec11066ea60149cdd7196ed62e59d23
if test data exists
[ { "docid": "ba2136d84ec0289a860f84fa3ff4ca5f", "score": "0.0", "text": "private void evaluate() {\n\t\tif (this.testInstances != null) {\n\t\t\t\n\t\t\tthis.message.displayText(\"Evaluation\");\n\t\t\t\n\t\t\tEvaluator evaluator = new Evaluator(this.categoryLabels);\n\t\t\t\n\t\t\t// initialize scores\n...
[ { "docid": "f9052541e7853f175a8c0fa001aa30ce", "score": "0.74208236", "text": "boolean hasData();", "title": "" }, { "docid": "f9052541e7853f175a8c0fa001aa30ce", "score": "0.74208236", "text": "boolean hasData();", "title": "" }, { "docid": "f9052541e7853f175a8c0fa001aa30...
80ab51bbc00e36a489880af8df19e7aa
map&lt;int64, .tensorflow.decision_trees.Value&gt; sparse_value = 1;
[ { "docid": "84b94cb9119a6782a4d310e8a15bb096", "score": "0.77881044", "text": "java.util.Map<java.lang.Long, tensorflow.decision_trees.GenericTreeModel.Value>\n getSparseValueMap();", "title": "" } ]
[ { "docid": "432bfe89aed3263899c7b62744f75edb", "score": "0.73750234", "text": "tensorflow.decision_trees.GenericTreeModel.Value getSparseValueOrThrow(\n long key);", "title": "" }, { "docid": "08ffb5603948bc5eb901128ef0059eb8", "score": "0.73644644", "text": "tensorflow.decisi...
39048e824f348303f23682268aa0e498
$ANTLR end "rule__FlushLiteral__Group__0__Impl" $ANTLR start "rule__FlushLiteral__Group__1" InternalMASLParser.g:26540:1: rule__FlushLiteral__Group__1 : rule__FlushLiteral__Group__1__Impl ;
[ { "docid": "7b886ffa0574f8ad4ee481c30e0822d0", "score": "0.8377674", "text": "public final void rule__FlushLiteral__Group__1() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMASLParser.g:26544:1: ( rule__FlushLiteral__Grou...
[ { "docid": "c4ea0aee1967b317cbfd8d12d20eb27e", "score": "0.8335391", "text": "public final void rule__FlushLiteral__Group__0() throws RecognitionException {\n\n \t\tint stackSize = keepStackSize();\n \t\n try {\n // InternalMASLParser.g:26517:1: ( rule__FlushLiteral__Grou...
8c3c160c6855b12cd82d57030c3908e2
.dstore.values.BooleanValue delete_campaign = 6;
[ { "docid": "7a36acac545e06b07cccd9d4c7873b87", "score": "0.5814854", "text": "public io.dstore.values.BooleanValue.Builder getDeleteCampaignBuilder() {\n \n onChanged();\n return getDeleteCampaignFieldBuilder().getBuilder();\n }", "title": "" } ]
[ { "docid": "2e57e58a177cdc6efa2a32fc292f3eee", "score": "0.8300694", "text": "io.dstore.values.BooleanValue getDeleteCampaign();", "title": "" }, { "docid": "5df9c9fe015f0e9cba4f9e7d3c171597", "score": "0.7393343", "text": "io.dstore.values.BooleanValueOrBuilder getDeleteCampaignOrBu...
b0a584b6b1b790661b1cf4ff4a1011a7
adds value row 1 to row 2
[ { "docid": "4f0d49a3ec07a44da22bfdb31125bdc2", "score": "0.7160557", "text": "public void addMultipleOfRowToRow(int row1, int row2, double value){\r\n\t\tint i = 0;\r\n\t\tfor(double d : matrix[row2-1]){\r\n\t\t\tmatrix[row2-1][i] = d + (matrix[row1-1][i] * value);\r\n\t\t\ti++;\r\n\t\t}\r\n\t}", "t...
[ { "docid": "0e68aa158ff655b37cd0c330b534509f", "score": "0.67628086", "text": "public void addRows (int r1, int r2) {\n for (int i = 0; i < COL; i++) {\n this.matrix[r2][i] += this.matrix[r1][i];\n }\n }", "title": "" }, { "docid": "9ad206161c6b48ae8c53964a174afe24", ...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "7773c11f7544e99dc5e142e6098d1562", "score": "0.0", "text": "@Override\n public void onClick(View v) {\n Calendar mcurrentTime = Calendar.getInstance();\n int hour = mcurrentTime.get(Calendar.HOUR_OF_DAY);\n int minute = mcurrentTime.get...
[ { "docid": "d7194e467f51e022c107531d8614b6a3", "score": "0.6905833", "text": "@Override\r\n\tpublic void anular() {\n\t\t\r\n\t}", "title": "" }, { "docid": "941cb2826e3c700358fcaba402e6bb01", "score": "0.66775143", "text": "@Override\r\n\tpublic void hissetmek() {\n\r\n\t}", "ti...
c10e4d3438ec96207509a9d255732b3d
Set The audio encoding parameters.
[ { "docid": "f675491c4b8acae9858da1e34bd300fe", "score": "0.72101074", "text": "public void setAudioEncode(AudioEncode AudioEncode) {\n this.AudioEncode = AudioEncode;\n }", "title": "" } ]
[ { "docid": "127204a5341c88e2199c1b3fb94b9fed", "score": "0.6740659", "text": "public void setEncoding(String encoding);", "title": "" }, { "docid": "0a22814386f3b672e6b8ae3e06da8eea", "score": "0.6518908", "text": "void setEncodings() {\n useCopyRect = choices[useCopyRectIndex].ge...
6e6ac07b696369918f7d9c32afd6263a
Write code here that turns the phrase above into concrete actions
[ { "docid": "c13598c9ba3bdd0b605d7c4d656c79a4", "score": "0.0", "text": "@When(\"I open Facebook website\")\n public void i_open_Facebook_website() {\n driver.navigate().to(\"https://www.facebook.com/\");\n }", "title": "" } ]
[ { "docid": "ede5b0bf810ac147cb2e1442fc19f7b3", "score": "0.65339774", "text": "@Override\n\tpublic void action() {\n\t\t\n\t}", "title": "" }, { "docid": "3144fe7764d57abf4d704e0deecb6a3e", "score": "0.64842796", "text": "private void doAction(short action) {\n\t\tthis.setAction(acti...
19be17b9c38cb21550a8d2b380273c02
Setter for the status value.
[ { "docid": "cf568062dd3632a27114c7549d06927c", "score": "0.0", "text": "public void setStatus(final String attrStatus) {\r\n this.status = attrStatus;\r\n }", "title": "" } ]
[ { "docid": "8455fa920fdb3d0b28322624cfb5bf39", "score": "0.8261238", "text": "public void setStatus(int value) {\n this.status = value;\n }", "title": "" }, { "docid": "8455fa920fdb3d0b28322624cfb5bf39", "score": "0.8261238", "text": "public void setStatus(int value) {\n ...
d12796e928556b718380d64ae795ebd1
Check if tables are well defined. This is necessary to modify the data in the right tables. If one query of a table fails, the function is returning false.
[ { "docid": "ecf4b51d4400be6b86eed659475d815e", "score": "0.64901304", "text": "public boolean checkDbStructure(){\n\t\tboolean isStructureOk = false;\n\t\t\n\t\ttry {\n\t\t\tmMysqlConnection = DriverManager\n\t\t\t\t.getConnection(getConnectionURI());\n\t\t\t\n\t\t\tmPreparedStatement = mMysqlConnection...
[ { "docid": "5a7218628c786ed7ea72a31f16bf9643", "score": "0.72670513", "text": "public boolean checkMasterdataTables(){\n boolean cat = tableExists(\"select c from Category c\");\n boolean quest = tableExists(\"select t from Question t\");\n\n if (!cat){\n System.out.print...
242894f8b5f625bd932d68872bc1042f
Stores the String name of the song. INITIALIZATION FUNCTIONALITY ___________________________________________________________ HXGSESong(): Constructor method that initializes the HXGSESong object.
[ { "docid": "57d42bb2098a54d6ce7e545dd89bc478", "score": "0.723053", "text": "public HXGSESong(String name, int resource) {\n musicRes = resource;\n songName = name;\n }", "title": "" } ]
[ { "docid": "d17b85d246d8ea60cff2938864803c35", "score": "0.79206824", "text": "public HXGSESong() {\n musicRes = 0;\n songName = null;\n }", "title": "" }, { "docid": "5a442e473a72667e53b62f4ed4081020", "score": "0.73189604", "text": "public void setSongName(String n...
84944ed0f3b4748ca8185a95f3608273
Returns the data instance (WARNING: not cloned) passed into the constructor.
[ { "docid": "d6e5375021111cd42870b23cf708224e", "score": "0.0", "text": "public byte[] getBlob()\n\t{\n\t\treturn m_blob;\n\t}", "title": "" } ]
[ { "docid": "76576fd7490f4c90329c1afcced6e5f7", "score": "0.7511849", "text": "public static Data create() {\n return new Data();\n }", "title": "" }, { "docid": "4143bb3cf91dad64de4b889d78c4f2b3", "score": "0.6895621", "text": "public Data() {}", "title": "" }...
30ad4ebd260ec28f50994807064b7bdb
Vector2 dir = new Vector2(0, 0);
[ { "docid": "a124e1007ca9d1118ad15aa741b0c87a", "score": "0.0", "text": "public void updateLeftStick() {\n\t}", "title": "" } ]
[ { "docid": "14f05531fec71d43acf1acded0f94158", "score": "0.7416712", "text": "public Vector2f direction() {\r\n\t\treturn new Vector2f(\r\n\t\t\t\tx > 0 ? 1 : x < 0 ? -1 : 0, \r\n\t\t\t\ty > 0 ? 1 : y < 0 ? -1 : 0\r\n\t\t\t);\r\n\t}", "title": "" }, { "docid": "b5360c07f8c93e68ebce8562e5328c...
67da0ea4f62f33747a0ade526f05e896
.WifiConnectFailedReason fail_reason = 10;
[ { "docid": "187e05d1932f28ae8a88a2f686521a15", "score": "0.69265205", "text": "@Override\n public WifiConstants.WifiConnectFailedReason getFailReason() {\n if (stateCase_ == 10) {\n WifiConstants.WifiConnectFailedReason result = WifiConstants.WifiConnectFailedReason.forNumber((Integer) st...
[ { "docid": "4908897eba2f263859d8ae731ca186db", "score": "0.8716853", "text": "WifiConstants.WifiConnectFailedReason getFailReason();", "title": "" }, { "docid": "764507d31ada2393cc1fd38453e6b003", "score": "0.7485221", "text": "@Override\n public void OnWifiConnectFailed(String ss...
25197b4cf814864ecd440f23b9149cb3
TODO Autogenerated method stub
[ { "docid": "7130d323fea1a8651145ef1325feecb2", "score": "0.0", "text": "@Override\n\tpublic void collided(Sprite spriteA, Sprite spriteB) {\n\t\tspriteB.setActive(false);\n\t\tspriteA.setActive(false);\n\t\tMarioGame.points += 30;\n\t}", "title": "" } ]
[ { "docid": "9208773f8d675a45ef2786d0cb668514", "score": "0.6545634", "text": "@Override\n\tpublic void addiion() {\n\t\t\n\t}", "title": "" }, { "docid": "80d20df1cc75d8fa96c12c49a757fc43", "score": "0.653176", "text": "@Override\n\tprotected void getExras() {\n\t\t\n\t}", "title...