id
stringlengths 36
36
| text
stringlengths 1
1.25M
|
---|---|
2201e81e-8747-474b-9121-ef581037334b | public java.lang.String getCustomText3() {
return this.customText3;
} |
241d634d-b40e-45df-9b95-90fd0b70696c | PyObject __lxor(final PyObject o, PyMultiarray result) {
PyMultiarray a, b = PyMultiarray.asarray(o);
final char type = PyMultiarray.commonType(this._typecode, b._typecode);
a = PyMultiarray.asarray(this, type);
b = PyMultiarray.asarray(b, type);
a = PyMultiarray.stretchAxes(a, b);
b = PyMultiarray.stretchAxes(b, this);
if (result == null) {
result = PyMultiarray.getResultArray(a, b, 'i');
} else {
PyMultiarray.checkResultArray(result, a, b);
}
if (result.dimensions.length == 0) {
result.__setitem__(
Py.Ellipsis,
a.__lxor(PyMultiarray.stretchAxes(b)).__getitem__(0));
} else {
switch (type) {
case '1':
PyMultiarray.lxorByte(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 's':
PyMultiarray.lxorShort(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'i':
PyMultiarray.lxorInt(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'l':
PyMultiarray.lxorLong(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'f':
PyMultiarray.lxorFloat(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'd':
PyMultiarray.lxorDouble(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'O':
PyMultiarray.lxorObject(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'F':
PyMultiarray.lxorComplexFloat(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
case 'D':
PyMultiarray.lxorComplexDouble(
a.start,
a,
b.start,
b,
result.start,
result,
0);
break;
default:
throw Py.ValueError("typecode must be in [1silfFdDO]");
}
}
return PyMultiarray.returnValue(result);
} |
097145a4-300e-4e1c-bc93-ffdb9812231d | public void setObjectiveType(java.lang.String objectiveType) {
this.objectiveType = objectiveType;
} |
d35bfbfd-824f-4550-8816-c81d965976a8 | public void setChannelDurationMax(float channelDurationMax) {
this.channelDurationMax = channelDurationMax;
} |
b7003ffb-eb36-4366-a7bd-1d7f76fd532c | public void setCustomBoolean13(crmondemand.xml.contact.query.QueryType customBoolean13) {
this.customBoolean13 = customBoolean13;
} |
c1318dbd-68b7-4a69-ab68-025bcb269d99 | public void setExchangeDate(crmondemand.xml.customobject3.query.QueryType exchangeDate) {
this.exchangeDate = exchangeDate;
} |
9ccd844a-0c49-4721-a1f1-ed88ba969566 | public java.lang.String getProgramName() {
return this.programName;
} |
feecf290-e6ce-4251-a09e-78c9721c65b7 | double[] score(int a, int move); |
e4e6bfa0-09f1-4a61-a4b3-b47923e4992b | public crmondemand.xml.contact.query.QueryType getCustomText52() {
return this.customText52;
} |
de810186-458f-4d19-894b-fd8588a89c46 | * @return Length of padded vector
*/
public static int XC_padded_length(final int length) {
// Length of padding for FFT.
// Find the largest power of two that is less than 2*length.
return (int) Math.pow(
2.0,
Math.ceil(Math.log(2.0 * length) / Math.log(2.0)));
} |
1582c293-7085-4071-8590-a79c88d7ae4e | LivreService(ILivreDAO livreDAO) throws InvalidDAOException {
super();
if(livreDAO == null) {
throw new InvalidDAOException("Le DAO de livre ne peut être null");
}
setLivreDAO(livreDAO);
} |
2224eb6b-a980-4666-906d-fc43b1040375 | public crmondemand.xml.customobject6.query.QueryType getCustomCurrency19() {
return this.customCurrency19;
} |
17280783-a9ed-49e4-b80a-f003a25c7bd6 | public crmondemand.xml.customobject3.query.QueryType getCustomCurrency0() {
return this.customCurrency0;
} |
5f74a66f-8f0e-4a7b-82f3-d464d27e1c89 | public void execute() {
// remove all static effects
for (int i = 0; i < storage.size(); i++) {
removeStaticEffect(storage.get(i));
}
//clear the list
storage = new ArrayList<StaticEffect>();
//Gather Cards on the Battlefield with the stPump Keyword
CardList cards_WithKeyword = AllZoneUtil.getCardsInPlay();
cards_WithKeyword = cards_WithKeyword.getKeywordsContain("stPump");
// check each card
for (int i = 0; i < cards_WithKeyword.size(); i++) {
Card cardWithKeyword = cards_WithKeyword.get(i);
ArrayList<String> keywords = cardWithKeyword.getKeyword();
// check each keyword of the card
for (int j = 0; j < keywords.size(); j++) {
String keyword = keywords.get(j);
if (keyword.startsWith("stPump")) {
StaticEffect se = new StaticEffect(); //create a new StaticEffect
se.setSource(cardWithKeyword);
se.setKeywordNumber(j);
//get the affected cards
String k[] = keyword.split(":", 5);
if (specialConditionsMet(cardWithKeyword, k[3])) { //special Conditions are Threshold, etc.
final String affected = k[1];
final String specific[] = affected.split(",");
CardList affectedCards = AffectedCards(cardWithKeyword, k); // options are All, Self, Enchanted etc.
affectedCards = affectedCards.getValidCards(specific, cardWithKeyword.getController(), cardWithKeyword);
se.setAffectedCards(affectedCards);
String[] pt = k[2].split("/");
Card cardWithXValue;
String xString = cardWithKeyword.getSVar("X").split("$")[0];
Card cardWithYValue;
String yString = cardWithKeyword.getSVar("Y").split("$")[0];
if (xString.startsWith("Imprinted") && !cardWithKeyword.getImprinted().isEmpty()) {
cardWithXValue = cardWithKeyword.getImprinted().get(0);
} else cardWithXValue = cardWithKeyword;
if (yString.startsWith("Imprinted") && !cardWithKeyword.getImprinted().isEmpty()) {
cardWithYValue = cardWithKeyword.getImprinted().get(0);
} else cardWithYValue = cardWithKeyword;
int x = 0;
if (pt[0].contains("X") || pt[1].contains("X"))
x = CardFactoryUtil.xCount(cardWithXValue, cardWithKeyword.getSVar("X").split("\\$")[1]);
se.setXValue(x);
int y = 0;
if (pt[1].contains("Y"))
y = CardFactoryUtil.xCount(cardWithYValue, cardWithKeyword.getSVar("Y").split("\\$")[1]);
se.setYValue(y);
addStaticEffects(cardWithKeyword, affectedCards, k[2], x, y); //give the boni to the affected cards
storage.add(se); // store the information
}
}
}
}
} |
83cb3f58-816e-494d-aedf-436fc21a4517 | public crmondemand.xml.customobject6.query.QueryType getCampaignIntegrationId() {
return this.campaignIntegrationId;
} |
e21b1318-2e49-4f97-b08d-b88f0eb80636 | public List<String> DohvatiSljedRoditelja(){
return mSljedRoditeljaTrenutacnogCvora;
} |
90c0e4df-d59c-45ba-ad1c-4d094e9cc203 | public Python27Library PyOS_ReadlineFunctionPointer(Pointer<Python27Library.PyOS_ReadlineFunctionPointer_callback > PyOS_ReadlineFunctionPointer) {
try {
{
BridJ.getNativeLibrary("python27").getSymbolPointer("PyOS_ReadlineFunctionPointer").as(DefaultParameterizedType.paramType(Pointer.class, Python27Library.PyOS_ReadlineFunctionPointer_callback.class)).set(PyOS_ReadlineFunctionPointer);
return this;
}
}catch (Throwable $ex$) {
throw new RuntimeException($ex$);
}
} |
1598c25b-5100-43b2-ae33-7dcf1585c89c | public void setBusinessPlanType(crmondemand.xml.opportunity.query.QueryType businessPlanType) {
this.businessPlanType = businessPlanType;
} |
a4f9f44f-0981-49b7-829a-a83cb4c5de30 | public java.math.BigDecimal getCustomNumber126() {
return this.customNumber126;
} |
7533e3af-61ff-4663-ac80-f88f6970690d | public void setCustomText45(crmondemand.xml.contact.query.QueryType customText45) {
this.customText45 = customText45;
} |
46e6daf3-8ef1-443c-b050-f6c07e6b2d2a | public void setCustomNumber26(java.math.BigDecimal customNumber26) {
this.customNumber26 = customNumber26;
} |
d785ec47-9fc9-4414-977e-7b6c8c686718 | public void setCustomPhone3(crmondemand.xml.customobject3.query.QueryType customPhone3) {
this.customPhone3 = customPhone3;
} |
61851a64-3c6c-43b8-bb3d-85992d490c3f | public void setCustomObject2Name(crmondemand.xml.customobject6.query.QueryType customObject2Name) {
this.customObject2Name = customObject2Name;
} |
0e5783aa-6035-402a-acc4-cf9cad114967 | public void setCurrencyCode(crmondemand.xml.contact.query.QueryType currencyCode) {
this.currencyCode = currencyCode;
} |
c9cfa180-57d2-48e2-b2e7-75d84dbc0b7a | public void setServiceRequestStatus(java.lang.String serviceRequestStatus) {
this.serviceRequestStatus = serviceRequestStatus;
} |
2a32267b-9d5d-4166-82f4-8a1c7e513a74 | public java.util.Calendar getCustomDate17() {
return this.customDate17;
} |
9705ea89-dca1-46e8-b646-d4e1636beb40 | public SelectionSortTest(int s, int n) {
super(s, n);
} |
93d7abb0-d854-428d-aa4b-bf4df7634c53 | public java.math.BigDecimal getCustomNumber32() {
return this.customNumber32;
} |
d92b55b6-0b3c-4435-949a-ed5f7bcaed18 | @Override
public int getAnima() {
return 100;
} |
d236d711-d7d9-48c1-8817-f872f92c50e2 | public void setModifiedBy(crmondemand.xml.contact.query.QueryType modifiedBy) {
this.modifiedBy = modifiedBy;
} |
7df82f9f-9fd4-4bce-a715-c2c26f3d03a0 | public static JOutPiqi.message parseFrom(java.io.InputStream input)
throws java.io.IOException {
return newBuilder().mergeFrom(input).buildParsed();
} |
6c06966e-5bbd-483f-82e5-8925a9d4cd8a | public void setCustomDate58(crmondemand.xml.customobject6.query.QueryType customDate58) {
this.customDate58 = customDate58;
} |
121cb7d0-1821-4a62-819d-87b5077c8d01 | public crmondemand.xml.contact.query.QueryType getCustomDate46() {
return this.customDate46;
} |
e559bacb-deec-4cc6-acf1-3fbdbc210cb7 | public void setDelegatedByExternalSystemId(crmondemand.xml.contact.query.QueryType delegatedByExternalSystemId) {
this.delegatedByExternalSystemId = delegatedByExternalSystemId;
} |
9b8bb193-62b9-4e5a-8e9e-d23bf1ee9f6e | public void setCustomDate19(java.util.Calendar customDate19) {
this.customDate19 = customDate19;
} |
a9cbec8c-e982-4df0-8d59-7c5de447e18c | public synchronized void loseContact(int id) {
dfs.enforceReplication(id, slaveMapTaskList.get(id));
dfs.removeSlave(id);
slaveMapTaskList.remove(id);
slaveReduceTaskList.remove(id);
} |
ae99499f-a31d-4061-a512-e93e4a893009 | @Override
public void engage() {
super.engage();
this.textVisual = new TextVisual(getCore(), this.fontRes);
if (this.colorResource != null) {
ResourceService resSrv = ResourceService.getInstance(getCore());
setColor((ReadableColor) resSrv.getResource(this.colorResource));
} else {
this.textVisual.setColor(this.textColor);
}
this.textVisual.setScale(this.scale);
this.textVisual.setAllignment(this.alignment);
if (this.text != null) {
this.textVisual.setText(this.text);
}
getBaseNode().addVisual(this.textVisual);
} |
635e473a-0d7a-4688-bf35-f1f3946fb3bf | @Override
public PretDTO getPret(Session session,
String idPret) throws InvalidHibernateSessionException,
ServiceException {
try {
return (PretDTO) getPretDAO().get(session,
idPret);
} catch(DAOException daoException) {
throw new ServiceException(daoException);
}
} |
d7b486dc-d1dd-4a98-b36a-af9ac58c8511 | public crmondemand.xml.customobject6.query.QueryType getCustomCurrency6() {
return this.customCurrency6;
} |
37a80796-0b05-43e7-bf73-62011edac886 | public void setCustomText71(crmondemand.xml.contact.query.QueryType customText71) {
this.customText71 = customText71;
} |
7f874d88-c207-4d7f-a55b-87d76f927b39 | @SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
private void initComponents() {
jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jComboBox1 = new javax.swing.JComboBox();
jLabel3 = new javax.swing.JLabel();
jLabel4 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jLabel6 = new javax.swing.JLabel();
jLabel7 = new javax.swing.JLabel();
jTextField1 = new javax.swing.JTextField();
jTextField2 = new javax.swing.JTextField();
jTextField3 = new javax.swing.JTextField();
jTextField4 = new javax.swing.JTextField();
jTextField5 = new javax.swing.JTextField();
jScrollPane1 = new javax.swing.JScrollPane();
jTextArea1 = new javax.swing.JTextArea();
jButton1 = new javax.swing.JButton();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel1.setHorizontalAlignment(javax.swing.SwingConstants.CENTER);
jLabel1.setText("INPUT DATA KENDARAAN");
jLabel2.setText("Jenis");
jComboBox1.setModel(new javax.swing.DefaultComboBoxModel(new String[] { "Sepeda Motor", "Mobil" }));
jComboBox1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jComboBox1ActionPerformed(evt);
}
});
jLabel3.setText("No Plat");
jLabel4.setText("No Mesin");
jLabel5.setText("Type");
jLabel6.setText("Jumlah Pintu");
jLabel7.setText("Jumlah Roda");
jTextField2.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyTyped(java.awt.event.KeyEvent evt) {
jTextField2KeyTyped(evt);
}
});
jTextField4.setText("0");
jTextField4.setEnabled(false);
jTextField4.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyTyped(java.awt.event.KeyEvent evt) {
jTextField4KeyTyped(evt);
}
});
jTextField5.setText("2");
jTextField5.setEnabled(false);
jTextField5.addKeyListener(new java.awt.event.KeyAdapter() {
public void keyTyped(java.awt.event.KeyEvent evt) {
jTextField5KeyTyped(evt);
}
});
jTextArea1.setColumns(20);
jTextArea1.setRows(5);
jScrollPane1.setViewportView(jTextArea1);
jButton1.setText("Proses");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jLabel1, javax.swing.GroupLayout.DEFAULT_SIZE, 230, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jScrollPane1, javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jButton1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createSequentialGroup()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jLabel7, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel6, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel5, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel4, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel3, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 78, Short.MAX_VALUE))
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 46, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING, false)
.addComponent(jComboBox1, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.PREFERRED_SIZE, 119, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGroup(javax.swing.GroupLayout.Alignment.LEADING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(jTextField5, javax.swing.GroupLayout.DEFAULT_SIZE, 119, Short.MAX_VALUE)
.addComponent(jTextField4, javax.swing.GroupLayout.DEFAULT_SIZE, 119, Short.MAX_VALUE)
.addComponent(jTextField3, javax.swing.GroupLayout.DEFAULT_SIZE, 119, Short.MAX_VALUE)
.addComponent(jTextField2, javax.swing.GroupLayout.DEFAULT_SIZE, 119, Short.MAX_VALUE)
.addComponent(jTextField1))))))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addComponent(jLabel1)
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jComboBox1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)
.addComponent(jLabel3)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel4)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel5)
.addComponent(jTextField3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel6)
.addComponent(jTextField4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel7)
.addComponent(jTextField5, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGap(18, 18, 18)
.addComponent(jButton1)
.addGap(13, 13, 13)
.addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 131, javax.swing.GroupLayout.PREFERRED_SIZE)
.addContainerGap(37, Short.MAX_VALUE))
);
pack();
}// </editor-fold>//GEN-END:initComponents |
da530690-efdf-4c0c-8536-f197c7f440d8 | public void send_Message(String str) {
try {
dos.writeUTF(str);
}
catch (IOException e) {
append("Message Send Error\n");
}
} |
0ea79c8b-6da1-47f6-8810-7a816a069029 | public void setCustomNumber6(java.math.BigDecimal customNumber6) {
this.customNumber6 = customNumber6;
} |
67bcd15c-eddd-4e3f-ace5-43fd8315d353 | public void setCustomPickList42(java.lang.String customPickList42) {
this.customPickList42 = customPickList42;
} |
737058ed-f35a-4467-8d19-79db170fe088 | public Document HTMLGetRelations(String html, String url, AlchemyAPI_RelationParams params)
throws IOException, SAXException,
ParserConfigurationException, XPathExpressionException
{
CheckHTML(html, url);
params.setUrl(url);
params.setHtml(html);
return POST("HTMLGetRelations", "html", params);
} |
a61fc103-e7e9-4eaa-8093-ba0e8110de6f | public Font(String path, float size) {
try {
font = java.awt.Font.createFont(java.awt.Font.TRUETYPE_FONT, new FileInputStream(path));
font = font.deriveFont(size);
fontSize = size;
BufferedImage bufImg = new BufferedImage(1, (int) fontSize, BufferedImage.TYPE_INT_ARGB);
Graphics2D g2d = bufImg.createGraphics();
g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
g2d.setFont(font);
fontMetrics = g2d.getFontMetrics();
g2d.dispose();
} catch (IOException e) {
e.printStackTrace();
} catch (FontFormatException e) {
e.printStackTrace();
}
} |
0ded2137-07a4-430f-b816-e9c2d604f674 | public void setAssetIntegrationId(crmondemand.xml.contact.query.QueryType assetIntegrationId) {
this.assetIntegrationId = assetIntegrationId;
} |
abfd674c-f5a4-4ecc-83a5-4c400c6ec3b4 | public java.lang.Boolean getCustomBoolean6() {
return this.customBoolean6;
} |
cb27261f-2c18-41b6-9fdd-62b1956a7acf | private static int booleanString(boolean b){
if(b){
return 1;
}
else{
return 0;
}
} |
0bfb8f46-fb94-456e-9c5a-e6f00f275acc | public crmondemand.xml.opportunity.query.QueryType getCustomPickList84() {
return this.customPickList84;
} |
cd23d3c7-8719-41c3-b903-51ae3f008905 | public crmondemand.xml.customobject6.query.QueryType getPolicyExpirationDate() {
return this.policyExpirationDate;
} |
e8c4d800-8659-42f7-a0b9-1ab88b93252e | public java.lang.String getCustomPhone9() {
return this.customPhone9;
} |
a210bc11-9dec-477e-ad49-9ef23a4d5530 | public java.lang.String getCustomPhone17() {
return this.customPhone17;
} |
a9e9d0c4-9875-464c-86f3-f3a0fd0c8eca | public java.lang.String getCustomPhone2() {
return this.customPhone2;
} |
a9c11b99-cdcc-4b5b-9e3c-c722c51024b1 | public void setCustomObject11Type(java.lang.String customObject11Type) {
this.customObject11Type = customObject11Type;
} |
9daeb85d-c0c2-42eb-b4e1-99aa84f70834 | public crmondemand.xml.customobject6.query.QueryType getRequestDate() {
return this.requestDate;
} |
0e3a6697-2bc4-4d1d-901b-053a9bdc602e | public void setCustomBoolean14(crmondemand.xml.contact.query.QueryType customBoolean14) {
this.customBoolean14 = customBoolean14;
} |
86ea0a3f-6b68-4262-a4e0-45a62c1395b1 | public java.lang.String getCustomObject6Id() {
return this.customObject6Id;
} |
4b1df7ab-da2b-4aa4-90dd-541139e927ca | public void setCustomInteger3(java.lang.Integer customInteger3) {
this.customInteger3 = customInteger3;
} |
190f8541-8ffb-4660-ad67-d869ed3d7919 | public java.lang.String getCustomPickList54() {
return this.customPickList54;
} |
a6dd2e05-dd78-4316-b4bc-35468df5663b | public crmondemand.xml.customobject3.query.QueryType getCustomNumber43() {
return this.customNumber43;
} |
142cddac-9aa4-41f5-9549-3f5a833d94f4 | public java.util.Calendar getSampleLotExpirationDate() {
return this.sampleLotExpirationDate;
} |
05c5fdfe-0bf5-4224-8bfe-7e8b15fdd916 | public crmondemand.xml.opportunity.query.QueryType getCustomObject7IntegrationId() {
return this.customObject7IntegrationId;
} |
02ba740b-a9ec-4f86-ae24-c3be9cf1ac2c | public void setExamExternalSystemId(crmondemand.xml.customobject3.query.QueryType examExternalSystemId) {
this.examExternalSystemId = examExternalSystemId;
} |
9584ac3c-ff2e-492c-b595-fb59557ce962 | public java.lang.String getMDFRequestExternalSystemId() {
return this.mDFRequestExternalSystemId;
} |
ff2debd8-7e52-4de4-aff3-2db885cd4b1d | public java.lang.Boolean getCustomBoolean9() {
return this.customBoolean9;
} |
a48f2da7-0889-4977-a5e8-c5e9a71ed907 | public void setCustomPickList73(java.lang.String customPickList73) {
this.customPickList73 = customPickList73;
} |
2f6e2b4e-5b44-4594-a6a8-3c288ba99fd0 | public java.lang.String getCustomPickList90() {
return this.customPickList90;
} |
9651df16-a50f-40ce-a605-6ed81057891c | public void openDoor(){
doorClosed = false;
} |
f435f09e-984f-4797-84f8-65c78a9fd154 | public crmondemand.xml.opportunity.query.QueryType getPolicyId() {
return this.policyId;
} |
6b24e0f9-bf5e-445a-977f-4050021e7409 | public void setCustomNumber13(crmondemand.xml.customobject3.query.QueryType customNumber13) {
this.customNumber13 = customNumber13;
} |
1e3bbe79-1297-47f4-93a9-2c8200b45afd | public crmondemand.xml.customobject3.query.QueryType getCustomObject4IntegrationId() {
return this.customObject4IntegrationId;
} |
dd755cd0-c60a-4aae-af71-a0d4d3f85ba9 | public static void encryptFile(BigInteger ms)
{
try
{
File plain = new File("plaintext.txt");
File encrypt = new File("encrypt.txt");
Scanner in = new Scanner(plain);
PrintWriter out = new PrintWriter(encrypt);
String line, encry;
while(in.hasNextLine())
{
line = in.nextLine();
encry = DESEncryption(line, ms);
out.println(encry);
}
out.close();
in.close();
} catch (Exception e)
{
System.out.println(e);
}
} |
45cd9d22-a586-4096-af9e-76690dacbe3e | public void setCustomText0(crmondemand.xml.contact.query.QueryType customText0) {
this.customText0 = customText0;
} |
b8eacf8b-51ad-4932-8795-217363fc4ba0 | public void setCustomText64(crmondemand.xml.contact.query.QueryType customText64) {
this.customText64 = customText64;
} |
4bb792e7-2c26-43e3-9018-57046808e161 | public crmondemand.xml.opportunity.query.QueryType getCustomDate27() {
return this.customDate27;
} |
b9ee2ebd-a89a-43e3-8098-54a6cbdfa27c | public crmondemand.xml.customobject3.query.QueryType getCustomNumber6() {
return this.customNumber6;
} |
027e256e-4a6f-48b1-92c4-47d06f9e0285 | public void setCustomDate28(java.util.Calendar customDate28) {
this.customDate28 = customDate28;
} |
c76010e5-0084-49cf-82ba-caf804240698 | public java.math.BigDecimal getCustomNumber20() {
return this.customNumber20;
} |
37d42ba9-fc54-46c2-95a4-770fb1cc7868 | public int getCollisionInsetBottom() {
return collisionInsetBottom;
} |
88fdaab6-1960-4669-b845-09d0099374f7 | public String getTitle() {
return title;
} |
dfd0b52a-77ff-46e0-9ee1-fa8ac82c1f25 | public java.lang.String getProductPartNumber() {
return this.productPartNumber;
} |
02628095-986d-4b6a-a22d-8558288bb8d3 | public crmondemand.xml.contact.query.QueryType getCustomPickList99() {
return this.customPickList99;
} |
9a29380e-e6d1-4ea0-a39f-f373cdf89b00 | public void setAccountId(crmondemand.xml.customobject6.query.QueryType accountId) {
this.accountId = accountId;
} |
a23e868e-88f8-4c77-9eeb-8d7f5d1f9d86 | public int getStartLocationsCount() {
return startLocations_.size();
} |
be1ec52c-3cfc-4a88-b131-6fd0ff648f98 | public crmondemand.xml.contact.query.QueryType getCustomDate3() {
return this.customDate3;
} |
71d17125-af54-4b34-bfae-ac5c95825303 | public int getDimensionRight() {
return dimensionRight_;
} |
2e2f2038-5b17-41df-b79b-bc1a5226d87f | public void setCustomObject8ExternalSystemId(java.lang.String customObject8ExternalSystemId) {
this.customObject8ExternalSystemId = customObject8ExternalSystemId;
} |
f037da2a-1c4b-404f-8657-37834ce2617d | public String getCaisson() {
return caisson;
} |
104ae2f6-4578-4a9c-ac99-9361e5b22195 | public Game2048Model(int size, int sqr1val, int sqr1plc,int sqr2val, int sqr2plc) {
this.size = size;
board2048 = new int[size][size];
this.sqr1val = sqr1val;
this.sqr2val = sqr2val;
this.sqr1plc = sqr1plc;
this.sqr2plc = sqr2plc;
initGame();
} |
5f67513e-8996-4839-90ac-ae8ff51d341a | public void setCustomPhone3(crmondemand.xml.opportunity.query.QueryType customPhone3) {
this.customPhone3 = customPhone3;
} |
ebb28c3e-0914-44dd-8d52-02e6ad8b2acd | public java.math.BigDecimal getCustomNumber63() {
return this.customNumber63;
} |
0513130f-3cb9-4ffc-afcb-24cdc0d2d0ec | public Builder clearUpgradeLevels() {
if (upgradeLevelsBuilder_ == null) {
upgradeLevels_ = java.util.Collections.emptyList();
bitField0_ = (bitField0_ & ~0x00080000);
onChanged();
} else {
upgradeLevelsBuilder_.clear();
}
return this;
} |
b6a26dbb-a9c2-4b92-8325-a4ed509ab748 | public static List assertedCollectionMembers(Stella_Object self, boolean directP) {
{ Surrogate testValue000 = Stella_Object.safePrimaryType(self);
if (Surrogate.subtypeOfP(testValue000, Logic.SGT_STELLA_COLLECTION)) {
{ Collection self000 = ((Collection)(self));
{ List members = List.newList();
{ Stella_Object m = null;
Iterator iter000 = ((Iterator)(self000.allocateIterator()));
Cons collect000 = null;
while (iter000.nextP()) {
m = iter000.value;
if (collect000 == null) {
{
collect000 = Cons.cons(m, Stella.NIL);
if (members.theConsList == Stella.NIL) {
members.theConsList = collect000;
}
else {
Cons.addConsToEndOfConsList(members.theConsList, collect000);
}
}
}
else {
{
collect000.rest = Cons.cons(m, Stella.NIL);
collect000 = collect000.rest;
}
}
}
}
return (members);
}
}
}
else if (Surrogate.subtypeOfP(testValue000, Logic.SGT_LOGIC_NAMED_DESCRIPTION)) {
{ NamedDescription self000 = ((NamedDescription)(self));
{ List members = List.list(Stella.NIL);
{ Proposition prop = null;
DescriptionExtensionIterator iter001 = NamedDescription.allTrueExtensionMembers(self000, !directP);
Cons collect001 = null;
while (iter001.nextP()) {
prop = ((Proposition)(iter001.value));
if (collect001 == null) {
{
collect001 = Cons.cons((prop.arguments.theArray)[0], Stella.NIL);
if (members.theConsList == Stella.NIL) {
members.theConsList = collect001;
}
else {
Cons.addConsToEndOfConsList(members.theConsList, collect001);
}
}
}
else {
{
collect001.rest = Cons.cons((prop.arguments.theArray)[0], Stella.NIL);
collect001 = collect001.rest;
}
}
}
}
return (members);
}
}
}
else if (Surrogate.subtypeOfP(testValue000, Logic.SGT_LOGIC_DESCRIPTION)) {
{ Description self000 = ((Description)(self));
return (null);
}
}
else if (Surrogate.subtypeOfP(testValue000, Logic.SGT_LOGIC_SKOLEM)) {
{ Skolem self000 = ((Skolem)(self));
{ List members = List.newList();
Cons enumeratedcollections = Logic.allDefiningPropositions(self000, Logic.SGT_PL_KERNEL_KB_COLLECTIONOF, true);
if (!(enumeratedcollections == Stella.NIL)) {
{ Proposition col = null;
Cons iter002 = enumeratedcollections;
for (;!(iter002 == Stella.NIL); iter002 = iter002.rest) {
col = ((Proposition)(iter002.value));
{ Stella_Object arg = null;
Vector vector000 = col.arguments;
int index000 = 0;
int length000 = vector000.length();
int i = Stella.NULL_INTEGER;
int iter003 = 2;
int upperBound000 = col.arguments.length();
Cons collect002 = null;
for (;(index000 < length000) &&
(iter003 <= upperBound000); index000 = index000 + 1, iter003 = iter003 + 1) {
arg = (vector000.theArray)[index000];
i = iter003;
if (collect002 == null) {
{
collect002 = Cons.cons(Logic.valueOf(arg), Stella.NIL);
if (members.theConsList == Stella.NIL) {
members.theConsList = collect002;
}
else {
Cons.addConsToEndOfConsList(members.theConsList, collect002);
}
}
}
else {
{
collect002.rest = Cons.cons(Logic.valueOf(arg), Stella.NIL);
collect002 = collect002.rest;
}
}
}
}
}
}
}
else {
{ Proposition p = null;
Iterator iter004 = Logic.allTrueDependentPropositions(self000, Logic.SGT_PL_KERNEL_KB_MEMBER_OF, false);
Cons collect003 = null;
while (iter004.nextP()) {
p = ((Proposition)(iter004.value));
if ((directP &&
Stella_Object.eqlP(Logic.valueOf((p.arguments.theArray)[1]), Logic.valueOf(self000))) ||
((!directP) &&
LogicObject.collectionImpliesCollectionP(((LogicObject)(Logic.valueOf((p.arguments.theArray)[1]))), ((LogicObject)(Logic.valueOf(self000)))))) {
if (collect003 == null) {
{
collect003 = Cons.cons((p.arguments.theArray)[0], Stella.NIL);
if (members.theConsList == Stella.NIL) {
members.theConsList = collect003;
}
else {
Cons.addConsToEndOfConsList(members.theConsList, collect003);
}
}
}
else {
{
collect003.rest = Cons.cons((p.arguments.theArray)[0], Stella.NIL);
collect003 = collect003.rest;
}
}
}
}
}
}
return (members);
}
}
}
else if (Surrogate.subtypeOfP(testValue000, Logic.SGT_LOGIC_LOGIC_OBJECT)) {
{ LogicObject self000 = ((LogicObject)(self));
{ Skolem equivalentskolem = ((Skolem)(((LogicObject)(self000.variableValueInverse().value))));
if (equivalentskolem != null) {
return (Logic.assertedCollectionMembers(equivalentskolem, directP));
}
}
{
Stella.STANDARD_WARNING.nativeStream.println("Warning: Hmm. PowerLoom doesn't know how to interpret the LOGIC-OBJECT: `" + self000 + "'");
Stella.STANDARD_WARNING.nativeStream.println(" as a collection.");
Stella.STANDARD_WARNING.nativeStream.println();
}
;
return (Stella.NIL_LIST);
}
}
else {
return (null);
}
}
} |
ab5bd7cb-262f-4a37-b598-03c973ee01c2 | public crmondemand.xml.customobject6.query.QueryType getBusinessPlanType() {
return this.businessPlanType;
} |
ef50ae12-3b00-4d08-b971-a25de708fd18 | public void setCustomInteger22(crmondemand.xml.opportunity.query.QueryType customInteger22) {
this.customInteger22 = customInteger22;
} |
d3913dea-ebbe-48dc-8b0e-92d4fbb9c434 | public void setCustomDate45(java.util.Calendar customDate45) {
this.customDate45 = customDate45;
} |
254b5200-0eb9-4a03-900e-58b53cc8e36f | public static JOutPiqi.callback_response parseFrom(
java.io.InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry)
throws java.io.IOException {
return newBuilder().mergeFrom(input, extensionRegistry)
.buildParsed();
} |
13f25aed-073c-4a34-9841-0876e100da00 | public void InitLvl()
{
pause = true;
win = GameStatus.ACTIVE;
lose = GameStatus.ACTIVE;
paddle = new Paddle(width / 2, height / 2);
ball = new Ball(width / 2 + level.ballStart, height / 2 - 15);
data.add(paddle);
data.add(ball);
for(CollideableObject brick : level.build())
data.add(brick);
} |
1ffd1317-f50b-4b3e-a027-7de555640f60 | public crmondemand.xml.customobject6.query.QueryType getOrderItemOrderItemNum() {
return this.orderItemOrderItemNum;
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.