id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
6dad9ecb-ea5a-450f-a007-d552e29dd76e | public String superToString() {
return super.toString();
} |
c12c98c2-4768-4f2e-8477-0c6edde6585e | public void handler() {
if (m68klog != null) {
fclose(m68klog);
}
throw new UnsupportedOperationException("Unimplemented");
} |
e7b9127c-bd95-4527-9245-eea65bc3b061 | public java.lang.String getCustomPickList77() {
return this.customPickList77;
} |
92204094-3b95-4e91-80ba-b499ea2c4693 | public crmondemand.xml.customobject3.query.QueryType getOwnerEMailAddr() {
return this.ownerEMailAddr;
} |
2ed78e16-921f-4531-877c-c96bed91ff10 | public void ejecutarHabilidad() {
} |
e1f26291-3a0c-47b5-874a-dbd6204a87b1 | public void setBookId(crmondemand.xml.customobject6.query.QueryType bookId) {
this.bookId = bookId;
} |
02e3b80f-4bdc-4a11-9799-d1cbfb4e4d84 | public void setFinancialAccountType(java.lang.String financialAccountType) {
this.financialAccountType = financialAccountType;
} |
9f221d5f-9451-4aff-9008-d8f31e1eefce | public java.math.BigDecimal getCustomNumber15() {
return this.customNumber15;
} |
7f9c783e-c471-4bd3-8e7c-6fc829e19296 | @Override
public void connectionRemoved(Server server, HostedConnection conn) {
lock.lock();
try {
connectedPlayers--;
System.out.println(connectedPlayers + " players connected. " + (neededPlayers - connectedPlayers)
+ " more to go.");
} finally {
lock.unlock();
}
} |
986afc20-99e6-492e-addb-ddcf295bbf38 | public void setCustomInteger16(java.lang.Integer customInteger16) {
this.customInteger16 = customInteger16;
} |
0d1bc828-66ae-49ca-97ab-e152c29a2b41 | public crmondemand.xml.customobject6.query.QueryType getOpportunityExternalSystemId() {
return this.opportunityExternalSystemId;
} |
5b2c5bc9-53a9-448f-86ab-e0055ef96770 | public void setCustomDate25(crmondemand.xml.opportunity.query.QueryType customDate25) {
this.customDate25 = customDate25;
} |
45336807-249b-4a90-acd2-deb4e988d64e | public void setCustomNumber31(java.math.BigDecimal customNumber31) {
this.customNumber31 = customNumber31;
} |
5a87dec0-f7d4-4321-82fb-52d903a9d293 | public void setCustomText19(java.lang.String customText19) {
this.customText19 = customText19;
} |
2a9233b3-67e7-445c-a945-f50ab83f2202 | private double[] adjustTimes(double[] times) {
for (int i = 0; i < times.length; i++) {
times[i] += this.getTimeZone() - this.getLng() / 15;
}
times[2] += this.getDhuhrMinutes() / 60; // Dhuhr
if (methodParams.get(this.getCalcMethod().getId())[1] == 1) // Maghrib
{
times[5] = times[4] + methodParams.get(this.getCalcMethod().getId())[2]/ 60;
}
if (methodParams.get(this.getCalcMethod().getId())[3] == 1) // Isha
{
times[6] = times[5] + methodParams.get(this.getCalcMethod().getId())[4]/ 60;
}
if (this.getAdjustHighLats() != this.None) {
times = adjustHighLatTimes(times);
}
return times;
} |
b94253fa-223d-4c05-b166-080641c48bf5 | public void setCustomBoolean15(crmondemand.xml.customobject6.query.QueryType customBoolean15) {
this.customBoolean15 = customBoolean15;
} |
4b347343-a526-49ac-abfe-2c31f6f0e76e | @Test
public void testAnalyzeNumberInvalid1()
{
DictionaryReader oReader = new DictionaryReader( CommonConstants.STR_DEF_DICTIONARY );
NumberParser oNumParse = new NumberParser( oReader.getDictionary( ) );
List<String> oResult = oNumParse.analyzeNumber( "a5483728873" );
assertEquals( 0, oResult.size( ) );
} |
a4d8de15-45ae-4775-bb94-a202d742dea4 | public void setCustomPickList99(crmondemand.xml.customobject3.query.QueryType customPickList99) {
this.customPickList99 = customPickList99;
} |
8f0f55fb-54ed-4ff7-a8e2-3be9ce2522af | public crmondemand.xml.customobject6.query.QueryType getCustomDate13() {
return this.customDate13;
} |
94a7e274-844c-4bec-825b-a4d357ce8bb2 | public java.lang.String getPlanItemId() {
return this.planItemId;
} |
617a31df-daf3-4cf3-a0e4-fad4134516fb | public java.lang.String getCustomObject9Type() {
return this.customObject9Type;
} |
e6e9e7d2-aeef-4cd9-b1f9-5b388bde5240 | public void setUpdatedByAlias(crmondemand.xml.customobject6.query.QueryType updatedByAlias) {
this.updatedByAlias = updatedByAlias;
} |
f0ea27d5-0519-4777-9ece-d4ce661e1b15 | public java.lang.String getCampaignStatus() {
return this.campaignStatus;
} |
774a5e6a-08ea-41fa-9658-b0ffbd51c0fb | public void setCustomText60(crmondemand.xml.contact.query.QueryType customText60) {
this.customText60 = customText60;
} |
c3aef57c-1821-4716-b5f3-78ae7b641ee1 | public crmondemand.xml.customobject6.query.QueryType getCustomObject10IntegrationId() {
return this.customObject10IntegrationId;
} |
540c3ea8-2ce0-4ddc-9e15-0e9daf788405 | public void setCustomPickList42(java.lang.String customPickList42) {
this.customPickList42 = customPickList42;
} |
0fcd9d63-16de-44bc-8635-4ff39310715d | public static void main(String[] args) {
CarPark cp = new CarPark();
Simulator s = null;
Log l = null;
try {
s = new Simulator();
l = new Log();
} catch (IOException e1) {
e1.printStackTrace();
System.exit(-1);
} catch (SimulationException e1) {
e1.printStackTrace();
System.exit(-1);
}
// TODO: Implement Argument Processing
// Run the simulation
SimulationRunner sr = new SimulationRunner(cp, s, l);
try {
sr.runSimulation();
} catch (Exception e) {
e.printStackTrace();
System.exit(-1);
}
} |
d01e3687-77f8-47c4-8dec-19566a8d6134 | public crmondemand.xml.customobject3.query.QueryType getCustomPickList91() {
return this.customPickList91;
} |
66015116-74a1-4ae7-abde-b9919e3e484a | public void setCustomInteger12(crmondemand.xml.customobject3.query.QueryType customInteger12) {
this.customInteger12 = customInteger12;
} |
326c9f3b-9ab8-4b4f-a012-94079d39e593 | public void setCustomCurrency3(java.math.BigDecimal customCurrency3) {
this.customCurrency3 = customCurrency3;
} |
ab1765e3-0675-414d-89b0-53232897108d | public crmondemand.xml.opportunity.query.QueryType getCustomDate4() {
return this.customDate4;
} |
2ec839dc-a2e5-47d8-ab16-bfff2c8ef01c | public void setCustomPickList1(java.lang.String customPickList1) {
this.customPickList1 = customPickList1;
} |
f66584e7-099f-48e0-80a8-31cf6b2125d9 | public void setProductStatus(crmondemand.xml.opportunity.query.QueryType productStatus) {
this.productStatus = productStatus;
} |
1bae6a42-b0b3-452b-ab7d-85bff8108401 | public boolean hasCode() {
return ((bitField0_ & 0x00000001) == 0x00000001);
} |
4bcfe273-afcb-4729-90cf-149ee69ed87d | public String getSecondWord()
{
return secondWord;
} |
c85da103-90a0-43d0-9795-3044aeadc0c9 | public java.lang.String getCustomPickList3() {
return this.customPickList3;
} |
0422f0b1-9d02-48a5-9c54-f18395ea92d2 | public void setCustomNumber23(crmondemand.xml.contact.query.QueryType customNumber23) {
this.customNumber23 = customNumber23;
} |
3b796ff1-9cba-4678-b72b-3c29c682d293 | public void setTransferToEMailAddr(crmondemand.xml.contact.query.QueryType transferToEMailAddr) {
this.transferToEMailAddr = transferToEMailAddr;
} |
6fdb3b5b-9c77-41ce-9415-110defcfe681 | public void setPolicyExchangeDate(java.util.Calendar policyExchangeDate) {
this.policyExchangeDate = policyExchangeDate;
} |
8d40f520-cb27-4f4e-adf6-796e31fa116a | public void setSolutionMarketingApproval(java.lang.Boolean solutionMarketingApproval) {
this.solutionMarketingApproval = solutionMarketingApproval;
} |
60635e75-b5da-40be-9110-c281fdd6ae1b | public boolean delWarp(CommandSender cs, Command cmd, String string,
String[] args) {
Player player = (Player) cs;
if (!(player.hasPermission("warpsandports.warp.delete") || player
.isOp())) {
player.sendMessage(ChatColor.RED
+ "You do not have permission to use this command!");
} else {
if (args.length != 3) {
player.sendMessage(ChatColor.RED + "The correct use is "
+ ChatColor.AQUA + "/wnp warp delete <Warp Name>");
return false;
} else {
if (!(MainClass.warps.contains("Warps." + args[2]))) {
player.sendMessage(ChatColor.RED
+ "That warp does not exist!");
return false;
} else {
MainClass.warps.set("Warps." + args[2], null);
MainClass.saveWarps();
player.sendMessage(ChatColor.GREEN + "The warp "
+ ChatColor.AQUA + args[0] + ChatColor.GREEN
+ " has been removed");
return true;
}
}
}
return false;
} |
9c579f00-85d2-46ec-aceb-c8f061fc4533 | @Override
public Map<Pokemon, boolean[]> getTMHMCompatibility() {
Map<Pokemon, boolean[]> compat = new TreeMap<Pokemon, boolean[]>();
int pokeStatsOffset = romEntry.getValue("PokemonStatsOffset");
for (int i = 1; i <= pokedexCount; i++) {
int baseStatsOffset = (romEntry.isYellow || i != 151) ? (pokeStatsOffset + (i - 1) * 0x1C)
: romEntry.getValue("MewStatsOffset");
Pokemon pkmn = pokes[i];
boolean[] flags = new boolean[56];
for (int j = 0; j < 7; j++) {
readByteIntoFlags(flags, j * 8 + 1, baseStatsOffset + 0x14 + j);
}
compat.put(pkmn, flags);
}
return compat;
} |
7f842229-41b6-4f04-ad02-156c44a1dcea | public java.lang.String getCreatedById() {
return this.createdById;
} |
c6aae3d9-0e8d-4804-8d55-d6f215b660f2 | public java.util.Calendar getCustomDate21() {
return this.customDate21;
} |
7213527a-4b46-4fdc-addc-f2c8460d7ea3 | public void setCustomObject13IntegrationId(java.lang.String customObject13IntegrationId) {
this.customObject13IntegrationId = customObject13IntegrationId;
} |
0bec5769-60e3-444c-b958-fcd47d2ce0e9 | public java.lang.String getCustomObject4ExternalSystemId() {
return this.customObject4ExternalSystemId;
} |
161f992b-1f1d-4a71-a02b-678044af6614 | public void setId(int id) {
this.id = id;
} |
aac2b07d-46e4-4c41-b7e3-e957a7807d50 | @Override protected double computeMinWidth(final double HEIGHT, double TOP_INSET, double RIGHT_INSET, double BOTTOM_INSET, double LEFT_INSET) {
return super.computeMinWidth(Math.max(MINIMUM_HEIGHT, HEIGHT - TOP_INSET - BOTTOM_INSET), TOP_INSET, RIGHT_INSET, BOTTOM_INSET, LEFT_INSET);
} |
50a25990-be9d-4f96-a400-c2f99427baff | public void duplicateDefaultCase(ASTNode statement) {
this.handle(
IProblem.DuplicateDefaultCase,
NoArgument,
NoArgument,
statement.sourceStart,
statement.sourceEnd);
} |
9d17d0b8-caba-403f-993a-7043340b9841 | public static void main(String args[]) {
System.out.println(2.00 - 1.10);
} |
7665bbdb-d630-41b2-bd48-adcba2fc51b8 | public java.lang.String getProductName() {
return this.productName;
} |
58fb26e0-c92e-4c3e-9991-e48296cea09d | public crmondemand.xml.opportunity.query.QueryType getCustomPickList92() {
return this.customPickList92;
} |
b97d0abc-6193-4aaa-97b6-8ff0fd8e3925 | public crmondemand.xml.opportunity.query.QueryType getCreatedByExternalSystemId() {
return this.createdByExternalSystemId;
} |
7e4498c4-6e9b-4a5a-9806-6a9bf7d3e34b | public void setCustomNumber38(java.math.BigDecimal customNumber38) {
this.customNumber38 = customNumber38;
} |
a2f43bc2-1e03-4757-ad2d-37e10b3f40c2 | public void setCustomPickList12(crmondemand.xml.customobject6.query.QueryType customPickList12) {
this.customPickList12 = customPickList12;
} |
d6bcc2bc-a3af-4a1f-aeba-ce4bd1a2053d | public boolean openArena() {
if (this.bossspawn == null || this.playerspawn == null
|| this.ready == null || this.deathspawn == null) {
plugin.sendtoserver(": " + this.arenaname + " δȫ!");
return false;
}
arenastate = ArenaState.STAT_OPEN;
plugin.sendtoserver(" " + this.arenaname);
return true;
} |
f791053a-8cb4-42f0-9e22-9c699cf74907 | public crmondemand.xml.customobject3.query.QueryType getCustomPickList13() {
return this.customPickList13;
} |
d3119984-76f6-4802-aee8-5c58c61c0b71 | public crmondemand.xml.contact.query.QueryType getCustomDate22() {
return this.customDate22;
} |
47cfe19b-b3c0-483c-9b2d-38e0643a44c2 | * @param stream
* @param start
* @param end
* @return int
*/
public static int byteArrayReadSequence(char[] buffer, InputStream stream, int start, int end) {
if (stream.tokenizerState != null) {
return (Stella.tokenizerByteArrayReadSequence(buffer, stream, start, end));
}
else {
return (Stella.nativeByteArrayReadSequence(buffer, stream.nativeStream, start, end));
}
} |
0b54d4f5-514f-4064-9c7a-c0dedbab4f44 | public void setCustomObject7IntegrationId(java.lang.String customObject7IntegrationId) {
this.customObject7IntegrationId = customObject7IntegrationId;
} |
317a4941-0411-4123-bea6-64c7ed0feace | public java.lang.String getCustomPhone0() {
return this.customPhone0;
} |
c7d27f92-ec5b-48c7-8396-5f72a29b3058 | public java.lang.String getCustomPickList55() {
return this.customPickList55;
} |
de98444b-1d4e-4f82-b402-1d3a67a294b9 | public java.lang.String getCustomObject6Name() {
return this.customObject6Name;
} |
5e9c0fef-61ce-4421-930b-7c84ac07050c | public crmondemand.xml.contact.query.QueryType getCustomPickList22() {
return this.customPickList22;
} |
cc60a8a5-34ff-4521-b879-ae114e21403e | public void setCustomObject3Type(java.lang.String customObject3Type) {
this.customObject3Type = customObject3Type;
} |
ab4629e3-bfd7-4981-a179-bc1a408c191b | public void showSkills() {
System.out.println("\nSkills do guerreiro: " + getName() + " \nHP = "
+ HP + " MP = " + MP + " Experiência: = " + XP);
System.out.println("\nStrenght = " + strength + " Speed = " + speed
+ " Dexterity = " + dexterity + " Constitution = "
+ constitution);
} |
e4d5d56e-0f34-4446-a00a-fd14cece55b1 | public void setBrokerProfileId(crmondemand.xml.customobject6.query.QueryType brokerProfileId) {
this.brokerProfileId = brokerProfileId;
} |
05a293c2-57be-4921-b61a-28c4766974b0 | @Override
public boolean isEmpty() {
return this.size == 0;
} |
38f286e4-7e0f-4bcc-b94f-006bde8eeab8 | public void setCustomText63(java.lang.String customText63) {
this.customText63 = customText63;
} |
4022a974-c61a-4784-9ea8-988f409c335e | public void setContactEmail(crmondemand.xml.customobject3.query.QueryType contactEmail) {
this.contactEmail = contactEmail;
} |
8a695aba-932d-49db-9c35-39dc3ee1eed5 | public void setCustomPickList28(crmondemand.xml.contact.query.QueryType customPickList28) {
this.customPickList28 = customPickList28;
} |
e3cd8602-8848-4679-8c35-8cd96a190dbe | public void setCustomText2(crmondemand.xml.contact.query.QueryType customText2) {
this.customText2 = customText2;
} |
89fb0db0-a1a9-4073-bf73-18473a6d9daf | public void setCreatedByAlias(crmondemand.xml.customobject6.query.QueryType createdByAlias) {
this.createdByAlias = createdByAlias;
} |
67d3cc93-ad31-4071-8998-15d243fe5ff7 | public void setCustomPhone10(java.lang.String customPhone10) {
this.customPhone10 = customPhone10;
} |
f83cf812-22e5-4a6b-9ff0-b302d435eea1 | public void actionPerformed(ActionEvent e) {
translateMapPosition(0, -MOVE_STEP);
MapPanel.this.repaint();
} |
835c813d-719f-416e-986f-69b5adef10fd | public crmondemand.xml.opportunity.query.QueryType getUpdatedByExternalSystemId() {
return this.updatedByExternalSystemId;
} |
30060e8b-19aa-4af7-99f1-afc3e82f5f12 | public void run() {
// launch progress dialog
printProgressMonitor = new ProgressMonitor(viewer,
messageBundle.getString("viewer.dialog.printing.status.start.msg"),
"", 0, printHelper.getNumberOfPages());
} |
4d721f1a-513b-4cd5-8d6a-d13438baa485 | public crmondemand.xml.customobject3.query.QueryType getHouseholdExternalSystemId() {
return this.householdExternalSystemId;
} |
840cad2b-30f4-4d13-97e5-5a0c574f25a5 | public void setCustomPickList67(java.lang.String customPickList67) {
this.customPickList67 = customPickList67;
} |
949c611d-2acc-45dc-a710-2b3a19b22cee | public crmondemand.xml.contact.query.QueryType getCustomNumber54() {
return this.customNumber54;
} |
a5ab5063-34da-4aa1-8705-d315f79ecfe1 | public void setCustomDate20(java.util.Calendar customDate20) {
this.customDate20 = customDate20;
} |
4d64bd24-468c-44ea-9e6c-c1549c6d951a | public void setCustomPickList6(java.lang.String customPickList6) {
this.customPickList6 = customPickList6;
} |
b81b9691-547c-4833-9654-ae404a262a80 | public static void validarEmail(final javax.swing.JTextField textoAnalizar){
String texto = new String();
texto = new String(textoAnalizar.getText());
if(validacion.validarEmail(texto)){
textoAnalizar.setText("");
}
} |
d71d4d20-8874-4c36-ac5e-a0ffaa1dca6a | public void setCustomDate47(crmondemand.xml.contact.query.QueryType customDate47) {
this.customDate47 = customDate47;
} |
7bfa105f-927e-44ea-b454-3a9a640bea7b | public void setCreatedByEMailAddr(java.lang.String createdByEMailAddr) {
this.createdByEMailAddr = createdByEMailAddr;
} |
7c704946-af2d-4cd4-b8a5-19b14454877f | public void setPhone(crmondemand.xml.customobject6.query.QueryType phone) {
this.phone = phone;
} |
6c114955-b36f-4e27-98a4-06d17f36b3c7 | public void setCustomDate3(java.util.Calendar customDate3) {
this.customDate3 = customDate3;
} |
f2fc5fa3-928e-472e-99cc-9ede39fdacbc | public void setCustomDate3(java.util.Calendar customDate3) {
this.customDate3 = customDate3;
} |
23c0d050-5f1a-43b8-857a-3849011da2e2 | public void setCustomPickList25(crmondemand.xml.customobject3.query.QueryType customPickList25) {
this.customPickList25 = customPickList25;
} |
50fbe3a3-8a2d-4e8c-9459-1215719f000e | public java.lang.String getCustomPickList18() {
return this.customPickList18;
} |
51f82363-c8f0-4dcf-8507-6b4afaf9928b | public java.lang.String getOriginatingPartnerIntegrationId() {
return this.originatingPartnerIntegrationId;
} |
42199f24-cfcf-4738-b17e-dc2213d7e700 | public void setCustomNumber51(java.math.BigDecimal customNumber51) {
this.customNumber51 = customNumber51;
} |
a33d383f-794a-47f1-9faa-e2a4269e94be | public Level(String path){
LoadLevel(path);
generateLevel();
} |
d9905f31-662e-43c6-9ac9-58390edebd72 | public void setCustomText0(java.lang.String customText0) {
this.customText0 = customText0;
} |
481b13ff-f03e-4707-815a-00495e25e555 | public void setCustomCurrency14(java.math.BigDecimal customCurrency14) {
this.customCurrency14 = customCurrency14;
} |
0e548faf-342d-4dac-b454-32282329f9c9 | public java.lang.Integer getCustomInteger5() {
return this.customInteger5;
} |
d6787a87-76f0-499c-b40f-5483e25ea395 | public crmondemand.xml.customobject6.query.QueryType getCustomDate45() {
return this.customDate45;
} |
047c16ea-0304-459b-8565-9bc32dd3460a | public void setZCustomBoolean31(java.lang.Boolean zCustomBoolean31) {
this.zCustomBoolean31 = zCustomBoolean31;
} |
f7738f5f-2787-4556-baff-04630807d377 | public boolean hasText() {return m_sText != null;} |
b08c7e39-e859-4c5f-91c8-450d067cf7f3 | public java.util.Calendar getCustomDate44() {
return this.customDate44;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.