id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
bf02c06c-b283-4855-82e0-3962e86ffeec | public void setCustomCurrency14(java.math.BigDecimal customCurrency14) {
this.customCurrency14 = customCurrency14;
} |
efd70135-42c9-4d5e-a0ae-b852055f79e0 | public void setType(int type) {
this.type = type;
} |
1f4bebe2-1766-432a-b35c-6ea5559a7812 | public void setCustomDate38(crmondemand.xml.contact.query.QueryType customDate38) {
this.customDate38 = customDate38;
} |
9068c19f-c05a-40d2-846b-5047ac9229ef | public java.lang.String getCustomPickList56() {
return this.customPickList56;
} |
09123116-de8d-4742-b045-bb6cee668eec | public java.lang.String getCustomText55() {
return this.customText55;
} |
2cf3e5bb-7493-408c-b5d5-a2eca7592459 | public void setSolutionExternalSystemId(crmondemand.xml.customobject6.query.QueryType solutionExternalSystemId) {
this.solutionExternalSystemId = solutionExternalSystemId;
} |
3caf8bf3-d42d-4be5-80a9-dc847432a0c2 | public void setDealRegistrationId(java.lang.String dealRegistrationId) {
this.dealRegistrationId = dealRegistrationId;
} |
8fb59442-5569-42ac-98bb-d83dff06784b | public crmondemand.xml.customobject6.query.QueryType getHouseholdId() {
return this.householdId;
} |
491dda7b-6104-46a0-ac9a-83741b0fae69 | public void renderGrid(Bitmap b, int xp, int yp) {
int spacing = 0;
for(int y = 0; y < height ; y++) {
for(int x = 0; x < width; x++) {
int xx = xp + (x + spacing) * 28;
int yy = yp + (y + spacing) * 26;
ImageManager.renderFromImage("tileMap", b, xx, yy, 14*16, 16, false);
ImageManager.renderFromImage("tileMap", b, xx + 14, yy, 14*16 + 1, 16, false);
ImageManager.renderFromImage("tileMap", b, xx, yy + 14, 15*16, 16, false);
ImageManager.renderFromImage("tileMap", b, xx + 14, yy + 14, 15*16 + 1, 16, false);
if(items[x + y * width] != null) {
items[x + y * width].render(b, xx + 6, yy + 6);
}
}
}
} |
a6315a67-a1df-4dbf-8b01-4abb07bb3ca7 | private int getTeamIndex(Team team) {
Node node = new Node();
node = head;
for (int i = 0; i < length; i++) {
if (node.getTeam() == team) {
return i;
}
node = node.getNext();
}
return -1;
} |
cacf07e2-5865-40fa-bb3a-bafc901577cb | public void setCustomNumber8(crmondemand.xml.customobject6.query.QueryType customNumber8) {
this.customNumber8 = customNumber8;
} |
0599b97b-6174-4c28-927d-31d6544868c3 | public void setCustomNumber61(java.math.BigDecimal customNumber61) {
this.customNumber61 = customNumber61;
} |
93c6e99e-097d-40c7-ac4f-27e0ddc61dde | public crmondemand.xml.customobject6.query.QueryType getCampaignType() {
return this.campaignType;
} |
9200c1b5-72ce-4be6-8d54-4652e025e96c | public void setCreatedByLastName(crmondemand.xml.customobject6.query.QueryType createdByLastName) {
this.createdByLastName = createdByLastName;
} |
d1a686ec-150a-4f6b-ae68-239f8c87e75f | public PanelCircular(TableroCircular tablero) {
this.tablero = tablero;
setLayout(null);
} |
c0e2b33f-13ab-4fd4-bfc4-e8f96ea6e395 | public crmondemand.xml.customobject6.query.QueryType getCustomCurrency151() {
return this.customCurrency151;
} |
83f6b4a5-a809-4027-b12f-c1ea7158724e | public void setCustomPickList84(java.lang.String customPickList84) {
this.customPickList84 = customPickList84;
} |
1bc94bf8-e891-49fc-bfaa-850db35bcc21 | public void setCustomInteger6(crmondemand.xml.contact.query.QueryType customInteger6) {
this.customInteger6 = customInteger6;
} |
d2ac7a1f-e621-4ac9-949a-baf3946b19c4 | public java.lang.String getResolutionCode() {
return this.resolutionCode;
} |
49e54fce-2c92-4d44-b513-a793fd34648b | @Override
public boolean frame(Area myArea, MOB accused, MOB framed)
{
if(!theLawIsEnabled())
return false;
final Law laws=getLaws(myArea,false);
LegalWarrant W=null;
if(laws!=null)
{
for(int i=0;(W=laws.getWarrant(accused,i))!=null;i++)
{
if(W.criminal()==accused)
{
W.setCriminal(framed);
return true;
}
}
}
return false;
} |
19b0a3f2-e5bd-4e26-abea-e7684c9ef196 | public void execute() {
StringBuilder sb = new StringBuilder();
sb.append(card.getName()).append(" - choose: 3/3, 2/2 flying, 1/6 defender");
ability.setStackDescription(sb.toString());
AllZone.getStack().addSimultaneousStackEntry(ability);
} |
1cb5b1af-19a7-4900-8f9e-357ea5bdfefc | public WinkelDatabaseTekstLezer(WinkelDatabaseHandler handler){
this.handler = handler;
} |
2c0fc72e-6f89-43df-89f5-55eab4b5995f | public crmondemand.xml.customobject6.query.QueryType getFundRequestExternalSystemId() {
return this.fundRequestExternalSystemId;
} |
d67380e7-631b-4c19-a0ad-8ad72fa5e581 | public void test_plusDays_negative() {
LocalDate t = this.TEST_2007_07_15.plusDays(-1);
assertEquals(t, LocalDate.of(2007, 7, 14));
}
@Test(groups = { "tck" } |
b72999ed-08b3-4414-9d7a-c1652aa7da0e | public java.util.Calendar getCustomDate47() {
return this.customDate47;
} |
3a2537ce-7bac-449d-834a-f538aff909ea | public java.lang.String getMDFRequestExternalSystemId() {
return this.mDFRequestExternalSystemId;
} |
17563e3c-147f-47b1-8c5a-cbb27bc11fa9 | public Object visit(Rule_cmdRemIntLit8 rule)
{
if (!terminal) System.out.println();
System.out.print("<cmdRemIntLit8>");
terminal = false;
visitRules(rule.rules);
if (!terminal) System.out.println();
System.out.print("</cmdRemIntLit8>");
terminal = false;
return null;
} |
60e7b0d1-f2bc-4d90-b23a-e61b4c77c986 | Music090(){
} |
03b3c009-0bf4-40c9-b0d9-0e13e19dcfcc | testingPackageClass2() {
} |
2f3186b1-6462-437a-8545-a0958db00c3d | static public boolean isName(String name){
return name.matches("[a-zA-Z\\s]+");
} |
7c22b0ae-4ea3-4fd9-a4d6-bac1d41b7324 | */
public static Pointer<PyObject > PyMemoryView_FromBuffer(Pointer<Py_buffer > info) {
return Pointer.pointerToAddress(PyMemoryView_FromBuffer(Pointer.getPeer(info)), PyObject.class);
} |
46abf324-b64e-49e9-93c5-f6200c8227ce | public java.util.Calendar getFinancialAccountExchangeDate() {
return this.financialAccountExchangeDate;
} |
078a9737-950e-4ee8-9b99-9a19d41292ba | public crmondemand.xml.contact.query.QueryType getCustomPhone15() {
return this.customPhone15;
} |
39790233-9d19-49f3-8895-939f2cc64adb | public void setPolicyFaceAmount(crmondemand.xml.contact.query.QueryType policyFaceAmount) {
this.policyFaceAmount = policyFaceAmount;
} |
facbe0b6-d45a-488b-8422-6106773a5140 | public crmondemand.xml.customobject3.query.QueryType getCustomObject15ExternalSystemId() {
return this.customObject15ExternalSystemId;
} |
4e75411c-bf68-467b-b777-66ec514227b7 | public void setCustomText64(java.lang.String customText64) {
this.customText64 = customText64;
} |
c99d8b65-158c-48cc-a242-b56da255eb05 | public void setPortfolioAccountType(crmondemand.xml.customobject6.query.QueryType portfolioAccountType) {
this.portfolioAccountType = portfolioAccountType;
} |
a876208a-2231-48bf-a11b-a41461409990 | public void setCustomText56(java.lang.String customText56) {
this.customText56 = customText56;
} |
0629eb5a-2383-49c8-8438-b12e4fb62c7a | public java.lang.String getCustomText65() {
return this.customText65;
} |
8d31815e-d3ca-4325-9895-3157ccd2ed07 | public crmondemand.xml.customobject6.query.QueryType getFundRequestExternalSystemId() {
return this.fundRequestExternalSystemId;
} |
3389c55c-feb6-47f1-9574-5f43029fc9ef | public void setCustomInteger33(java.lang.Integer customInteger33) {
this.customInteger33 = customInteger33;
} |
e176a716-7cc9-4205-9bab-f098cc786d22 | @Override
public void resolve() {
if (c.getController().isHuman()) {
payManaDuringAbilityResolve(sb.toString(), c.getEchoCost(), paidCommand, unpaidCommand);
} else //computer
{
if (ComputerUtil.canPayCost(aiPaid))
ComputerUtil.playNoStack(aiPaid);
else
AllZone.getGameAction().sacrifice(c);
}
} |
8f4da410-d140-4fc6-994e-108da0f08bbe | public void setCustomPhone19(java.lang.String customPhone19) {
this.customPhone19 = customPhone19;
} |
9da5b062-be22-4bf8-af20-6516aefe73e6 | public void setCustomPickList19(crmondemand.xml.opportunity.query.QueryType customPickList19) {
this.customPickList19 = customPickList19;
} |
e23d348c-70f6-4059-915e-fd82ecb86b32 | public void setCustomObject6Name(java.lang.String customObject6Name) {
this.customObject6Name = customObject6Name;
} |
0256322a-9663-495d-b29f-b02988f7d501 | public java.lang.String getCustomObject1ExternalSystemId() {
return this.customObject1ExternalSystemId;
} |
7d948236-1dfc-4985-9638-4c51cd7cb1e4 | public crmondemand.xml.customobject6.query.QueryType getCustomInteger6() {
return this.customInteger6;
} |
d43d638b-8378-4b04-bee4-d58b9b0f0d5d | public java.util.Calendar getOpportunityCloseDate() {
return this.opportunityCloseDate;
} |
0573be00-4786-426d-ace8-7e9cc7be82b3 | public crmondemand.xml.customobject3.query.QueryType getCustomPickList77() {
return this.customPickList77;
} |
44f88817-dd74-435a-b868-15df8dce6d65 | public crmondemand.xml.customobject6.query.QueryType getModId() {
return this.modId;
} |
e2c80b4f-6287-4335-bf02-efc2395f4f7b | public java.lang.String getCustomText31() {
return this.customText31;
} |
88c9c235-8351-422d-a010-88f228a93d65 | public crmondemand.xml.customobject3.query.QueryType getCustomObject14ExternalSystemId() {
return this.customObject14ExternalSystemId;
} |
02b851b4-1cb4-48e6-b481-1e21ce6bf32a | public void setContactEmail(java.lang.String contactEmail) {
this.contactEmail = contactEmail;
} |
4d153661-9585-48ec-bbc7-7ff41d1d473e | public crmondemand.xml.customobject3.query.QueryType getCustomText42() {
return this.customText42;
} |
fe24f1eb-3fc0-45c9-8776-fd90c6ef4199 | public crmondemand.xml.customobject3.query.QueryType getCustomPickList87() {
return this.customPickList87;
} |
c8e6c22f-8028-4611-a816-01626ff83b3c | public java.lang.Boolean getCustomBoolean23() {
return this.customBoolean23;
} |
ebf5eadc-a366-4248-a95a-897e014b81b7 | public crmondemand.xml.contact.query.QueryType getCustomPickList0() {
return this.customPickList0;
} |
e8c270f4-16f7-4448-aa6e-97c0ec18a90e | public Unit getOwner() {
return owner;
} |
6dedc6be-4ee9-47d4-b3cc-f0ef56278b53 | public void setSize(double width, double height) {
myWidth = width;
myHeight = height;
} |
27df30e3-5797-40b5-908b-1851e5d7712e | public Pengar getPris(); |
dd820a84-3331-4906-9655-1aaa789bdc08 | public void setAccreditationNum(crmondemand.xml.opportunity.query.QueryType accreditationNum) {
this.accreditationNum = accreditationNum;
} |
ebfa4689-b609-4526-aa56-42ea7b4b9843 | public crmondemand.xml.contact.query.QueryType getMDFRequestIntegrationId() {
return this.mDFRequestIntegrationId;
} |
769f1709-fb5f-4080-8b99-4e293b2192a2 | public void setCustomNumber27(java.math.BigDecimal customNumber27) {
this.customNumber27 = customNumber27;
} |
2b7c93a3-8b98-4d21-a5ab-ca74fbcd0ea9 | public crmondemand.xml.contact.query.QueryType getFinancialAccountCurrencyCode() {
return this.financialAccountCurrencyCode;
} |
100a0e53-1cce-417e-b8cf-4ef571f3622d | public crmondemand.xml.customobject6.query.QueryType getCustomNumber51() {
return this.customNumber51;
} |
c5d28d52-1f9c-484e-b0ec-a05cad0e76f3 | @Override
public void startDocument() throws SAXException {
System.err.println("ʼĵ");
} |
996d2ec0-d6e3-42e6-9100-4391040da4e7 | public java.lang.String getTransferFrom() {
return this.transferFrom;
} |
9a958756-cb73-4ab3-9d7a-0d921f67a39c | public java.lang.String getContactLastName() {
return this.contactLastName;
} |
d7108c00-3cfb-4e7a-8a5d-825bd1046d32 | public crmondemand.xml.contact.query.QueryType getBusinessPlanDescription() {
return this.businessPlanDescription;
} |
09f79fd2-737f-4f77-89fe-d8b290459508 | public java.math.BigDecimal getCustomCurrency6() {
return this.customCurrency6;
} |
ef2029eb-171e-40a3-a333-b96e19cdbe42 | public void setOpportunityName(java.lang.String opportunityName) {
this.opportunityName = opportunityName;
} |
b23958d6-9a35-4624-99b6-225d8967ec1c | public void setCustomPickList78(crmondemand.xml.customobject6.query.QueryType customPickList78) {
this.customPickList78 = customPickList78;
} |
0e485e31-3534-4e49-988c-8f2d4c72734d | public void setCustomNumber24(crmondemand.xml.customobject6.query.QueryType customNumber24) {
this.customNumber24 = customNumber24;
} |
3cddff37-9204-41bf-97ec-d65638e13162 | public java.math.BigDecimal getCustomNumber18() {
return this.customNumber18;
} |
31bd6edd-b715-416d-adf2-7079d9c6303d | public java.lang.Integer getModId() {
return this.modId;
} |
fb497103-4f48-4ae2-bc17-e959ca205984 | private static Color brighten(Color initial, double factor)
{
int red = initial.getRed();
int green = initial.getGreen();
int blue = initial.getBlue();
red = (int) (red + factor > 255 ? 255 : red + factor);
green = (int) (green + factor > 255 ? 255 : green + factor);
blue = (int) (blue + factor > 255 ? 255 : blue + factor);
return new Color(red, green, blue);
} |
343c962a-3209-4804-a3a7-c82d881e315f | public void setCustomObject9Type(java.lang.String customObject9Type) {
this.customObject9Type = customObject9Type;
} |
fd510448-a8f6-4f59-b9f6-8ec5900aa2d5 | public void setCustomDate40(java.util.Calendar customDate40) {
this.customDate40 = customDate40;
} |
e621043b-1a19-4edb-8755-64ebb6b1521f | public InputStream getEncryptionInputStream(
Reference objectReference,
byte[] encryptionKey,
Hashtable decodeParams,
InputStream input) {
// find the name of the crypt filter used in the CF dictionary
CryptFilterEntry cryptFilter = null;
if (decodeParams != null){
Name filterName = (Name)decodeParams.get("Name");
// identity means don't use the cryprt filter or encryption at all
// for the stream.
if (filterName.equals("Identity")){
return input;
}else{
// find the filter name in the encryption dictionary
cryptFilter = encryptionDictionary.
getCryptFilter().getCryptFilterByName(filterName);
}
}
// We default to the method specified in by StrmF in the security dictionary
else if (encryptionDictionary.getCryptFilter() != null){
cryptFilter = encryptionDictionary.getCryptFilter().getCryptFilterByName(
encryptionDictionary.getStmF());
}
// get the method used for the general encryption algorithm
String algorithmType;
if (cryptFilter != null){
algorithmType = cryptFilter.getCryptFilterMethod().getName();
}else{
algorithmType = StandardEncryption.ENCRYPTION_TYPE_V2;
}
return standardEncryption.generalEncryptionInputStream(
objectReference, encryptionKey, algorithmType, input);
} |
14a0280b-3479-4948-99e0-74328f48078c | public void setCustomCurrency24(java.math.BigDecimal customCurrency24) {
this.customCurrency24 = customCurrency24;
} |
67bbe145-6aa6-4c39-88a8-dd01a7ba2f58 | public Object visit(Rule_codeRegister rule)
{
if (!terminal) System.out.println();
System.out.print("<codeRegister>");
terminal = false;
visitRules(rule.rules);
if (!terminal) System.out.println();
System.out.print("</codeRegister>");
terminal = false;
return null;
} |
3401275a-78ba-49f2-b478-66da3734eb13 | public java.math.BigDecimal getCustomNumber45() {
return this.customNumber45;
} |
0743c0cb-d084-42bb-b9b9-8bc2e6baca1e | public void setCustomNumber4(crmondemand.xml.customobject6.query.QueryType customNumber4) {
this.customNumber4 = customNumber4;
} |
af6b21db-06fc-4504-99a2-b779a6fecf3b | public void setProvince(crmondemand.xml.opportunity.query.QueryType province) {
this.province = province;
} |
097b10ae-51dd-4617-891f-211f3bb65d52 | public void setName(java.lang.String name) {
this.name = name;
} |
46503fc4-5a11-4832-a195-e328cb38c9fb | public void setCustomDate59(crmondemand.xml.customobject6.query.QueryType customDate59) {
this.customDate59 = customDate59;
} |
b3bba072-fdd4-40e4-91db-e4364dff7f57 | public java.util.Calendar getFinancialAccountExchangeDate() {
return this.financialAccountExchangeDate;
} |
59632cfd-7a1a-435c-89da-92b6a11afc36 | public crmondemand.xml.contact.query.QueryType getCustomDate9() {
return this.customDate9;
} |
4697dded-2d1c-45ed-945f-1fe89e87f76f | public Parser()
{
commands = new CommandWords();
reader = new Scanner(System.in);
} |
3151002f-c1ba-4d37-b07c-1001ae05d24a | public void setCustomPhone5(java.lang.String customPhone5) {
this.customPhone5 = customPhone5;
} |
23f5ce7f-d9df-4937-bfff-d9b96aed4345 | public T delete() {
T x = null;
if (!isEmpty()) {
x = front.data;
front = front.link;
}
return x;
} |
c1746255-4ae1-414e-bb9b-65854534ff3e | public void setCustomPhone2(java.lang.String customPhone2) {
this.customPhone2 = customPhone2;
} |
20bef523-1eb5-41a1-97f4-ee1920c55c02 | public java.lang.String getProductCategory() {
return this.productCategory;
} |
761fd213-d015-4aac-9b92-c0e05f862039 | public java.lang.String getCustomPickList12() {
return this.customPickList12;
} |
3ae53f55-55ea-4f9b-ab83-34dbce1ff105 | public crmondemand.xml.customobject3.query.QueryType getCourseIdentifier() {
return this.courseIdentifier;
} |
03f2ef97-4285-4999-bc1d-01d5d93ed416 | public void setCustomPickList88(crmondemand.xml.contact.query.QueryType customPickList88) {
this.customPickList88 = customPickList88;
} |
e68571a5-1e6b-4cfd-8c67-08ff63f65d9d | @Override
public void stop() throws Exception {
gameloop.stop();
super.stop();
} |
603a9248-95c0-4918-9dbc-f45b87a23501 | public void setCustomDate30(java.util.Calendar customDate30) {
this.customDate30 = customDate30;
} |
f2713d83-5473-4ca2-b540-749f6575871c | public java.lang.String getAccreditationId() {
return this.accreditationId;
} |
5394cf91-3513-4112-963d-29989ac8bbfa | public void setCustomDate7(crmondemand.xml.opportunity.query.QueryType customDate7) {
this.customDate7 = customDate7;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.