query
stringlengths
7
33.1k
document
stringlengths
7
335k
metadata
dict
negatives
listlengths
3
101
negative_scores
listlengths
3
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
TODO Autogenerated method stub
public static void main(String[] args) { displayAddress(); displayAddress2(); System.out.print("First!!!!"); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
if the entity is present in the database update the record, else create new record
public void upsert(final T obj, OnSuccessListener<Void> successes, OnFailureListener failureListener){ if (obj.getId()==null) { db.collection(COLLECTION_NAME) .document() .set(obj.marshal()) .addOnSuccessListener(successes) .addOnFailureListener(failureListener); return; } db.collection(COLLECTION_NAME) .document(obj.getId()) .set(obj.marshal()) .addOnSuccessListener(successes) .addOnFailureListener(failureListener); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "E update(E entity);", "E update(E entity);", "E update(E entity) throws ValidationException;", "public abstract boolean update(T entity) throws ServiceException;", "void createOrUpdate(T entity);", "@Override\n\t\tpublic boolean update(Carrera entity, int id) {\n\t\t\t\treturn false;\n\t\t}", "int upda...
[ "0.68122953", "0.68122953", "0.6510645", "0.6465534", "0.6459953", "0.64529", "0.6416075", "0.6395315", "0.6382224", "0.6368982", "0.636383", "0.63631266", "0.6339244", "0.63343614", "0.63249356", "0.6318971", "0.6317479", "0.63107675", "0.6304566", "0.6293095", "0.6273872", ...
0.0
-1
get entity by document id
public void getById(String id, OnCompleteListener<DocumentSnapshot> callback){ DocumentReference docRef = db.collection(COLLECTION_NAME).document(id); docRef.get().addOnCompleteListener(callback); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Document getDocument(Long documentID) throws EntityNotFoundException;", "@GetMapping(\"/document-entities/{id}\")\n public ResponseEntity<DocumentEntityDTO> getDocumentEntity(@PathVariable String id) {\n log.debug(\"REST request to get DocumentEntity : {}\", id);\n Optional<DocumentEntityDTO> do...
[ "0.7969339", "0.7614387", "0.74848384", "0.73778075", "0.72884417", "0.7178342", "0.714717", "0.6955773", "0.6954235", "0.69363856", "0.6932073", "0.68608326", "0.6761417", "0.6748341", "0.6747553", "0.67395663", "0.67013013", "0.67003053", "0.669479", "0.6673371", "0.6671467...
0.0
-1
get item list from the collection
public void getAll(OnSuccessListener<QuerySnapshot> successListener, OnFailureListener failureListener){ db.collection(COLLECTION_NAME).get() .addOnSuccessListener(successListener) .addOnFailureListener(failureListener); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public List<Item> getItemList();", "java.util.List<com.rpg.framework.database.Protocol.Item> \n getItemsList();", "java.util.List<io.opencannabis.schema.commerce.OrderItem.Item> \n getItemList();", "public ArrayList<Collectable> getItems(){\n return items;\n }", "protected List getLi...
[ "0.770883", "0.7669428", "0.7319368", "0.7301891", "0.71809936", "0.7081353", "0.701476", "0.70042485", "0.6987807", "0.6985794", "0.69591385", "0.69571567", "0.6951979", "0.6873451", "0.68645656", "0.6861456", "0.6824686", "0.6824686", "0.68086636", "0.68033004", "0.67936206...
0.0
-1
Constructs a new Op09CarrierTextPlugin instance with Context.
public Op09StatusBarPlmnPlugin(Context context) { super(context); this.mContext = context; final IntentFilter intentFilter = new IntentFilter(TelephonyIntents.ACTION_CDMA_CARD_TYPE); final Intent intent = mContext.registerReceiver(mReceiver, intentFilter); updateCardType(intent); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public CustomTextView(Context context) {\n\t\tsuper(context);\n\t}", "public TextController createText(ControllerCore genCode) {\n\t\ttextTXT = new TextController(\"text\", getParentController(controlItemSCSCLC), genCode) {\n\t\t\t@Override\n\t\t\tpublic void initialize() {\n\t\t\t\tsetLinkedController(text$1LBL...
[ "0.5291131", "0.5062744", "0.5028435", "0.5001979", "0.49998865", "0.49854797", "0.49412403", "0.4917981", "0.49157313", "0.48894852", "0.488348", "0.48691127", "0.48261952", "0.48202756", "0.48146686", "0.4812836", "0.48100853", "0.4804546", "0.47834182", "0.47521126", "0.47...
0.49185342
7
Animation depends on category.
private void setAnimation(String category) { if (category.equals(SPLASH_SCREEN_OPTION_1)) { animation1(); } else if (category.equals(SPLASH_SCREEN_OPTION_2)) { animation2(); } else if (category.equals(SPLASH_SCREEN_OPTION_3)) { animation2(); animation3(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\t\t\tpublic void onAnimationStart(Animation animation) {\n\t\t\t\t\n\t\t\t}", "@Override\n\t\t\tpublic void onAnimationStart(Animation animation) {\n\t\t\t\t\n\t\t\t}", "@Override\n\t\tpublic void onAnimationStart(Animation animation) {\n\t\t\t\n\t\t}", "protected abstract void animationLogicTemp...
[ "0.6539771", "0.6539771", "0.6501304", "0.6494779", "0.6479017", "0.6477047", "0.644955", "0.64439505", "0.64163864", "0.64163864", "0.64163864", "0.64163864", "0.64110047", "0.64110047", "0.64110047", "0.64110047", "0.6402205", "0.6402205", "0.63933283", "0.63900673", "0.638...
0.7586046
0
Do something after 100ms
@Override public void run() { Intent intent = new Intent(SplashScreen.this, Welcome.class); startActivity(intent); finish(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void warte( int ms )\n {\n try\n {\n Thread.sleep( ms );\n }\n catch ( InterruptedException e )\n {\n e.printStackTrace();\n }\n }", "private void sleep() {\n try {\n Thread.sleep(500);\n } catch (InterruptedExc...
[ "0.6709485", "0.66169494", "0.65593785", "0.64343435", "0.6428483", "0.63450646", "0.63450646", "0.63370377", "0.6299232", "0.629127", "0.6276691", "0.6275795", "0.6241878", "0.6239538", "0.6226123", "0.62225294", "0.6206935", "0.6201968", "0.62013745", "0.62013745", "0.61998...
0.0
-1
Instantiates a new user message event.
public UserMessageEvent(Type type, String msg, boolean makeVisible, Object source, Throwable e, boolean showToast) { myType = type; myMessage = msg; myMakeVisible = makeVisible; mySource = source; myException = e; myShowToast = showToast; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public MessageEvent(Message message) {\n super(message);\n this.message = message;\n }", "public EventMessage(Event event)\r\n {\r\n //super(\"EventMessage\");\r\n super(TYPE_IDENT, event);\r\n }", "public abstract void onCreate(MessageCreateEvent e, List<String> args);", ...
[ "0.68283886", "0.65800744", "0.6443554", "0.62638557", "0.6201536", "0.612924", "0.6089683", "0.606854", "0.606854", "0.60424674", "0.60406446", "0.60190076", "0.59796464", "0.59614396", "0.59614396", "0.5953842", "0.5938628", "0.59069633", "0.58966994", "0.5852242", "0.58069...
0.5520276
41
Gets the message for the user.
public String getMessage() { return myMessage; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "java.lang.String getUserMessage();", "public java.lang.String getUserMessage() {\n java.lang.Object ref = userMessage_;\n if (ref instanceof java.lang.String) {\n return (java.lang.String) ref;\n } else {\n com.google.protobuf.ByteString bs = \n (com.google.protobuf.ByteSt...
[ "0.7916724", "0.74533653", "0.73460984", "0.7213739", "0.7025556", "0.7008267", "0.69968224", "0.69932884", "0.6921356", "0.6899486", "0.6830485", "0.68236613", "0.6814904", "0.68105984", "0.6800778", "0.67982614", "0.67982614", "0.67918897", "0.67895025", "0.67775524", "0.67...
0.67774206
20
Checks if the user message display should be made visible.
public boolean isMakeVisible() { return myMakeVisible; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public boolean okToDisplay() {\n return this.mDisplayId == 0 ? !this.mWmService.mDisplayFrozen && this.mWmService.mDisplayEnabled && this.mWmService.mPolicy.isScreenOn() : this.mDisplayInfo.state == 2;\n }", "public boolean checkVisibility() {\n LocalDateTime now = LocalDateTime.now();\n ...
[ "0.714552", "0.68140554", "0.67268294", "0.66735303", "0.665906", "0.6629902", "0.66097367", "0.66097367", "0.66027224", "0.6580256", "0.6557112", "0.65467215", "0.65295666", "0.65272534", "0.65015507", "0.6474845", "0.64652103", "0.6444902", "0.64436436", "0.6417067", "0.638...
0.62759846
36
True if a toast dialog should appear showing the message.
public boolean isShowToast() { return myShowToast; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void assertToastDisplayed(int toastString) {\n\t\tonView(withText(toastString))\n\t\t\t\t.inRoot(withDecorView(not(is(getActivity().getWindow().getDecorView()))))\n\t\t\t\t.check(matches(isDisplayed()));\n\t}", "private void displayToast(String message) {\n Toast.makeText(OptionActivity.this, mess...
[ "0.6541768", "0.6476831", "0.6443987", "0.6399052", "0.6398284", "0.63844967", "0.63844967", "0.6338658", "0.632009", "0.6317147", "0.6317147", "0.62751436", "0.62407726", "0.62407726", "0.6238057", "0.6231795", "0.6227703", "0.62248343", "0.6212846", "0.61988926", "0.6184678...
0.7482659
0
Directly return the upper case of the word
public static String getTokenTypeFromRemainedWord(String remainedWord){ if(remainedWordList.contains(remainedWord)){ return "keyword_" + remainedWord; }else return "ID"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public String upperCase(String word){\n return word.toUpperCase();\n }", "public String convertToUpperCase(String word);", "private boolean isUpperCase(String word) {\n boolean ucase = true;\n char[] chars = word.toCharArray();\n for (char ch : chars) {\n if (Charac...
[ "0.8561692", "0.85497487", "0.7757964", "0.73901343", "0.7350639", "0.73263174", "0.72476757", "0.72251445", "0.716791", "0.7152421", "0.7133433", "0.70797616", "0.70704085", "0.70583415", "0.6971859", "0.69449973", "0.6904371", "0.68867415", "0.6853353", "0.68386585", "0.679...
0.0
-1
This row is going to be reused for every record
private Reader<RowData> wrapReader(Reader<RowData> superReader, FileSourceSplit split) { final ProjectedRowData producedRowData = ProjectedRowData.from(this.projections); return RecordMapperWrapperRecordIterator.wrapReader( superReader, physicalRowData -> { producedRowData.replaceRow(physicalRowData); return producedRowData; }); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private RowData() {\n initFields();\n }", "Row createRow();", "private Row.SimpleBuilder rowBuilder()\n {\n if (rowBuilder == null)\n {\n rowBuilder = updateBuilder.row();\n if (noRowMarker)\n rowBuilder.noPrimaryKeyLivenessInfo();\n }\n\n ...
[ "0.65818757", "0.6194456", "0.61537737", "0.6101535", "0.6038972", "0.60199976", "0.59697115", "0.59553367", "0.59532744", "0.5936443", "0.5908314", "0.5906191", "0.5887886", "0.5851511", "0.58279574", "0.5776449", "0.57755005", "0.5772681", "0.5766786", "0.5751722", "0.57412...
0.0
-1
TODO Autogenerated method stub
public static void main(String[] args) { int m= MyConsole.readInt("enter number"); int n= MyConsole.readInt("enter the hezka"); int p=1; for(int i=1; i<=n; i++) { p= p*m; } System.out.println(p); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
pass in string, get return string
@Override protected String doInBackground(String... urls) { //typical type of string array -> String... String result = ""; URL url; //string into a URL object HttpURLConnection httpURLConnection = null; //retrieve information of any HTTP URL such as header information, status code, response code etc. try { url = new URL(urls[0]); //convert string into actual url using new URL object httpURLConnection = (HttpURLConnection) url.openConnection(); //http url new connection using openConnection() and casting the result in httpURLConnection InputStream in = httpURLConnection.getInputStream(); //gather data coming through InputStreamReader reader = new InputStreamReader(in); //read the data int data = reader.read(); while(data != -1) { char current = (char) data; result += current; //add data letter by letter data = reader.read(); //run untill the data is finished } return result; // } catch (MalformedURLException e) { // e.printStackTrace(); // return "Failed"; // } catch (IOException e) { // e.printStackTrace(); // return "Failed"; } catch (Exception e) { e.printStackTrace(); return "Failed"; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private String getString(String paramString) {\n }", "String getString_lit();", "public static String getString() {\n // Variable declarations\n String str = \"\"; // String object to hold user input\n\n // Prompt user to enter str\n str = scnr.nextLine();\n\n ...
[ "0.6729901", "0.6496847", "0.6486812", "0.646942", "0.646942", "0.646942", "0.63610154", "0.6273575", "0.62246436", "0.62173927", "0.62173927", "0.62173927", "0.62173927", "0.61927193", "0.6181287", "0.61552346", "0.61552346", "0.6092455", "0.6092455", "0.6068156", "0.606175"...
0.0
-1
Adds a new Indicator at the end and selects it
private void addIndicator() { createIndicator(mCurrentAdapterSize); mViewPager.setCurrentItem(mViewPager.getAdapter().getCount() - 1); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public org.dhis2.ns.schema.dxf2.IndicatorRefDocument.IndicatorRef addNewIndicatorRef()\n {\n synchronized (monitor())\n {\n check_orphaned();\n org.dhis2.ns.schema.dxf2.IndicatorRefDocument.IndicatorRef target = null;\n target = (org.dhis2.n...
[ "0.6576772", "0.61645204", "0.60600954", "0.6041616", "0.6026061", "0.5940687", "0.5859732", "0.5810384", "0.5796399", "0.5792606", "0.5737137", "0.5730488", "0.5722895", "0.5716745", "0.55898964", "0.55371016", "0.54907256", "0.5205582", "0.5205582", "0.5159502", "0.50922906...
0.71109307
0
Removes a currently indicator from the list and selects a indicator at the given position
private void removeIndicator() { int indicatorToRemove; if (mCurrentlySelectedIndicator == mCurrentAdapterSize - 1) { indicatorToRemove = mCurrentlySelectedIndicator - 1; } else { indicatorToRemove = mCurrentlySelectedIndicator + 1; } // Remove from view View view = getChildAt(indicatorToRemove); if (view != null) { removeView(view); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void deleteSelectedPosition() {\n if (selectedPosition != -1) {\n list.remove(selectedPosition);\n selectedPosition = -1;//after removing selectedPosition set it back to -1\n notifyDataSetChanged();\n }\n }", "public void onItemUnsetSelection(AdapterView<?...
[ "0.61618525", "0.614656", "0.6028159", "0.5923033", "0.5772073", "0.57634556", "0.57508904", "0.56807184", "0.56688964", "0.56543666", "0.5562529", "0.5546808", "0.5487739", "0.5485054", "0.54775065", "0.546835", "0.5457152", "0.54541385", "0.54510903", "0.54438007", "0.54360...
0.7667461
0
Creates a new Indicator with deselected configuration
private void createIndicator(int tag) { LayoutParams params; int color; if (tag == mCurrentlySelectedIndicator) { params = mParamsSelected; color = mColorSelected; } else { params = mParamsDeselected; color = mColorDeselected; } // Create indicator view View indicator = new View(mContext); indicator.setTag(tag); // Set params indicator.setLayoutParams(params); // Set indicator color setColor(indicator, color); // Add it to the view addView(indicator); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Indicator() {\n }", "public Builder clearLiquidityIndicator() {\n bitField0_ = (bitField0_ & ~0x00800000);\n liquidityIndicator_ = getDefaultInstance().getLiquidityIndicator();\n onChanged();\n return this;\n }", "private void removeIndicator() {\n\n int indica...
[ "0.58526635", "0.5397419", "0.5374696", "0.5220127", "0.49028176", "0.4834587", "0.46306616", "0.4626929", "0.45462915", "0.45434028", "0.44870815", "0.4479554", "0.44610795", "0.44610795", "0.44116604", "0.44052675", "0.4372996", "0.4360516", "0.43454602", "0.43333128", "0.4...
0.5622613
1
Referenced classes of package com.fasterxml.jackson.databind: AbstractTypeResolver, AnnotationIntrospector, DeserializationFeature, MapperFeature, SerializationFeature
public interface ospector { public abstract void addAbstractTypeResolver(AbstractTypeResolver abstracttyperesolver); public abstract void addBeanDeserializerModifier(BeanDeserializerModifier beandeserializermodifier); public abstract void addBeanSerializerModifier(BeanSerializerModifier beanserializermodifier); public abstract void addDeserializationProblemHandler(DeserializationProblemHandler deserializationproblemhandler); public abstract void addDeserializers(Deserializers deserializers); public abstract void addKeyDeserializers(KeyDeserializers keydeserializers); public abstract void addKeySerializers(Serializers serializers); public abstract void addSerializers(Serializers serializers); public abstract void addTypeModifier(TypeModifier typemodifier); public abstract void addValueInstantiators(ValueInstantiators valueinstantiators); public abstract void appendAnnotationIntrospector(AnnotationIntrospector annotationintrospector); public abstract w getMapperVersion(); public abstract s getOwner(); public abstract TypeFactory getTypeFactory(); public abstract void insertAnnotationIntrospector(AnnotationIntrospector annotationintrospector); public abstract boolean isEnabled(f f); public abstract boolean isEnabled(i i); public abstract boolean isEnabled(n n); public abstract boolean isEnabled(DeserializationFeature deserializationfeature); public abstract boolean isEnabled(MapperFeature mapperfeature); public abstract boolean isEnabled(SerializationFeature serializationfeature); public transient abstract void registerSubtypes(NamedType anamedtype[]); public transient abstract void registerSubtypes(Class aclass[]); public abstract void setClassIntrospector(ClassIntrospector classintrospector); public abstract void setMixInAnnotations(Class class1, Class class2); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n\t@Ignore\n\tpublic void test15SunJerseyLoadJacksonClasses() throws Exception {\n\t\ttry {\n\t\t\tfinal Map<String, String> launchArgs = new HashMap<String, String>();\n\t\t\tlaunchArgs.put(\"org.osgi.framework.bootdelegation\", \"sun.,\");\n\t\t\tlaunchArgs\n\t\t\t\t\t.put(\"org.osgi.framework.system.packa...
[ "0.6047973", "0.58881813", "0.58604604", "0.57727104", "0.5612736", "0.55925983", "0.5481693", "0.54575354", "0.5443387", "0.5437342", "0.54222345", "0.54167885", "0.5414917", "0.5413278", "0.53798115", "0.53747874", "0.5370244", "0.5358301", "0.533364", "0.5287977", "0.52750...
0.639588
0
List AllBrand = brandDao.queryAllBrand();
public List<User> queryPersonalSettings(UserBean userBean){ List<Brand> UserBrand = brandDao.queryUserBrand(userBean); List<User> users = userDao.queryPersonalSetting(userBean); for(User user: users){ user.setUserBrand(UserBrand); } return users; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\tpublic List<Brand> listBrand() {\n\t\treturn goodsDao.listBrand();\n\t}", "public List<Brands> LoadAllBrands() {\n Brands brands = null;\n List<Brands> brandsList = new ArrayList<>();\n try {\n Connection connection = DBConnection.getConnectionToDatabase();\n ...
[ "0.76483715", "0.7497727", "0.74875486", "0.7341527", "0.73347056", "0.7204653", "0.7168385", "0.71377623", "0.7115378", "0.71132404", "0.70642763", "0.70049727", "0.69209886", "0.68877816", "0.68139285", "0.67858964", "0.6771106", "0.6761736", "0.6761736", "0.6761736", "0.67...
0.0
-1
Popup de entrada do par de chaves
public static void insertKeys(Stage currentStage, String text, String iv, String encrypt) { Label labelS = new Label("Insert your private key"); TextArea insertS = new TextArea(); Label labelP = new Label("Insert your public key"); TextArea insertP = new TextArea(); Button okButton = new Button("OK"); insertS.setPrefColumnCount(3); insertP.setPrefColumnCount(3); insertS.setPrefRowCount(1); insertP.setPrefRowCount(1); okButton.setOnAction((event) -> { String privateString = insertS.getText(); String publicString = insertP.getText(); HmacOrSign(currentStage,text,privateString,publicString, iv, encrypt); closeFromEvent(event); }); Button generateButton = new Button("Generate Keys"); generateButton.setOnAction((event) -> { ShowKeys(event); }); popup(currentStage, labelS,insertS, labelP, insertP, okButton, generateButton); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private void popupModify2te() {\n\t\tRolle rolle = (Rolle) this;\n\t\taufzugschacht.mainFrameShowOptionsFrame(rolle.getRolle2teUmschlingung(), true);\n\t}", "public void sauvegardeActionPerformed(java.awt.event.ActionEvent evt) throws IOException{ \n Games.get(0).saveGame();\n JOptionPane.showMessa...
[ "0.6373802", "0.63283545", "0.63063776", "0.62270457", "0.6190133", "0.6163168", "0.6152879", "0.61352885", "0.61176795", "0.6085029", "0.6068499", "0.6040932", "0.60014945", "0.5966851", "0.5947819", "0.59237844", "0.5921039", "0.59081346", "0.59075314", "0.5895912", "0.5892...
0.0
-1
Popup que mostra as chaves
public static void ShowKeys(ActionEvent event) { AuthenticateUtils authentic = new AuthenticateUtils(); authentic.getPrivateKey(); authentic.getPublicKey(); //String public = authentic.getPublicKey(); Label label1 = new Label ("Private Key"); TextArea s = new TextArea(authentic.getPrivateKey()); Label label2 = new Label ("Public Key"); TextArea p = new TextArea(authentic.getPublicKey()); s.setEditable(false); p.setEditable(false); s.setPrefColumnCount(3); p.setPrefColumnCount(3); s.setPrefRowCount(1); p.setPrefRowCount(1); Button close = new Button("Close"); close.setOnAction(popupUtils::closeFromEvent); Node source = (Node) event.getSource(); Stage stage = (Stage) source.getScene().getWindow(); popup(stage,label1,s,label2,p,close); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void actionPerformed(ActionEvent e) {\n\t\t int returnVal = fc.showOpenDialog(GenerateWindow.this);\n\n\t\t if (returnVal == JFileChooser.APPROVE_OPTION) {\n\t\t File goodsoundfile = fc.getSelectedFile();\n\t\t goodSoundTF.setText(\"sounds/\"+goodsoundfile...
[ "0.6289609", "0.6126463", "0.6125688", "0.61107516", "0.6096606", "0.6034537", "0.6005055", "0.5962548", "0.5949968", "0.58863", "0.5881325", "0.5864383", "0.583877", "0.5816403", "0.580549", "0.579864", "0.5783803", "0.5736452", "0.5728467", "0.5722243", "0.5681841", "0.56...
0.0
-1
/ / / / / / / / /
public String getTitlePopup() { /* 136 */ return getCOSObject().getString(COSName.T); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / /
public void setTitlePopup(String t) { /* 147 */ getCOSObject().setString(COSName.T, t); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public PDAnnotationPopup getPopup() { /* 157 */ COSDictionary popup = (COSDictionary)getCOSObject().getDictionaryObject("Popup"); /* 158 */ if (popup != null) /* */ { /* 160 */ return new PDAnnotationPopup(popup); /* */ } /* */ /* */ /* 164 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / /
public void setPopup(PDAnnotationPopup popup) { /* 175 */ getCOSObject().setItem("Popup", popup); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public float getConstantOpacity() { /* 185 */ return getCOSObject().getFloat(COSName.CA, 1.0F); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public void setConstantOpacity(float ca) { /* 195 */ getCOSObject().setFloat(COSName.CA, ca); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public String getRichContents() { /* 205 */ COSBase base = getCOSObject().getDictionaryObject(COSName.RC); /* 206 */ if (base instanceof COSString) /* */ { /* 208 */ return ((COSString)base).getString(); /* */ } /* 210 */ if (base instanceof COSStream) /* */ { /* 212 */ return ((COSStream)base).toTextString(); /* */ } /* */ /* */ /* 216 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / /
public void setRichContents(String rc) { /* 227 */ getCOSObject().setItem(COSName.RC, (COSBase)new COSString(rc)); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / /
public Calendar getCreationDate() throws IOException { /* 238 */ return getCOSObject().getDate(COSName.CREATION_DATE); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public void setCreationDate(Calendar creationDate) { /* 248 */ getCOSObject().setDate(COSName.CREATION_DATE, creationDate); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / / /
public PDAnnotation getInReplyTo() throws IOException { /* 260 */ COSBase base = getCOSObject().getDictionaryObject("IRT"); /* 261 */ if (base instanceof COSDictionary) /* */ { /* 263 */ return PDAnnotation.createAnnotation(base); /* */ } /* 265 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / /
public void setInReplyTo(PDAnnotation irt) { /* 276 */ getCOSObject().setItem("IRT", irt); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public String getSubject() { /* 286 */ return getCOSObject().getString(COSName.SUBJ); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public void setSubject(String subj) { /* 296 */ getCOSObject().setString(COSName.SUBJ, subj); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / /
public String getReplyType() { /* 307 */ return getCOSObject().getNameAsString("RT", "R"); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / /
public void setReplyType(String rt) { /* 318 */ getCOSObject().setName("RT", rt); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / /
public String getIntent() { /* 329 */ return getCOSObject().getNameAsString(COSName.IT); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / /
public void setIntent(String it) { /* 340 */ getCOSObject().setName(COSName.IT, it); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public PDExternalDataDictionary getExternalData() { /* 350 */ COSBase exData = getCOSObject().getDictionaryObject("ExData"); /* 351 */ if (exData instanceof COSDictionary) /* */ { /* 353 */ return new PDExternalDataDictionary((COSDictionary)exData); /* */ } /* 355 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public void setExternalData(PDExternalDataDictionary externalData) { /* 365 */ getCOSObject().setItem("ExData", externalData); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / /
public void setBorderStyle(PDBorderStyleDictionary bs) { /* 376 */ getCOSObject().setItem(COSName.BS, bs); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public PDBorderStyleDictionary getBorderStyle() { /* 386 */ COSBase bs = getCOSObject().getDictionaryObject(COSName.BS); /* 387 */ if (bs instanceof COSDictionary) /* */ { /* 389 */ return new PDBorderStyleDictionary((COSDictionary)bs); /* */ } /* 391 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public final void setLineEndingStyle(String style) { /* 401 */ getCOSObject().setName(COSName.LE, style); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / /
public String getLineEndingStyle() { /* 412 */ return getCOSObject().getNameAsString(COSName.LE, "None"); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / / / /
public void setInteriorColor(PDColor ic) { /* 425 */ getCOSObject().setItem(COSName.IC, (COSBase)ic.toCOSArray()); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "double passer();", "int getWidth() {return width;}", "public void zeichneQuadra...
[ "0.5540745", "0.5444497", "0.5205538", "0.5182055", "0.5094161", "0.50587463", "0.5053648", "0.50452423", "0.50258267", "0.50122976", "0.5012191", "0.50119436", "0.50044477", "0.49989554", "0.49980396", "0.49847832", "0.49795863", "0.49785143", "0.4966902", "0.49588826", "0.4...
0.0
-1
/ / / / / / / /
public PDColor getInteriorColor() { /* 435 */ return getColor(COSName.IC); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / / /
public void setBorderEffect(PDBorderEffectDictionary be) { /* 447 */ getCOSObject().setItem(COSName.BE, be); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / /
public PDBorderEffectDictionary getBorderEffect() { /* 458 */ COSDictionary be = (COSDictionary)getCOSObject().getDictionaryObject(COSName.BE); /* 459 */ if (be != null) /* */ { /* 461 */ return new PDBorderEffectDictionary(be); /* */ } /* */ /* */ /* 465 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / / / /
public void setInkList(float[][] inkList) { /* 478 */ if (inkList == null) { /* */ /* 480 */ getCOSObject().removeItem(COSName.INKLIST); /* */ return; /* */ } /* 483 */ COSArray array = new COSArray(); /* 484 */ for (float[] path : inkList) { /* */ /* 486 */ COSArray innerArray = new COSArray(); /* 487 */ innerArray.setFloatArray(path); /* 488 */ array.add((COSBase)innerArray); /* */ } /* 490 */ getCOSObject().setItem(COSName.INKLIST, (COSBase)array); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "double passer();", "int getWidth() {return width;}", "public void zeichneQuadra...
[ "0.5540745", "0.5444497", "0.5205538", "0.5182055", "0.5094161", "0.50587463", "0.5053648", "0.50452423", "0.50258267", "0.50122976", "0.5012191", "0.50119436", "0.50044477", "0.49989554", "0.49980396", "0.49847832", "0.49795863", "0.49785143", "0.4966902", "0.49588826", "0.4...
0.0
-1
/ / / / / / / / /
public float[][] getInkList() { /* 501 */ COSBase base = getCOSObject().getDictionaryObject(COSName.INKLIST); /* 502 */ if (base instanceof COSArray) { /* */ /* 504 */ COSArray array = (COSArray)base; /* 505 */ float[][] inkList = new float[array.size()][]; /* 506 */ for (int i = 0; i < array.size(); i++) { /* */ /* 508 */ COSBase base2 = array.getObject(i); /* 509 */ if (base2 instanceof COSArray) { /* */ /* 511 */ inkList[i] = ((COSArray)array.getObject(i)).toFloatArray(); /* */ } /* */ else { /* */ /* 515 */ inkList[i] = new float[0]; /* */ } /* */ } /* 518 */ return inkList; /* */ } /* 520 */ return new float[0][0]; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / /
public String getDefaultAppearance() { /* 530 */ return getCOSObject().getString(COSName.DA); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public void setDefaultAppearance(String daValue) { /* 540 */ getCOSObject().setString(COSName.DA, daValue); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / / /
public String getDefaultStyleString() { /* 552 */ return getCOSObject().getString(COSName.DS); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / /
public void setDefaultStyleString(String defaultStyleString) { /* 564 */ getCOSObject().setString(COSName.DS, defaultStyleString); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / / / / /
public int getQ() { /* 579 */ return getCOSObject().getInt(COSName.Q, 0); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "int getWidth() {return width;}", "double passer();", "public abstract void bepaalGrootte();", "public Integer getWidth()...
[ "0.55104524", "0.54136074", "0.51382613", "0.511921", "0.5069645", "0.50632066", "0.5061232", "0.50567037", "0.50560975", "0.50190926", "0.50086707", "0.50070775", "0.49875844", "0.4968691", "0.49646097", "0.4947161", "0.4947018", "0.49441117", "0.49407196", "0.4928466", "0.4...
0.0
-1
/ / / / / / / / /
public void setQ(int q) { /* 590 */ getCOSObject().setInt(COSName.Q, q); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / / / /
public void setRectDifference(PDRectangle rd) { /* 603 */ getCOSObject().setItem(COSName.RD, (COSObjectable)rd); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "double passer();", "int getWidth() {return width;}", "public void zeichneQuadra...
[ "0.5540745", "0.5444497", "0.5205538", "0.5182055", "0.5094161", "0.50587463", "0.5053648", "0.50452423", "0.50258267", "0.50122976", "0.5012191", "0.50119436", "0.50044477", "0.49989554", "0.49980396", "0.49847832", "0.49795863", "0.49785143", "0.4966902", "0.49588826", "0.4...
0.0
-1
/ / / / / / / / / /
public PDRectangle getRectDifference() { /* 615 */ COSBase base = getCOSObject().getDictionaryObject(COSName.RD); /* 616 */ if (base instanceof COSArray) /* */ { /* 618 */ return new PDRectangle((COSArray)base); /* */ } /* 620 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / /
public void setRectDifferences(float difference) { /* 632 */ setRectDifferences(difference, difference, difference, difference); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / / / / /
public void setRectDifferences(float differenceLeft, float differenceTop, float differenceRight, float differenceBottom) { /* 647 */ COSArray margins = new COSArray(); /* 648 */ margins.add((COSBase)new COSFloat(differenceLeft)); /* 649 */ margins.add((COSBase)new COSFloat(differenceTop)); /* 650 */ margins.add((COSBase)new COSFloat(differenceRight)); /* 651 */ margins.add((COSBase)new COSFloat(differenceBottom)); /* 652 */ getCOSObject().setItem(COSName.RD, (COSBase)margins); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "int getWidth() {return width;}", "double passer();", "public abstract void bepaalGrootte();", "public Integer getWidth()...
[ "0.55104524", "0.54136074", "0.51382613", "0.511921", "0.5069645", "0.50632066", "0.5061232", "0.50567037", "0.50560975", "0.50190926", "0.50086707", "0.50070775", "0.49875844", "0.4968691", "0.49646097", "0.4947161", "0.4947018", "0.49441117", "0.49407196", "0.4928466", "0.4...
0.0
-1
/ / / / / / / / /
public float[] getRectDifferences() { /* 663 */ COSBase margin = getCOSObject().getItem(COSName.RD); /* 664 */ if (margin instanceof COSArray) /* */ { /* 666 */ return ((COSArray)margin).toFloatArray(); /* */ } /* 668 */ return new float[0]; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.5531016", "0.54378587", "0.52516115", "0.52405924", "0.5151045", "0.5127977", "0.50680465", "0.5066997", "0.50218964", "0.5013022", "0.5007318", "0.50048536", "0.49997565", "0.4994835", "0.49735898", "0.49699947", "0.49680406", "0.49594593", "0.4937881", "0.49361676", "0.4...
0.0
-1
/ / / / / / / / / / / /
public final void setCallout(float[] callout) { /* 682 */ COSArray newCallout = new COSArray(); /* 683 */ newCallout.setFloatArray(callout); /* 684 */ getCOSObject().setItem(COSName.CL, (COSBase)newCallout); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "int getWidth() {return width;}", "double passer();", "public Integer getWidth()...
[ "0.5528792", "0.54315263", "0.51737124", "0.5150286", "0.5077775", "0.5064908", "0.50597715", "0.5045933", "0.5037415", "0.5019393", "0.50050676", "0.50032693", "0.499702", "0.49949083", "0.49852678", "0.4973753", "0.4970428", "0.49669605", "0.49542087", "0.4945966", "0.49211...
0.0
-1
/ / / / / / / / / / / /
public float[] getCallout() { /* 698 */ COSBase base = getCOSObject().getDictionaryObject(COSName.CL); /* 699 */ if (base instanceof COSArray) /* */ { /* 701 */ return ((COSArray)base).toFloatArray(); /* */ } /* 703 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "int getWidth() {return width;}", "double passer();", "public Integer getWidth()...
[ "0.5528792", "0.54315263", "0.51737124", "0.5150286", "0.5077775", "0.5064908", "0.50597715", "0.5045933", "0.5037415", "0.5019393", "0.50050676", "0.50032693", "0.499702", "0.49949083", "0.49852678", "0.4973753", "0.4970428", "0.49669605", "0.49542087", "0.4945966", "0.49211...
0.0
-1
/ / / / / / / /
public void setStartPointEndingStyle(String style) { /* 713 */ String actualStyle = (style == null) ? "None" : style; /* 714 */ COSBase base = getCOSObject().getDictionaryObject(COSName.LE); /* */ /* 716 */ if (!(base instanceof COSArray) || ((COSArray)base).size() == 0) { /* */ /* 718 */ COSArray array = new COSArray(); /* 719 */ array.add((COSBase)COSName.getPDFName(actualStyle)); /* 720 */ array.add((COSBase)COSName.getPDFName("None")); /* 721 */ getCOSObject().setItem(COSName.LE, (COSBase)array); /* */ } /* */ else { /* */ /* 725 */ COSArray array = (COSArray)base; /* 726 */ array.setName(0, actualStyle); /* */ } /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public String getStartPointEndingStyle() { /* 737 */ COSBase base = getCOSObject().getDictionaryObject(COSName.LE); /* 738 */ if (base instanceof COSArray && ((COSArray)base).size() >= 2) /* */ { /* 740 */ return ((COSArray)base).getName(0, "None"); /* */ } /* 742 */ return "None"; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public void setEndPointEndingStyle(String style) { /* 752 */ String actualStyle = (style == null) ? "None" : style; /* 753 */ COSBase base = getCOSObject().getDictionaryObject(COSName.LE); /* */ /* 755 */ if (!(base instanceof COSArray) || ((COSArray)base).size() < 2) { /* */ /* 757 */ COSArray array = new COSArray(); /* 758 */ array.add((COSBase)COSName.getPDFName("None")); /* 759 */ array.add((COSBase)COSName.getPDFName(actualStyle)); /* 760 */ getCOSObject().setItem(COSName.LE, (COSBase)array); /* */ } /* */ else { /* */ /* 764 */ COSArray array = (COSArray)base; /* 765 */ array.setName(1, actualStyle); /* */ } /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / /
public String getEndPointEndingStyle() { /* 776 */ COSBase base = getCOSObject().getDictionaryObject(COSName.LE); /* 777 */ if (base instanceof COSArray && ((COSArray)base).size() >= 2) /* */ { /* 779 */ return ((COSArray)base).getName(1, "None"); /* */ } /* 781 */ return "None"; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / / / / / / / /
public float[] getVertices() { /* 793 */ COSBase base = getCOSObject().getDictionaryObject(COSName.VERTICES); /* 794 */ if (base instanceof COSArray) /* */ { /* 796 */ return ((COSArray)base).toFloatArray(); /* */ } /* 798 */ return null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / /
public void setVertices(float[] points) { /* 810 */ COSArray ar = new COSArray(); /* 811 */ ar.setFloatArray(points); /* 812 */ getCOSObject().setItem(COSName.VERTICES, (COSBase)ar); /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50...
[ "0.5540896", "0.5446543", "0.5227331", "0.52141076", "0.5111389", "0.50963986", "0.50654864", "0.5038032", "0.50336593", "0.501189", "0.50033337", "0.5002645", "0.4999724", "0.4997505", "0.49938273", "0.4988672", "0.4982446", "0.49785286", "0.4967535", "0.49578318", "0.491564...
0.0
-1
/ / / / / / / / / / /
public float[][] getPath() { /* 825 */ COSBase base = getCOSObject().getDictionaryObject(COSName.PATH); /* 826 */ if (base instanceof COSArray) { /* */ /* 828 */ COSArray array = (COSArray)base; /* 829 */ float[][] pathArray = new float[array.size()][]; /* 830 */ for (int i = 0; i < array.size(); i++) { /* */ /* 832 */ COSBase base2 = array.getObject(i); /* 833 */ if (base2 instanceof COSArray) { /* */ /* 835 */ pathArray[i] = ((COSArray)array.getObject(i)).toFloatArray(); /* */ } /* */ else { /* */ /* 839 */ pathArray[i] = new float[0]; /* */ } /* */ } /* 842 */ return pathArray; /* */ } /* 844 */ return (float[][])null; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "private int rightChild(int i){return 2*i+2;}", "public void divide() {\n\t\t\n\t}", "public abstract void bepaalGrootte();", "double passer();", "int getWidth() {return width;}", "public void zeichneQuadra...
[ "0.5540745", "0.5444497", "0.5205538", "0.5182055", "0.5094161", "0.50587463", "0.5053648", "0.50452423", "0.50258267", "0.50122976", "0.5012191", "0.50119436", "0.50044477", "0.49989554", "0.49980396", "0.49847832", "0.49795863", "0.49785143", "0.4966902", "0.49588826", "0.4...
0.0
-1
/ / / / / / / /
public void setCustomAppearanceHandler(PDAppearanceHandler appearanceHandler) { /* 854 */ this.customAppearanceHandler = appearanceHandler; /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private int parent(int i){return (i-1)/2;}", "private int leftChild(int i){return 2*i+1;}", "public void divide() {\n\t\t\n\t}", "private int rightChild(int i){return 2*i+2;}", "public void zeichneQuadrate(){\n for (int i=0; i<10;i++)\n rect (50+i*25,50,25,25);\n }", "public abstract void b...
[ "0.55049527", "0.54132545", "0.5298104", "0.52380925", "0.52058434", "0.5148157", "0.5101382", "0.507637", "0.50369906", "0.5031998", "0.5009869", "0.49817902", "0.4981198", "0.4978498", "0.49735028", "0.49626762", "0.4937221", "0.492919", "0.49037388", "0.48935315", "0.48789...
0.0
-1
/ / / /
public void constructAppearances() { /* 860 */ if (this.customAppearanceHandler == null) { /* */ PDSoundAppearanceHandler pDSoundAppearanceHandler; /* 862 */ PDAppearanceHandler appearanceHandler = null; /* 863 */ if ("Caret".equals(getSubtype())) { /* */ /* 865 */ PDCaretAppearanceHandler pDCaretAppearanceHandler = new PDCaretAppearanceHandler(this); /* */ } /* 867 */ else if ("FreeText".equals(getSubtype())) { /* */ /* 869 */ PDFreeTextAppearanceHandler pDFreeTextAppearanceHandler = new PDFreeTextAppearanceHandler(this); /* */ } /* 871 */ else if ("Ink".equals(getSubtype())) { /* */ /* 873 */ PDInkAppearanceHandler pDInkAppearanceHandler = new PDInkAppearanceHandler(this); /* */ } /* 875 */ else if ("Polygon".equals(getSubtype())) { /* */ /* 877 */ PDPolygonAppearanceHandler pDPolygonAppearanceHandler = new PDPolygonAppearanceHandler(this); /* */ } /* 879 */ else if ("PolyLine".equals(getSubtype())) { /* */ /* 881 */ PDPolylineAppearanceHandler pDPolylineAppearanceHandler = new PDPolylineAppearanceHandler(this); /* */ } /* 883 */ else if ("Sound".equals(getSubtype())) { /* */ /* 885 */ pDSoundAppearanceHandler = new PDSoundAppearanceHandler(this); /* */ } /* */ /* 888 */ if (pDSoundAppearanceHandler != null) /* */ { /* 890 */ pDSoundAppearanceHandler.generateAppearanceStreams(); /* */ } /* */ } /* */ else { /* */ /* 895 */ this.customAppearanceHandler.generateAppearanceStreams(); /* */ } /* */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void divide() {\n\t\t\n\t}", "public static void slashes() {\n\t\tSystem.out.println(\"//////////////////////\");\r\n\r\n\t}", "public abstract String division();", "public void division() {\n\t\tx=1;\n\t\ty=0;\n\t\tz=x/y;\n\t\t\t\t\n\t}", "private boolean slash() {\r\n return MARK(OPERATOR) ...
[ "0.5906264", "0.55749613", "0.5428019", "0.53241616", "0.5294036", "0.527193", "0.52582306", "0.5256754", "0.51585066", "0.5141374", "0.51100975", "0.5097357", "0.5026707", "0.50235814", "0.50100124", "0.49757177", "0.4967908", "0.49668512", "0.4931213", "0.49272057", "0.4915...
0.0
-1
Reads in, line by line, the values from a file into a Vector.
public Vector<String> read(String path) throws FileNotFoundException, IOException { file = new File(path); fread = new FileReader(file); buf = new BufferedReader(fread); String temp; Vector<String> working = new Vector<String>(); while (true) { temp = buf.readLine(); if (temp == null) { break; } else { working.add(temp); } } return working; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "static public DoubleList readVector(BufferedReader reader) throws IOException {\r\n int dim = Integer.parseInt(reader.readLine());\r\n DoubleList vector = new DoubleArrayList(dim);\r\n for (int i = 0; i < dim; i++) {\r\n double v = Double.parseDouble(reader.readLine());\r\n vector.add(v);\r\n ...
[ "0.6790696", "0.67841476", "0.6768191", "0.6590233", "0.64661807", "0.64098513", "0.6401285", "0.6362069", "0.6241444", "0.6206803", "0.614752", "0.61445636", "0.6083622", "0.60264826", "0.5854164", "0.58254087", "0.5785881", "0.5750824", "0.57222766", "0.56964386", "0.568631...
0.6322893
8
Writes out, line by line, the values from a Vector into a file.
public void writer(Vector<String> toWrite, String path) throws IOException { file = new File(path); fw = new FileWriter(file); for (int i = 0; i < toWrite.size(); i++) { fw.write(toWrite.get(i)); fw.write('\n'); fw.flush(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static void serializeVectorToFile(Vector aVector, File aFile) throws IOException {\n if (aVector.size() > 0) {\n int lCount = 0;\n\n ObjectOutputStream oos = null;\n oos = new ObjectOutputStream(new FileOutputStream(aFile));\n for (int i = 0; i < aVector.si...
[ "0.7011054", "0.66308135", "0.625121", "0.62041074", "0.6177018", "0.61076635", "0.6065251", "0.6027831", "0.5982934", "0.59013397", "0.5868119", "0.5847531", "0.5841242", "0.5804152", "0.5800585", "0.57932997", "0.5705587", "0.56974584", "0.56760705", "0.5625188", "0.5609247...
0.62679654
2
Should be called from inside the actual test before assertions.
public void replayCommonBehavior() { replay(bundleContextMock); replay(bundleMock); replay(applicationContextMock); this.replayed = true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected abstract void before();", "protected void runBeforeTest() {}", "@Override\n @Before\n public void before() throws Exception {\n\n super.before();\n }", "@Before\r\n\tpublic void before() {\r\n\t}", "@Before\r\n public void before() throws Exception {\r\n }", "@Before\n publi...
[ "0.73807293", "0.7317055", "0.7303798", "0.7161045", "0.7149629", "0.7113883", "0.7113883", "0.6986095", "0.6929895", "0.6929895", "0.6903213", "0.6902262", "0.68883514", "0.68874884", "0.6873349", "0.6864685", "0.6856871", "0.68287295", "0.6752095", "0.67409503", "0.66764313...
0.0
-1
Add some common properties that might be required by the test cases.
private void addProperties() { /** * Add fusion.conf = src/test/resource */ if (isPropertyRequired("fusion.conf.dir")) { expect(bundleContextMock.getProperty("fusion.conf.dir")).andReturn( "src/test/resources/").anyTimes(); } /** * set fusion.process.dir */ if (isPropertyRequired("fusion.process.dir")) { expect(bundleContextMock.getProperty("fusion.process.dir")) .andReturn("src/test/resources/").anyTimes(); } /** * set fusion.process.temp */ if (isPropertyRequired("fusion.process.temp.dir")) { expect(bundleContextMock.getProperty("fusion.process.temp.dir")) .andReturn("src/test/resources/").anyTimes(); } /** * set fusion.home */ if (isPropertyRequired("fusion.home")) { expect(bundleContextMock.getProperty("fusion.home")).andReturn( "src/test/resources/").anyTimes(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void setupProperties() {\n // left empty for subclass to override\n }", "private void addAlmostAll(Hashtable props) {\n Enumeration e = props.keys();\n while (e.hasMoreElements()) {\n String key = e.nextElement().toString();\n if (\"basedir\".equals(key) |...
[ "0.6549399", "0.62947905", "0.5935849", "0.5934011", "0.5818798", "0.5816932", "0.5814588", "0.5783097", "0.5757521", "0.5749716", "0.5729171", "0.5719429", "0.5601385", "0.5591423", "0.55799747", "0.5553851", "0.5472023", "0.5467331", "0.54670686", "0.5461472", "0.54576874",...
0.72945684
0
Test format of generated octave data
@Test public void testToString() { final OctaveObject string = new OctaveString("tekst"); assertEquals("# name: ans\n" + "# type: string\n" + "# elements: 1\n" + "# length: 5\ntekst\n", OctaveIO.toText(string)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test public void testToOctave() {\n final OctaveObject string = new OctaveString(\"mytekst\");\n assertEquals(\"# name: tre\\n\" + \n\t\t \"# type: string\\n\" + \n\t\t \"# elements: 1\\n\" + \n\t\t \"# length: 7\\nmytekst\\n\", \n\t\t OctaveIO.toText(\"tre\", string));\n }", "@...
[ "0.65936476", "0.62150365", "0.57294333", "0.5619726", "0.5581277", "0.52882105", "0.5241498", "0.523867", "0.5158175", "0.5143115", "0.5134344", "0.51262236", "0.50469726", "0.5031793", "0.50212514", "0.4993201", "0.498067", "0.4975108", "0.4966989", "0.49661323", "0.4951836...
0.55260324
5
Test format of generated octave data
@Test public void testToOctave() { final OctaveObject string = new OctaveString("mytekst"); assertEquals("# name: tre\n" + "# type: string\n" + "# elements: 1\n" + "# length: 7\nmytekst\n", OctaveIO.toText("tre", string)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test\n public void testToOctal() {\n Object[][] datas = new Object[][]{\n {0, \"0\"},\n {5, \"5\"},\n {10, \"12\"},\n {11, \"13\"}\n };\n for (Object[] data : datas) {\n String result = Tools.toOctal((int) data[0]); /...
[ "0.62150365", "0.57294333", "0.5619726", "0.5581277", "0.55260324", "0.52882105", "0.5241498", "0.523867", "0.5158175", "0.5143115", "0.5134344", "0.51262236", "0.50469726", "0.5031793", "0.50212514", "0.4993201", "0.498067", "0.4975108", "0.4966989", "0.49661323", "0.4951836...
0.65936476
0
Test that string put into octave is the same as we get back
@Test public void testOctaveRoundtrip() { final OctaveEngine octave = new OctaveEngineFactory().getScriptEngine(); roundtrip(octave, new OctaveString("sample text")); roundtrip(octave, new OctaveString("")); roundtrip(octave, new OctaveString("a\nb")); roundtrip(octave, new OctaveString("a\tb")); octave.close(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test public void testToOctave() {\n final OctaveObject string = new OctaveString(\"mytekst\");\n assertEquals(\"# name: tre\\n\" + \n\t\t \"# type: string\\n\" + \n\t\t \"# elements: 1\\n\" + \n\t\t \"# length: 7\\nmytekst\\n\", \n\t\t OctaveIO.toText(\"tre\", string));\n }", "@...
[ "0.7215997", "0.6764538", "0.6036148", "0.59801793", "0.57127297", "0.5503506", "0.5431044", "0.5429431", "0.5422937", "0.5394777", "0.5388376", "0.5374403", "0.5370673", "0.53189343", "0.5301269", "0.5300559", "0.5295396", "0.5184072", "0.5182722", "0.5178904", "0.5163401", ...
0.6416467
2
Test that string read from octave is what we expect
@Test public void testOctaveRead() { final OctaveEngine octave = new OctaveEngineFactory().getScriptEngine(); read(octave, "sample text", "sample text"); read(octave, "", ""); read(octave, "a\\nb", "a\nb"); read(octave, "a\\tb", "a\tb"); octave.close(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Test public void testToOctave() {\n final OctaveObject string = new OctaveString(\"mytekst\");\n assertEquals(\"# name: tre\\n\" + \n\t\t \"# type: string\\n\" + \n\t\t \"# elements: 1\\n\" + \n\t\t \"# length: 7\\nmytekst\\n\", \n\t\t OctaveIO.toText(\"tre\", string));\n }", "@...
[ "0.7138551", "0.67781824", "0.61826724", "0.5689491", "0.5681444", "0.5550046", "0.540781", "0.54057646", "0.53719914", "0.53509986", "0.5347808", "0.53252435", "0.5309397", "0.5287317", "0.5271555", "0.52519286", "0.52515876", "0.5245239", "0.52292645", "0.52286494", "0.5205...
0.70676297
1
Creates a new Pair object.
public Pair(Object i, Object j) { a = i; b = j; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public Pair() {\r\n\t}", "public Pair() {\n // nothing to do here\n }", "protected Pair() {\n\t\t\n\t\tsuper(2);\n\t}", "public Pair(Key key, Value value) {\n this.key = key;\n this.value = value;\n }", "public Pair(K key, V value){\n this.key = key;\n this.value = ...
[ "0.7892107", "0.7886179", "0.7515176", "0.73731387", "0.7364392", "0.73466307", "0.72918534", "0.7130026", "0.7056062", "0.6988836", "0.6984303", "0.69036126", "0.6833665", "0.6831049", "0.6778267", "0.674684", "0.67261255", "0.6696754", "0.6642495", "0.6584897", "0.65128607"...
0.68191355
14
TODO Autogenerated method stub
public void mouseLeft() { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void keyTyped(KeyEvent event) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void setValue(Object object) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public boolean isSelected() { return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
TODO Autogenerated method stub
@Override public void setSelected(boolean selected) { }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\r\n\tpublic void comer() \r\n\t{\n\t\t\r\n\t}", "@Override\n\tpublic void comer() {\n\t\t\n\t}", "@Override\n public void perish() {\n \n }", "@Override\r\n\t\t\tpublic void annadir() {\n\r\n\t\t\t}", "@Override\n\tpublic void anular() {\n\n\t}", "@Override\n\tprotected void getExr...
[ "0.6671074", "0.6567672", "0.6523024", "0.6481211", "0.6477082", "0.64591026", "0.64127725", "0.63762105", "0.6276059", "0.6254286", "0.623686", "0.6223679", "0.6201336", "0.61950207", "0.61950207", "0.61922914", "0.6186996", "0.6173591", "0.61327106", "0.61285484", "0.608016...
0.0
-1
Post the edited Device timer
boolean doCommandDeviceTimerPost(JSONObject timerJSON);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@Override\n\t\tpublic void run() {\n\t\t\ttry {\n\n\t\t\t\tTAliDevTimer tAliDevTimer = aliDeviceService.getAliDevTimerByTimerId(timerId);\n\t\t\t\tif (tAliDevTimer == null) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tString productKey = aliDevCache.getProductKey(tAliDevTimer.getDeviceSerialId());\n\t\t\t\tString devi...
[ "0.64680195", "0.6454861", "0.61054736", "0.6057859", "0.60296553", "0.6027344", "0.59996104", "0.59405905", "0.59309816", "0.59168935", "0.59102124", "0.5877895", "0.5873903", "0.5872952", "0.5860047", "0.58462816", "0.5837811", "0.5837811", "0.5837811", "0.5837811", "0.5837...
0.6572626
0
Get the timers from server
boolean doCommandDeviceTimerGet();
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "@ApiModelProperty(value = \"Timer information for each search engine\")\n public List<String> getTimers() {\n return timers;\n }", "public static Hashtable getTimersHashtable() {\r\n return _timers;\r\n }", "public final static Timers getTimers( Integer id ) {\n\t\tString key = getKey( id ) ;\n\...
[ "0.66636777", "0.666119", "0.62397027", "0.6230397", "0.6175128", "0.61495024", "0.60601884", "0.5974229", "0.59540445", "0.58782727", "0.57418007", "0.56674427", "0.5643825", "0.56340456", "0.55758196", "0.5542804", "0.5513605", "0.54952544", "0.5492756", "0.5483875", "0.546...
0.49791342
94
Created by YM on 2018/5/3.
public interface AdminEncashMapper { List<EncashVO> getApprovedListForOp(@Param("searchDate") String searchDate) ; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private stendhal() {\n\t}", "@Override\n public void perish() {\n \n }", "public final void mo51373a() {\n }", "@Override\r\n\tpublic void tires() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\r\n\tpublic void bicar() {\n\t\t\r\n\t}", "@Override\n\...
[ "0.59611315", "0.5934809", "0.5717615", "0.56328547", "0.5626136", "0.5626136", "0.5614417", "0.5594016", "0.5514336", "0.5493879", "0.5485481", "0.545943", "0.54528934", "0.5447699", "0.54442126", "0.54403687", "0.5408134", "0.54016095", "0.53958434", "0.5394557", "0.5394557...
0.0
-1
Creates a new DB2 schema.
public DB2zosSchema(JdbcTemplate jdbcTemplate, DB2zosDbSupport dbSupport, String name) { super(jdbcTemplate, dbSupport, name); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "Schema createSchema();", "public void createNewSchema() throws SQLException {\n ResultSet resultSet = databaseStatement.executeQuery(\"select count(datname) from pg_database\");\n int uniqueID = 0;\n if(resultSet.next()) {\n uniqueID = resultSet.getInt(1);\n }\n if(u...
[ "0.71737677", "0.7118718", "0.66116905", "0.63392025", "0.6335558", "0.62399465", "0.6217425", "0.6148541", "0.6139648", "0.60986704", "0.5982881", "0.59790826", "0.59270495", "0.5871015", "0.5778958", "0.57707775", "0.575391", "0.56955665", "0.5695035", "0.56608456", "0.5601...
0.5210607
44
MQTs are dropped when the backing views or tables are dropped Indexes in DB2 are dropped when the corresponding table is dropped views
@Override protected void doClean() throws SQLException { for (String dropStatement : generateDropStatements(name, "V", "VIEW")) { jdbcTemplate.execute(dropStatement); } // aliases for (String dropStatement : generateDropStatements(name, "A", "ALIAS")) { jdbcTemplate.execute(dropStatement); } for (Table table : allTables()) { table.drop(); } // slett testtabeller for (String dropStatement : generateDropStatementsForTestTable(name, "T", "TABLE")) { jdbcTemplate.execute(dropStatement); } // tablespace for (String dropStatement : generateDropStatementsForTablespace(name)) { jdbcTemplate.execute(dropStatement); } // sequences for (String dropStatement : generateDropStatementsForSequences(name)) { jdbcTemplate.execute(dropStatement); } // procedures for (String dropStatement : generateDropStatementsForProcedures(name)) { jdbcTemplate.execute(dropStatement); } // functions for (String dropStatement : generateDropStatementsForFunctions(name)) { jdbcTemplate.execute(dropStatement); } // usertypes for (String dropStatement : generateDropStatementsForUserTypes(name)) { jdbcTemplate.execute(dropStatement); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public void testDropView()\n throws Exception\n {\n String sql = \"create schema s8\";\n stmt.execute(sql);\n\n sql = \"create view s8.v as select * from (values(0))\";\n stmt.execute(sql);\n\n sql = \"drop view s8.v\";\n runAndDiff(sql);\n }", "public void ...
[ "0.66206986", "0.6532819", "0.648285", "0.63816017", "0.6339652", "0.63059396", "0.6296901", "0.62832314", "0.62505054", "0.6249452", "0.6230151", "0.61742216", "0.6174056", "0.60898274", "0.6012298", "0.5993475", "0.59643674", "0.5940453", "0.5901183", "0.58627445", "0.58558...
0.5923662
18
Generates DROP statements for the procedures in this schema.
private List<String> generateDropStatementsForProcedures(String schema) throws SQLException { String dropProcGenQuery = "select rtrim(NAME) from SYSIBM.SYSROUTINES where CAST_FUNCTION = 'N' " + " and ROUTINETYPE = 'P' and SCHEMA = '" + schema + "'"; return buildDropStatements("DROP PROCEDURE", dropProcGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatementsForFunctions(String schema) throws SQLException {\n String dropProcGenQuery = \"select rtrim(NAME) from SYSIBM.SYSROUTINES where CAST_FUNCTION = 'N' \" +\n \" and ROUTINETYPE = 'F' and SCHEMA = '\" + schema + \"'\";\n return buildDropStatemen...
[ "0.7019427", "0.68871987", "0.6771454", "0.67450315", "0.6607578", "0.6570944", "0.65299666", "0.6506866", "0.63740927", "0.6327732", "0.63150585", "0.6264842", "0.62589204", "0.61592", "0.6147091", "0.6019689", "0.5959971", "0.5946519", "0.58172554", "0.5787429", "0.5765504"...
0.8142362
0
Generates DROP statements for the functions in this schema.
private List<String> generateDropStatementsForFunctions(String schema) throws SQLException { String dropProcGenQuery = "select rtrim(NAME) from SYSIBM.SYSROUTINES where CAST_FUNCTION = 'N' " + " and ROUTINETYPE = 'F' and SCHEMA = '" + schema + "'"; return buildDropStatements("DROP FUNCTION", dropProcGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatementsForProcedures(String schema) throws SQLException {\n String dropProcGenQuery = \"select rtrim(NAME) from SYSIBM.SYSROUTINES where CAST_FUNCTION = 'N' \" +\n \" and ROUTINETYPE = 'P' and SCHEMA = '\" + schema + \"'\";\n return buildDropStateme...
[ "0.71646965", "0.69367176", "0.6672802", "0.66359806", "0.6429506", "0.6366024", "0.6331527", "0.6289015", "0.6264868", "0.6208118", "0.61876476", "0.618211", "0.6163535", "0.6163071", "0.6149539", "0.6135732", "0.6116413", "0.60933656", "0.6044739", "0.60172", "0.5796616", ...
0.8259806
0
Generates DROP statements for the sequences in this schema.
private List<String> generateDropStatementsForSequences(String schema) throws SQLException { String dropSeqGenQuery = "select rtrim(NAME) from SYSIBM.SYSSEQUENCES where SCHEMA = '" + schema + "' and SEQTYPE='S'"; return buildDropStatements("DROP SEQUENCE", dropSeqGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatementsForTablespace(String schema) throws SQLException {\n String dropTablespaceGenQuery = \"select rtrim(NAME) FROM SYSIBM.SYSTABLESPACE where DBNAME = '\" + schema + \"'\";\n return buildDropStatements(\"DROP TABLESPACE\", dropTablespaceGenQuery, schema);\n }...
[ "0.7160685", "0.7062616", "0.69561183", "0.66936415", "0.6662323", "0.66553056", "0.6617149", "0.6597653", "0.65507174", "0.65382284", "0.6363112", "0.6333389", "0.62861973", "0.621257", "0.6155009", "0.6105863", "0.6018038", "0.596422", "0.5923135", "0.5916028", "0.5902269",...
0.81500745
0
Generates DROP statements for the tablespace in this schema.
private List<String> generateDropStatementsForTablespace(String schema) throws SQLException { String dropTablespaceGenQuery = "select rtrim(NAME) FROM SYSIBM.SYSTABLESPACE where DBNAME = '" + schema + "'"; return buildDropStatements("DROP TABLESPACE", dropTablespaceGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatements(String schema, String tableType, String objectType) throws SQLException {\n String dropTablesGenQuery = \"select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='\" + tableType + \"' and (DBNAME = '\"\n + schema + \"' OR creator = '\" + schema + \"')\"...
[ "0.7158774", "0.6908171", "0.69022894", "0.67969817", "0.67541605", "0.6737508", "0.6646841", "0.66448534", "0.66191274", "0.6611129", "0.6610987", "0.65938926", "0.654944", "0.6524656", "0.65064406", "0.6432352", "0.6398668", "0.6390988", "0.63610893", "0.63539845", "0.63533...
0.82820046
0
Generates DROP statements for this type of table, representing this type of object in this schema.
private List<String> generateDropStatementsForTestTable(String schema, String tableType, String objectType) throws SQLException { String dropTablesGenQuery = "select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='" + tableType + "' and creator = '" + schema + "'"; return buildDropStatements("DROP " + objectType, dropTablesGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatements(String schema, String tableType, String objectType) throws SQLException {\n String dropTablesGenQuery = \"select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='\" + tableType + \"' and (DBNAME = '\"\n + schema + \"' OR creator = '\" + schema + \"')\"...
[ "0.7240692", "0.6775903", "0.6753782", "0.67460865", "0.6740113", "0.67074984", "0.6692949", "0.6661187", "0.6653609", "0.66175973", "0.65791565", "0.65236074", "0.6436418", "0.6359638", "0.63578093", "0.6316147", "0.62804514", "0.6219036", "0.62138695", "0.6199391", "0.61968...
0.7137661
1
Generates DROP statements for the user defines types in this schema.
private List<String> generateDropStatementsForUserTypes(String schema) throws SQLException { String dropTablespaceGenQuery = "select rtrim(NAME) from SYSIBM.SYSDATATYPES where schema = '" + schema + "'"; return buildDropStatements("DROP TYPE", dropTablespaceGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatements(String schema, String tableType, String objectType) throws SQLException {\n String dropTablesGenQuery = \"select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='\" + tableType + \"' and (DBNAME = '\"\n + schema + \"' OR creator = '\" + schema + \"')\"...
[ "0.69928616", "0.6960459", "0.69591314", "0.6896187", "0.68178266", "0.66482097", "0.6455156", "0.6383836", "0.6325718", "0.62751627", "0.62576544", "0.6199031", "0.6114037", "0.6096737", "0.6071876", "0.60466224", "0.59955305", "0.593769", "0.5906849", "0.59016263", "0.58987...
0.8049961
0
Generates DROP statements for this type of table, representing this type of object in this schema.
private List<String> generateDropStatements(String schema, String tableType, String objectType) throws SQLException { String dropTablesGenQuery = "select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='" + tableType + "' and (DBNAME = '" + schema + "' OR creator = '" + schema + "')"; return buildDropStatements("DROP " + objectType, dropTablesGenQuery, schema); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private List<String> generateDropStatementsForTestTable(String schema, String tableType, String objectType) throws SQLException {\n String dropTablesGenQuery = \"select rtrim(NAME) from SYSIBM.SYSTABLES where TYPE='\" + tableType + \"' and creator = '\"\n + schema + \"'\";\n return bui...
[ "0.7137661", "0.6775903", "0.6753782", "0.67460865", "0.6740113", "0.67074984", "0.6692949", "0.6661187", "0.6653609", "0.66175973", "0.65791565", "0.65236074", "0.6436418", "0.6359638", "0.63578093", "0.6316147", "0.62804514", "0.6219036", "0.62138695", "0.6199391", "0.61968...
0.7240692
0