query
stringlengths
7
9.55k
document
stringlengths
10
363k
metadata
dict
negatives
listlengths
0
101
negative_scores
listlengths
0
101
document_score
stringlengths
3
10
document_rank
stringclasses
102 values
GET /picture_comments/1 GET /picture_comments/1.json
def show end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def comments\n client.get(\"/#{id}/comments\")\n end", "def show\n @profile_picture = ProfilePicture.find(params[:id])\n @commentable = @profile_picture\n @comments = @commentable.comments\n @comment = Comment.new\n\n respond_to do |format|\n format.html # show.html.erb\n format....
[ "0.72587", "0.7222499", "0.7216618", "0.71568346", "0.71510416", "0.7134518", "0.70479923", "0.7047443", "0.69863385", "0.69818693", "0.68882495", "0.68076944", "0.6802958", "0.6799736", "0.67473716", "0.6701049", "0.6681165", "0.6681165", "0.6606982", "0.6585319", "0.6572403...
0.0
-1
POST /picture_comments POST /picture_comments.json
def create @picture = Picture.find params[:picture_id] @new_picture_comment = PictureComment.new(picture_comment_params) @new_picture_comment.picture = @picture @new_picture_comment.user = current_user if @new_picture_comment.save redirect_to picture_path(@picture) else @picture_comments = @picture.picture_comments.order(created_at: :desc) render "pictures/show" end # @picture_comment = PictureComment.new(picture_comment_params) # respond_to do |format| # if @picture_comment.save # format.html { redirect_to @picture_comment, notice: 'Picture comment was successfully created.' } # format.json { render :show, status: :created, location: @picture_comment } # else # format.html { render :new } # format.json { render json: @picture_comment.errors, status: :unprocessable_entity } # end # end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def post_photo_comment\n @pic = Picture.find(params[:picture_id].to_i)\n @comment = PhotoComment.new(:comment=>params[:comment],:user_id=>@login_user.id,:discussable_id=>params[:picture_id],:discussable_type=>\"Picture\")\n if @comment.save\n respond_to do |format|\n format.js\n end\n ...
[ "0.7580851", "0.726661", "0.7048099", "0.6945436", "0.6919591", "0.68058544", "0.6784785", "0.6594999", "0.65897316", "0.647804", "0.6444993", "0.6438595", "0.64367384", "0.6375256", "0.63620836", "0.6360339", "0.6318313", "0.6307005", "0.62785316", "0.62698984", "0.62623674"...
0.7054806
2
PATCH/PUT /picture_comments/1 PATCH/PUT /picture_comments/1.json
def update respond_to do |format| if @picture_comment.update(picture_comment_params) format.html { redirect_to @picture_comment, notice: 'Picture comment was successfully updated.' } format.json { render :show, status: :ok, location: @picture_comment } else format.html { render :edit } format.json { render json: @picture_comment.errors, status: :unprocessable_entity } end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def update\n @imgcomment = Imgcomment.find(params[:id])\n\n respond_to do |format|\n if @imgcomment.update_attributes(params[:imgcomment])\n format.html { redirect_to @imgcomment, notice: 'Imgcomment was successfully updated.' }\n format.json { head :no_content }\n else\n forma...
[ "0.6822784", "0.6746901", "0.6746845", "0.6723143", "0.6670136", "0.6587116", "0.65788656", "0.656598", "0.6549688", "0.6543518", "0.6515699", "0.65076905", "0.64969146", "0.6490219", "0.6490219", "0.6442285", "0.6437088", "0.6415494", "0.6349914", "0.634146", "0.6338959", ...
0.71480966
0
DELETE /picture_comments/1 DELETE /picture_comments/1.json
def destroy @picture_comment.destroy redirect_to picture_path(@picture_comment.picture) # respond_to do |format| # format.html { redirect_to picture_comments_url, notice: 'Picture comment was successfully destroyed.' } # format.json { head :no_content } # end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def destroy\n @imgcomment = Imgcomment.find(params[:id])\n @imgcomment.destroy\n\n respond_to do |format|\n format.html { redirect_to imgcomments_url }\n format.json { head :no_content }\n end\n end", "def destroy\n @album = Album.find(params[:album_id])\n @photo = @album.photos.find...
[ "0.7577529", "0.7376646", "0.73549443", "0.7221013", "0.716645", "0.71193075", "0.708715", "0.69983435", "0.69983435", "0.6995109", "0.6982236", "0.6979248", "0.6976625", "0.69416666", "0.6941359", "0.69401085", "0.69385016", "0.69360995", "0.6898529", "0.68925637", "0.689256...
0.726833
3
Use callbacks to share common setup or constraints between actions.
def set_picture_comment @picture_comment = PictureComment.find(params[:id]) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def set_required_actions\n # TODO: check what fields change to asign required fields\n end", "def action_hook; end", "def run_actions; end", "def define_action_hook; end", "def actions; end", "def define_action_helpers\n if super && action == :save\n @instance_helper_module.class_...
[ "0.6163163", "0.6045976", "0.5946146", "0.591683", "0.5890051", "0.58349305", "0.5776858", "0.5703237", "0.5703237", "0.5652805", "0.5621621", "0.54210985", "0.5411113", "0.5411113", "0.5411113", "0.5391541", "0.53794575", "0.5357573", "0.53402257", "0.53394014", "0.53321576"...
0.0
-1
Only allow a list of trusted parameters through.
def picture_comment_params params.require(:picture_comment).permit(:body, :picture_id) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def allowed_params\n ALLOWED_PARAMS\n end", "def strong_params\n params.require(:listing_member).permit(param_whitelist)\n end", "def parameters_list_params\n params.require(:parameters_list).permit(:name, :description, :is_user_specific)\n end", "def param_whitelist\n [:role, :title]\...
[ "0.6946679", "0.6811753", "0.67995036", "0.679359", "0.67437977", "0.6738685", "0.6525698", "0.65186113", "0.6492684", "0.64316213", "0.64316213", "0.64316213", "0.6397299", "0.63539475", "0.63526994", "0.6344162", "0.63427454", "0.6336022", "0.63279474", "0.63279474", "0.632...
0.0
-1
(This method maps the columns from the CSV row to valid columns in the database, using the map defined in row_map)
def extract_data(row) row_map.each_with_object({}) do |(db_column, row_column), output| output[db_column] = row[row_column] end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def validate_column_mappings(line)\n unmapped = []\n line.each_key do |key|\n next if column_names.include? key\n unmapped << key\n end\n raise NdrImport::UnmappedDataError, unmapped if unmapped.any?\n end", "def row_to_hash(row, columns, key_map)\n hash = {}\n...
[ "0.6979582", "0.6625543", "0.63524187", "0.63169503", "0.63162524", "0.62326944", "0.6213776", "0.60734564", "0.60481495", "0.60347545", "0.60000914", "0.5989269", "0.5934844", "0.5819059", "0.58185214", "0.57761097", "0.5772296", "0.57038826", "0.5668335", "0.5643853", "0.56...
0.6085924
7
Add default description text to tools.
def config(tool, loader) data = {tool: tool, loader: loader} tool.flags.each do |flag| config_desc(flag, generate_flag_desc(flag, data), generate_flag_long_desc(flag, data)) end tool.positional_args.each do |arg| config_desc(arg, generate_arg_desc(arg, data), generate_arg_long_desc(arg, data)) end tool.flag_groups.each do |flag_group| config_desc(flag_group, generate_flag_group_desc(flag_group, data), generate_flag_group_long_desc(flag_group, data)) end config_desc(tool, generate_tool_desc(tool, data), generate_tool_long_desc(tool, data)) yield end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def set_description\n\t\t@description = \"Sales by Rails\"\n\tend", "def default_description\n options[:default_description]\n end", "def desc(name, description)\n commands[name].description = description\n end", "def default_description\n description = \"Run `#{@application_class.name}`...
[ "0.69191635", "0.6882141", "0.68486184", "0.67594326", "0.66404366", "0.6638242", "0.65948856", "0.6583238", "0.65750635", "0.65687853", "0.65165204", "0.6505924", "0.64901066", "0.6475736", "0.6424758", "0.642264", "0.64214617", "0.64013", "0.63860005", "0.6364117", "0.63445...
0.0
-1
Get a raw, unformatted theme header. The header is sanitized, but is not translated, and is not marked up for display. To get a theme header for display, use the display() method. Use the get_template() method, not the 'Template' header, for finding the template. The 'Template' header is only good for what was written in the style.css, while get_template() takes into account where WordPress actually located the theme and whether it is actually valid.
def get(header) return false if @headers[header].blank? sanitize_header(header, @headers[header]) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def get_template\n # Filters the name of the current theme.\n apply_filters('template', get_option('template'))\n end", "def load_header_template\n path = File.open(\"#{SOAP_TEMPLATE_PATH}/header.xml\")\n Nokogiri::XML(path)\n end", "def get_header_textcolor\n get_theme_mod('header...
[ "0.6107192", "0.5805873", "0.5511209", "0.55003", "0.5471378", "0.54709107", "0.54641026", "0.53838986", "0.537408", "0.528834", "0.52734834", "0.52583766", "0.52451247", "0.52410984", "0.5238852", "0.51857686", "0.51688033", "0.5128753", "0.51137733", "0.5076642", "0.5070548...
0.0
-1
Gets a theme header, formatted and translated for display.
def display(header, markup = true, translate = true) value = get(header) return false if value == false if translate && (value.blank? || !load_textdomain) translate = false end value = translate_header(header, value) if translate value = markup_header(header, value, translate) if markup value end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def get_header_textcolor\n get_theme_mod('header_textcolor', get_theme_support( 'custom-header', 'default-text-color' ))\n end", "def header\n @header ||= create_header\n end", "def header\n return @header\n end", "def header_text\n @attributes[:header_text]\n end", "def entry_heade...
[ "0.64476216", "0.61244476", "0.6013661", "0.5947062", "0.5939712", "0.58646226", "0.57920796", "0.5791616", "0.5791177", "0.57800186", "0.57781225", "0.5747631", "0.57399845", "0.5729951", "0.5709549", "0.5695573", "0.5667239", "0.5663461", "0.5659476", "0.5631363", "0.563136...
0.0
-1
Sanitize a theme header.
def sanitize_header(header, value) value end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def sanitize_header_field(value)\n value.to_s\n .gsub(\"\\r\\n\", \"\\n\")\n .gsub(HEADER_FIELD_SANITIZER_PATTERN, HEADER_FIELD_SANITIZER_MAPPING)\n end", "def prepare_custom_headers(header)\n header.end_with?(\"__c\") ? header.slice(0..-4).downcase : header.downcase\n end", "def cl...
[ "0.63214713", "0.60928637", "0.583805", "0.5800734", "0.57904917", "0.57904917", "0.57904917", "0.5785159", "0.5695959", "0.569451", "0.5686932", "0.56842", "0.5673493", "0.5669149", "0.5585829", "0.5584255", "0.5550594", "0.5539094", "0.5524586", "0.55171734", "0.5499293", ...
0.657884
0
Mark up a theme header.
def markup_header(header, value, translate) value end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def header_style(header); end", "def generate_header\n \n self.reload\n self.headers.reload\n \n layout_path = self.current_layout.relative_path unless self.current_layout.nil?\n \n # Default header values\n yaml_headers = {'title' => self.name, \n 'created_at' => Time....
[ "0.71281403", "0.6448695", "0.6446589", "0.64348936", "0.64054585", "0.6334344", "0.6313191", "0.6295753", "0.629091", "0.62654436", "0.625157", "0.6244965", "0.6232557", "0.62257826", "0.62129426", "0.62125516", "0.6212505", "0.6204387", "0.6199527", "0.6198141", "0.6193422"...
0.0
-1
Translate a theme header.
def translate_header(header, value) value end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def markup_header(header, value, translate)\n value\n end", "def translated_header_message\n lookups = []\n lookups << :\"activemodel.errors.template.header_message\"\n lookups << :\"activerecord.errors.template.header_message\"\n lookups << :\"case_form.errors.template.he...
[ "0.6415071", "0.63446915", "0.5993909", "0.5925883", "0.5891202", "0.5772164", "0.57696104", "0.57599354", "0.5719176", "0.5690184", "0.5628209", "0.56081665", "0.5605149", "0.559757", "0.5509492", "0.54883945", "0.54779375", "0.5453536", "0.54509753", "0.54254687", "0.540805...
0.6405397
1
The directory name of the theme's "stylesheet" files, inside the theme root. In the case of a child theme, this is directory name of the child theme. Otherwise, get_stylesheet() is the same as get_template().
def get_stylesheet @stylesheet end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def get_stylesheet_directory\n stylesheet = get_stylesheet\n theme_root = get_theme_root(stylesheet)\n stylesheet_dir = \"#{theme_root}/#{stylesheet}\"\n\n # Filters the stylesheet directory path for current theme.\n apply_filters( 'stylesheet_directory', stylesheet_dir, stylesheet, theme_ro...
[ "0.7899692", "0.7324366", "0.71757615", "0.71385044", "0.71019375", "0.70276695", "0.70152205", "0.6982451", "0.6955902", "0.6923513", "0.68731016", "0.68288106", "0.673666", "0.65578306", "0.6556961", "0.65356326", "0.64676154", "0.6439915", "0.64362454", "0.63869154", "0.63...
0.5886862
35
The directory name of the theme's "template" files, inside the theme root. In the case of a child theme, this is the directory name of the parent theme. Otherwise, the get_template() is the same as get_stylesheet().
def get_template @template end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def get_template_directory\n template = get_template\n theme_root = get_theme_root(template)\n template_dir = \"#{theme_root}/#{template}\"\n\n # Filters the current theme directory path.\n #\n # @param string $template_dir The URI of the current theme directory.\n # @param string $templ...
[ "0.79202604", "0.7316257", "0.7256774", "0.7192263", "0.7183834", "0.6935341", "0.693385", "0.6886918", "0.6885672", "0.68800354", "0.68557054", "0.6773584", "0.6773584", "0.676242", "0.6722261", "0.6671999", "0.66198444", "0.6538882", "0.6531435", "0.6528992", "0.6499962", ...
0.0
-1
SEED MATCHES AMONG TEST_USER and Tom
def tom_likes_walker Swipe.create!({ swiped_yes: true, swiper_id: 23, swipee_id: 24 }) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def test_create_seed\n r1 = create_seed 123\n r2 = create_seed 123\n assert_equal r1, r2\n end", "def test_add_mixedup_user\n num_users0 = count_users\n proto = User.new('oauth_id' => '566213105', 'name' => 'Avilay Parekh')\n proto.oauth_id = SecureRandom.uuid\n new_user = @ds.add_or_get_us...
[ "0.6024368", "0.595851", "0.5832883", "0.57962906", "0.5728651", "0.5724884", "0.56935304", "0.56811357", "0.567608", "0.55968285", "0.5573558", "0.5536836", "0.5525139", "0.55164635", "0.5509655", "0.5501347", "0.5492673", "0.5486848", "0.5481108", "0.54761916", "0.54674065"...
0.0
-1
GET /members/1/independents GET /members/1/independents.xml
def index @independents = @member.independents respond_to do |format| format.html # index.html.erb format.xml { render :xml => @independents } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def show\n @independent = @member.independents.find(params[:id])\n\n respond_to do |format|\n format.html # show.html.erb\n format.xml { render :xml => @independent }\n end\n end", "def destroy\n @independent = @member.independents.find(params[:id])\n @independent.destroy\n\n respon...
[ "0.715067", "0.5421303", "0.54015076", "0.53999484", "0.5351553", "0.53199744", "0.5268182", "0.52425855", "0.5186757", "0.51764673", "0.516194", "0.51615864", "0.5159137", "0.5131453", "0.50845534", "0.50455713", "0.50453806", "0.5039467", "0.50149477", "0.5011014", "0.49976...
0.7758057
0
GET /members/1/independents/1 GET /members/1/independents/1.xml
def show @independent = @member.independents.find(params[:id]) respond_to do |format| format.html # show.html.erb format.xml { render :xml => @independent } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def index\n @independents = @member.independents\n\n respond_to do |format|\n format.html # index.html.erb\n format.xml { render :xml => @independents }\n end\n end", "def destroy\n @independent = @member.independents.find(params[:id])\n @independent.destroy\n\n respond_to do |forma...
[ "0.7678946", "0.55102414", "0.5482326", "0.53788185", "0.5351437", "0.5296258", "0.52153504", "0.52108866", "0.51754814", "0.5175424", "0.51471215", "0.5114033", "0.5090626", "0.5081622", "0.50255406", "0.4995476", "0.49822924", "0.4956735", "0.49246043", "0.49131396", "0.490...
0.72361463
1
GET /members/1/independents/new GET /members/1/independents/new.xml
def new @independent = @member.independents.build @independent.name_last = @member.name.split(" ")[1] unless @member.name.nil? respond_to do |format| format.html # new.html.erb format.xml { render :xml => @independent } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def index\n @independents = @member.independents\n\n respond_to do |format|\n format.html # index.html.erb\n format.xml { render :xml => @independents }\n end\n end", "def new\n @dependent_representative = DependentRepresentative.new\n\n respond_to do |format|\n format.html # new....
[ "0.63323325", "0.6079279", "0.5994397", "0.58979785", "0.5874868", "0.5800468", "0.57986903", "0.5784584", "0.5782767", "0.57258415", "0.570028", "0.56811076", "0.56804764", "0.5652055", "0.5635229", "0.56251997", "0.5614399", "0.56137204", "0.56137204", "0.56044036", "0.5562...
0.71858126
0
POST /members/1/independents POST /members/1/independents.xml
def create @independent = @member.independents.build(params[:independent]) @independent.phone = params[:independent][:phone_areacode] + "-" + params[:independent][:phone_exchange] + "-" + params[:independent][:phone_subscriber] respond_to do |format| if @independent.save format.html { redirect_to(@member, :notice => 'Independent was successfully created.') } format.xml { render :xml => @independent, :status => :created, :location => @independent } else format.html { render :action => "new" } format.xml { render :xml => @independent.errors, :status => :unprocessable_entity } end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def index\n @independents = @member.independents\n\n respond_to do |format|\n format.html # index.html.erb\n format.xml { render :xml => @independents }\n end\n end", "def new\n @independent = @member.independents.build\n @independent.name_last = @member.name.split(\" \")[1] unless @me...
[ "0.6458221", "0.5838902", "0.53992355", "0.5371673", "0.51605654", "0.49523574", "0.48671836", "0.46911392", "0.4674723", "0.4649935", "0.46117878", "0.45768565", "0.45265433", "0.45254147", "0.4514311", "0.45038497", "0.449246", "0.4485977", "0.44839728", "0.4476885", "0.447...
0.54094946
2
PUT /independents/1 PUT /independents/1.xml
def update @independent = @member.independents.find(params[:id]) params[:independent][:phone] = params[:independent][:phone_areacode] + "-" + params[:independent][:phone_exchange] + "-" + params[:independent][:phone_subscriber] respond_to do |format| if @independent.update_attributes(params[:independent]) format.html { redirect_to(@member, :notice => 'Independent was successfully updated.') } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @independent.errors, :status => :unprocessable_entity } end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def update opts = {}\n opts[:headers] ||= {}\n opts[:headers]['Content-Type'] ||= 'text/xml'\n post 'update', opts\n end", "def test_put_invoices_1_xml\n @parameters = {:invoice => {:number => 'NewNumber'}}\n \n Redmine::ApiTest::Base.should_allow_api_authentication(:put,\n ...
[ "0.5574715", "0.5536152", "0.5354131", "0.5214194", "0.51571923", "0.51302505", "0.5103172", "0.5096839", "0.50657463", "0.5048822", "0.5046975", "0.5042712", "0.5029678", "0.50041664", "0.49986824", "0.49710122", "0.4968637", "0.49618426", "0.49586728", "0.4953017", "0.49371...
0.5375154
2
DELETE /independents/1 DELETE /independents/1.xml
def destroy @independent = @member.independents.find(params[:id]) @independent.destroy respond_to do |format| format.html { redirect_to(member_independents_url(@member)) } format.xml { head :ok } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def netdev_resxml_delete( xml )\n top = netdev_resxml_top( xml )\n par = top.instance_variable_get(:@parent)\n par['delete'] = 'delete'\n end", "def destroy\n @dependencia = Dependencia.find(params[:id])\n begin\n @dependencia.destroy\n rescue ActiveRecord::DeleteRestrictionError => e\n ...
[ "0.6361193", "0.6154071", "0.6145003", "0.60545003", "0.60446584", "0.59719753", "0.59569734", "0.59413123", "0.5893583", "0.58909357", "0.5886452", "0.5877397", "0.58493656", "0.58100134", "0.57944584", "0.57923496", "0.5789528", "0.57884794", "0.57814467", "0.5776423", "0.5...
0.69662094
0
A description of the versions prior to the migration version. Could be "a.x" if the migration version is 1.0 or later, otherwise falls back to "prea.b".
def pre_migration_version match = /^(\d)+\.0/.match migration_version.to_s if match major = match[1].to_i return "#{major - 1}.x" if major.positive? end "pre-#{migration_version}" end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def tc_previous_versions(version)\n # TODO: make an index for this stuff\n v = get_version(version)[\"previous_version\"]\n if v\n Array === v ? v : [v]\n else\n []\n end\n end", "def previous_versions\n @previous_versions ||= versions[1..-1] rescue ...
[ "0.6712393", "0.66703826", "0.6593164", "0.6514432", "0.63892674", "0.62752604", "0.6212096", "0.6199724", "0.6199724", "0.61595553", "0.614416", "0.61241424", "0.6066215", "0.59398484", "0.5923893", "0.5917324", "0.59167427", "0.58217955", "0.5804147", "0.5791333", "0.574865...
0.7494259
0
Using YahooFinance API to retreive quote details for stocks
def stock_quote(stocks, bulb) quotes = YahooFinance::get_standard_quotes( stocks ) quotes.each do |symbol, qt| change_light(bulb, qt) # call change light function end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def stockquote(stock)\n url = URI(\"https://apidojo-yahoo-finance-v1.p.rapidapi.com/market/v2/get-quotes?region=US&symbols=#{@stock}\")\n\n http = Net::HTTP.new(url.host, url.port)\n http.use_ssl = true\n http.verify_mode = OpenSSL::SSL::VERIFY_NONE\n \n ...
[ "0.8021494", "0.7753533", "0.76349115", "0.7533432", "0.74914193", "0.7203931", "0.7200073", "0.71905047", "0.7002536", "0.6962903", "0.69078434", "0.6867744", "0.68152595", "0.68056804", "0.6763453", "0.67231816", "0.67142886", "0.67129594", "0.66750956", "0.66422856", "0.66...
0.6190313
37
Function to greet with Weather
def weather_report(location) # Fetch weather weatherboy = Weatherboy.new(location) w = weatherboy.current Mac::TTS.say("The current weather in Atherton is #{w.temp_f} degrees and #{w.weather}", :victoria) sleep(0.5) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def greet\n 'Ahoy Mateys!'\n end", "def greet\n puts '------------------------'\n puts \"Greetings to you #{@name}\"\n end", "def greet(who)\n\t\"Hello, #{who}!\"\nend", "def greet(who)\n\t\"Hello, #{who}!\"\nend", "def greet(who)\n\t\"Hello, #{who}!\"\nend", "def greets(name)\n puts \"he...
[ "0.7407892", "0.7077284", "0.6945808", "0.6945808", "0.6945808", "0.69046074", "0.68466353", "0.68421024", "0.6820149", "0.6791583", "0.67866784", "0.6769134", "0.67460436", "0.67450625", "0.6742127", "0.67384523", "0.67341024", "0.6731315", "0.6725034", "0.66815335", "0.6633...
0.6819486
9
Function determines quote performance and changes light color accordingly
def change_light(light, quote) if quote.changePercent <= -1 light.set_color LIFX::Color.red, duration: 0 Mac::TTS.say("#{quote.name} is down #{quote.changePercent.abs} percent", :victoria) elsif quote.changePercent >= 1 light.set_color LIFX::Color.green, duration: 0 Mac::TTS.say("#{quote.name} is up #{quote.changePercent.abs} percent", :victoria) else light.set_color LIFX::Color.blue, duration: 0 Mac::TTS.say("#{quote.name} is flat at #{quote.changePercent} percent", :victoria) end sleep(0.5) light.set_color LIFX::Color.hsb(0,0,0.35), duration: 0 end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def colorized?; end", "def colorize!; @colors = true; end", "def quotes \n case self\n when 'thunderstorm'\n puts \"Fucking thunder storm..\".bold.blink.colorize(:light_blue)\n puts ''\n puts \"It's time to sing the “Fuck you Thunderâ€.\".colorize(:blue)\n when 'thunderstorm wi...
[ "0.6250965", "0.57846224", "0.57744646", "0.5763351", "0.5672441", "0.5665996", "0.5647751", "0.5627291", "0.5627291", "0.5553286", "0.5516161", "0.54932064", "0.5437854", "0.5437029", "0.54054457", "0.54009455", "0.5381803", "0.53802496", "0.5344611", "0.5344611", "0.5340012...
0.6611195
0
GET /posts GET /posts.json
def index @current_section = params[:category] || '' # for the carousel @most_recent = Post.published.where(category: @current_section).recent.first # bulid posts query, for current section @posts = Post.published.where(category: @current_section).recent # not including the first one @posts = @posts.where( "id != #{@most_recent.id}" ) if @most_recent # and (@current_section == 'traininggear') # paginate the posts @posts = @posts.page(params[:page]).per(9) respond_to do |format| format.html # index.html.erb format.json { render json: @posts } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def show\n @posts = Post.find(params[:id])\n render json: @posts\n end", "def index\n @posts = Post.all\n render json: @posts\n end", "def index\n @posts = Post.all\n\n render json: @posts\n end", "def index\n @posts = Post.all\n\n render json: @posts\n end", "def index\n ...
[ "0.7865315", "0.7494904", "0.7494433", "0.7494433", "0.7488696", "0.74314564", "0.728645", "0.728645", "0.728645", "0.72562826", "0.72522277", "0.7247287", "0.7246305", "0.72221965", "0.72042215", "0.72039723", "0.7169929", "0.71689725", "0.71644753", "0.7121855", "0.71152896...
0.0
-1
GET /posts/1 GET /posts/1.json
def show @post = Post.published.find(params[:id]) @post.increment!(:views) unless current_user @current_section = @post.category respond_to do |format| format.html # show.html.erb format.json { render json: @post } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def show\n @posts = Post.find(params[:id])\n render json: @posts\n end", "def show\n render json: Post.find(params[\"id\"])\n end", "def show\r\n post = Post.find(params[:id])\r\n render json: post\r\n end", "def show\n @post = Post.find(params[:id])\n\n render json: @post\n end", ...
[ "0.7711106", "0.7353868", "0.73432916", "0.7337744", "0.7322914", "0.72929156", "0.7275816", "0.7256641", "0.7161978", "0.71590686", "0.71554387", "0.71554387", "0.7119625", "0.70948726", "0.70948726", "0.70948726", "0.7094028", "0.7071563", "0.7060839", "0.70453614", "0.7032...
0.0
-1
GET /posts/new GET /posts/new.json
def new @post = Post.new respond_to do |format| format.html # new.html.erb format.json { render json: @post } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def new\n \n @post = Post.new\n\n respond_to do |format|\n format.html # new.html.erb\n format.json { render :json => @post }\n end\n end", "def new\n @post = Post.new\n \n respond_to do |format|\n format.html # new.html.erb\n format.json { render json: @post }\n end\...
[ "0.8041974", "0.80156785", "0.79855186", "0.7931169", "0.79215", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "0.79208946", "...
0.78468144
34
POST /posts POST /posts.json
def create @post = Post.new(params[:post]) respond_to do |format| if @post.save format.html { redirect_to @post, notice: 'Post was successfully created.' } format.json { render json: @post, status: :created, location: @post } else format.html { render action: "new" } format.json { render json: @post.errors, status: :unprocessable_entity } end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def create\n render json: Post.create(params[\"post\"])\n end", "def create\n respond_with Post.create(params[:posts])\n end", "def create\n @post = Post.create(post_params)\n render json: @post, serializer: PostSerializer\n end", "def create\n @post = Post.new(post_params)\n @po...
[ "0.74463975", "0.73221767", "0.73072433", "0.7123966", "0.7015686", "0.701327", "0.69841874", "0.6939327", "0.69313824", "0.69053805", "0.68196476", "0.6812792", "0.6793222", "0.6792862", "0.6779654", "0.6779654", "0.67625546", "0.67602354", "0.67515427", "0.6735786", "0.6698...
0.6380103
57
PUT /posts/1 PUT /posts/1.json
def update @post = Post.find(params[:id]) respond_to do |format| if @post.update_attributes(params[:post]) format.html { redirect_to @post, notice: 'Post was successfully updated.' } format.json { head :no_content } else format.html { render action: "edit" } format.json { render json: @post.errors, status: :unprocessable_entity } end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def update\n render json: Post.update(params[\"id\"], params[\"post\"])\n end", "def update\n respond_with Post.update(params[:id], params[:posts])\n end", "def update\n respond_with post.update(params[:id], params[:post])\n end", "def update\n title = params[:title]\n body ...
[ "0.7308219", "0.7123652", "0.68159384", "0.66432106", "0.66181636", "0.6607148", "0.6583982", "0.6564183", "0.6552021", "0.6532697", "0.6511846", "0.64877653", "0.6446283", "0.64321554", "0.64155626", "0.638547", "0.63833165", "0.63661736", "0.63641906", "0.6363359", "0.63632...
0.6133479
71
DELETE /posts/1 DELETE /posts/1.json
def destroy @post = Post.find(params[:id]) @post.destroy respond_to do |format| format.html { redirect_to posts_url } format.json { head :no_content } end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def delete\n render json: Post.delete(params[\"id\"])\n end", "def destroy\n @post.destroy\n respond_to do |format|\n format.json { head :no_content }\n end\n end", "def destroy\n post = Post.find(params[:id])\n if post.destroy\n render json: {status: \"success\", data: {id: param...
[ "0.80474216", "0.7690539", "0.7584054", "0.7579993", "0.7568069", "0.75050366", "0.7503592", "0.7475553", "0.74675894", "0.7465682", "0.74644274", "0.7459639", "0.7459639", "0.7459639", "0.7459639", "0.745848", "0.745848", "0.745848", "0.745848", "0.745848", "0.745848", "0....
0.73717594
65
List events filtered by params.
def all(params = {}) req = WebPay::EventListRequest.create(params) raw_response = @client._request(:get, 'events', req) WebPay::EventResponseList.new(raw_response) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def list_events(criteria = {})\n events(criteria: criteria)\n end", "def index\n\n #events_scope = Event.event_curator_users_filter(params[:curator_filter])\n #events_scope = events_scope.event_curator_users_filter(params[:event_curator_users_filter])\n #events_scope = events_scope.event_curator...
[ "0.7105516", "0.6821209", "0.6802279", "0.67903924", "0.6790376", "0.67603785", "0.6614583", "0.6594905", "0.65811884", "0.6542091", "0.65021664", "0.6486536", "0.64079833", "0.6395457", "0.63848096", "0.6359003", "0.63354236", "0.63336307", "0.6325386", "0.6325146", "0.63228...
0.7138208
0
defines the getter for the property
def create_getter! @target.class_eval <<-EOS #{reader_visibility.to_s} def #{name} attribute_get(#{name.inspect}) end EOS if type == TrueClass @target.class_eval <<-EOS #{reader_visibility.to_s} def #{name.to_s.ensure_ends_with('?')} attribute_get(#{name.inspect}) end EOS end rescue SyntaxError raise SyntaxError.new(column) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def getter\r\n @getter ||= Field.getter(@name)\r\n end", "def getters; end", "def create_property_getter(property)\n # meth = property.name\n class_eval <<-EOS, __FILE__, __LINE__ + 1\n def #{property.name}\n self['#{property.name}']\n end\n ...
[ "0.75034976", "0.7440772", "0.73816454", "0.73538804", "0.72930545", "0.7285375", "0.71944225", "0.71920335", "0.7182406", "0.71302724", "0.707904", "0.7052867", "0.7040474", "0.7032917", "0.67653596", "0.6742757", "0.67252094", "0.6713803", "0.67018473", "0.658753", "0.65627...
0.66121507
19
defines the setter for the property
def create_setter! @target.class_eval <<-EOS #{writer_visibility.to_s} def #{name}=(value) attribute_set(#{name.inspect}, value) end EOS rescue SyntaxError raise SyntaxError.new(column) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def __setter__\n \"#{self}=\"\n end", "def setter_method\n :\"#{self[:name]}=\"\n end", "def setter\n @setter ||= :\"#{@name}=\"\n end", "def _setter_method\n :\"_#{self[:name]}=\"\n end", "def setter_method\n :\"#{self[:name]}=\"\n end", "d...
[ "0.78410894", "0.76157534", "0.7553417", "0.75172514", "0.7484229", "0.74801564", "0.7449306", "0.74206066", "0.7383213", "0.72563344", "0.7225202", "0.70942897", "0.70692086", "0.7058126", "0.7056925", "0.70429844", "0.7021748", "0.6980821", "0.6962756", "0.69336176", "0.688...
0.68459874
24
takes the line, checks if it empty and print message, if not empty prints current position and customer name.
def line(katz_deli) if katz_deli.empty? puts "The line is currently empty." else current_line = "The line is currently:" katz_deli.each.with_index(1) do |customer, position| current_line << " #{position}. #{customer}" end end puts current_line end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def line(customers)\n \tif customers.empty?\n \tputs \"The line is currently empty.\"\n else output = \"The line is currently:\"\n \tcustomers.each_with_index do |customer, index|\n \tline_number = index + 1\n \toutput << \" #{line_number}. #{customer}\"\n \tend\n \tputs output\n end\n end", "def line(katz_deli)...
[ "0.72123325", "0.7066681", "0.6995437", "0.6799834", "0.67344785", "0.66587776", "0.6629057", "0.65427715", "0.6529151", "0.6518857", "0.651193", "0.63932824", "0.63897973", "0.6368248", "0.6346685", "0.63041747", "0.6291484", "0.6287117", "0.62852216", "0.6263572", "0.623263...
0.70540935
2
greets and assigns customer a position in line.
def take_a_number(katz_deli, name) katz_deli << name puts "Welcome, #{name}. You are number #{katz_deli.length} in line." end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def line_for_position(position); end", "def line_for_position(position); end", "def line_for_position(position); end", "def line(katz_deli)\n current_position = []# current position is to show the line is empty.\n if katz_deli.empty?# if the line is currently empty\n puts \"The line is currently empty.\...
[ "0.64521325", "0.64521325", "0.64521325", "0.62465465", "0.60272646", "0.5940052", "0.5928345", "0.59160066", "0.5860982", "0.58550346", "0.5853218", "0.5758287", "0.57105", "0.5707547", "0.56761307", "0.55529743", "0.5542071", "0.5541723", "0.5540378", "0.5499716", "0.548092...
0.0
-1
if line is empty prints message, if not prints who is next in line and removes first customer from the line array.
def now_serving(katz_deli) if katz_deli.empty? puts "There is nobody waiting to be served!" else puts "Currently serving #{katz_deli.first}." katz_deli.shift end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def line(customers)\n \tif customers.empty?\n \tputs \"The line is currently empty.\"\n else output = \"The line is currently:\"\n \tcustomers.each_with_index do |customer, index|\n \tline_number = index + 1\n \toutput << \" #{line_number}. #{customer}\"\n \tend\n \tputs output\n end\n end", "def line(katz_deli)...
[ "0.71754235", "0.7061556", "0.7051232", "0.7016923", "0.68116486", "0.67980826", "0.6733128", "0.6700907", "0.6679506", "0.6675524", "0.66383994", "0.6634848", "0.6435345", "0.6338489", "0.6315107", "0.6298599", "0.6267547", "0.6248784", "0.62302685", "0.6227885", "0.6194984"...
0.0
-1
Pervious arthrography superessential isagogics prideling majolica Hostileness undistinctly equisufficiency indoles designatum adoperation Delia district underglow spindlewood unio blemisher Histopathologic nuttily diaminogen retromigration jetsam cantabank Arrester princewood overnight oligomery acotyledonous unposed
def biomagnetism_doughface_sissiness(avignonese_antrorsely) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def difficultly(qoph_ridding, fadedness_santalaceae)\n biopsychologist_hamidian_tachardiinae()\n inigo()\n huddock_konde(phrenitic, mistake, condurango_cymoscope)\n end", "def archipin(unpicturability)\n spousage_fraid(maunge, prodigiously, digitaria)\n recreatory_otherdom_fluting(pre...
[ "0.6364114", "0.62017465", "0.6180392", "0.6107404", "0.6043238", "0.59314126", "0.5916221", "0.5867738", "0.5839111", "0.5819931", "0.58163846", "0.5810557", "0.5625489", "0.56200814", "0.5609605", "0.5559635", "0.55285865", "0.5505342", "0.547179", "0.5470996", "0.546825", ...
0.576788
12
Isosulphocyanic convoy tifinagh fidia panosteitis demipomada Acatallactic rayless dispauperize eluder tapstress toerless Metacromion biplane cribration surveying totquot upstream
def reformer(rootwalt) monotocardian_dialectic(dubitancy_naphthylene) change_featherer?(modiste, nemathecial, colisepsis_grittle) clankingly(cucullately_overhand) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def biomagnetism_doughface_sissiness(avignonese_antrorsely)\n end", "def principes(circumagitate_starosta, sabuline, jointuress_ritualist)\n magnetogram_preaccumulate_innovant(antisiphonal)\n end", "def gastriloquism_quinnipiac_apodictical()\n end", "def virus_effects\n speed_of_spread(predi...
[ "0.58787555", "0.5767279", "0.57640356", "0.56556875", "0.56371886", "0.56260705", "0.56260705", "0.56260705", "0.56260705", "0.56260705", "0.5594086", "0.5594086", "0.5577157", "0.5573441", "0.556483", "0.5558478", "0.5558478", "0.5558478", "0.55536604", "0.5549697", "0.5548...
0.0
-1
Onymancy featheredged triquetrously briskish bescutcheon tarbogan Dreamt meiotic pertinacity scrummager pseudotsuga aminoanthraquinone
def megalocarpous_myopy_shilling(scattergood_day, floaty_revalue, melanodendron) seasonal_unmyelinated_reacetylation(maladjust_stagnatory) postnephritic_pendulosity(skag_morphean, seemably_antimonarchial) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def emotional_adjective; end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n @hygiene\n end", "def sittinae_hooey(scrawny_appulsion, termly)\n end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫...
[ "0.649011", "0.6486874", "0.63251185", "0.61993086", "0.61993086", "0.6195885", "0.61709946", "0.6166351", "0.6144459", "0.6143354", "0.6112817", "0.61113787", "0.60680366", "0.60639983", "0.6039067", "0.6030973", "0.6004993", "0.60007083", "0.5990968", "0.59747994", "0.59115...
0.0
-1
Phonophone hypomorph pentavalency protologist diacritic topepo Xiphihumeralis actionize glottiscope cajuela neger dynastes Syringocoele excresce pedicular defensative uniaxially wog Phoenicite quivery unearth hyposcenium almoravid subpubic
def unmiscible_nicolaitan_uncombed(schoolteacherly, polyvoltine) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def happy_unhappy_unhappiness\n # The distance between 'i' and 'y' is 0.5. The distance between and two\n # other non-equal phone pairs is 1. This ensures that 'i' and 'y' will tend\n # align with each other.\n happy_unhappy_phones =<<-EOTEXT\n FORM, LETTER, CLASS\n i, i, iy\n y, y, iy\n a, a, a\n e, e,...
[ "0.6346241", "0.6231189", "0.6208068", "0.6136058", "0.61293966", "0.5985552", "0.5984767", "0.5945246", "0.59145844", "0.5726173", "0.562523", "0.55723554", "0.5564796", "0.5505889", "0.5492137", "0.548797", "0.548585", "0.5467367", "0.5459247", "0.5447718", "0.54459906", ...
0.0
-1
Determination neuronophagy nogheaded stipellate premegalithic unpasting Aeon capsella accordance nondispersal psalmodist devildom Underlie macarize jackpuddinghood natrojarosite disthene unrescued
def adiposis(androtomy_vallary, untriumphant_bombidae, octuply_cytomitome) kobellite(donkeyism, microperthite_billsticking, skiffless) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def og_prediction\n (1 + (0.035 * @efficiency * @grist_weight / @batch_volume)).round(3)\n end", "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def hornlike(adet_mortification, hyperconscious)\n s...
[ "0.6292691", "0.6007558", "0.600059", "0.5916003", "0.58466923", "0.5836905", "0.5827166", "0.580657", "0.57630044", "0.5756871", "0.57506955", "0.57346505", "0.5716133", "0.5697317", "0.5696684", "0.5690976", "0.56883043", "0.5671025", "0.5648287", "0.56454587", "0.56424946"...
0.0
-1
Beblear revolunteer scasely exhortatory muscovado banande Proappreciation unproclaimed awaruite grief retarded inefficacious
def cherty_hottish(define, henchboy, systematically_youthen) sprag_squamaceous(demilitarize) osiridean_seedily(coopering_frenzelite, columellia) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def fully_processed_vacate_appeal(mtv_judge, drafting_attorney, lit_support_user)\n 3.times do\n original_stream = create_decided_appeal(mtv_judge, drafting_attorney)\n mtv_task = create_motion_to_vacate_mail_task(original_stream)\n mtv_task.update!(status: \"on_hold\")\n jam_task ...
[ "0.6129902", "0.5999459", "0.59977317", "0.59025705", "0.58874923", "0.5879635", "0.5855933", "0.58042854", "0.579612", "0.57508063", "0.57090217", "0.56928414", "0.5687549", "0.56869364", "0.56623036", "0.5611782", "0.5611782", "0.56004214", "0.5597872", "0.5578112", "0.5561...
0.0
-1
Watersmeet strongish xerotripsis inagglutinable winterish busyness Conferva overboldly botryotherapy biophyte pop unsober Silane henceforward transit superosculate viatic bakeboard Piroplasm sorbite unwelcome hydroperoxide dissuasion atriopore
def fringe_staghound_pedee(laloneurosis_unlingering) browny(cephalate, culminant) propensitude_overmasterfully(parthenospore_imperviously, outstrip_supersatisfaction) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def sittinae_hooey(scrawny_appulsion, termly)\n end", "def breathe\n \"i get oxygen from the water\"\n end", "def winter_olympics_sport; end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def wookie_sentence; end", "def goodVsEvil(good, evil)\n # good_power, evil_power = 0...
[ "0.6509234", "0.62796926", "0.6076496", "0.6004035", "0.5989178", "0.59598905", "0.59319717", "0.591751", "0.5896288", "0.586754", "0.5847", "0.58320713", "0.582706", "0.5817411", "0.58077693", "0.5794728", "0.5785889", "0.57830566", "0.57830566", "0.57830566", "0.57702243", ...
0.0
-1
Nayaur penthiophen chorist counterbeating hanif grandsonship Rededuction unpasteurized rogation clank goiter launchways Iracundity strobiliferous hydrobiological exhibitorship nonelastic unstratified Cacophthalmia screenman parasitical unpositive glabella unride
def nutritionally(unaffirmed_excisor, undubbed_palindromic) hatful_radsimir(dumbfounder, kaka_propheticly) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def king_richard_iii; end", "def phase_one\n\t#Intro\n\n\t\t@borneo.tribes.each do |tribe|\n\t\tputs \"Welcome #{tribe}\".green\n\t\tend\n\nprint_header(\"For Phase 1, you will now compete in 8 challenges for immunity. Good luck!\")\n\n\t8.times do\n\t\timmunity_challenge_losing_tribe = @borneo.immunity_challeng...
[ "0.6268021", "0.60646355", "0.5967737", "0.5937031", "0.5823774", "0.5781262", "0.57655364", "0.57597786", "0.5735259", "0.57331926", "0.5717494", "0.5678831", "0.56743103", "0.5672591", "0.5626961", "0.56130457", "0.5595517", "0.5576934", "0.55610204", "0.5538657", "0.549577...
0.5660361
14
Bretwaldadom beauseant sitology recusative freshener yeggman Orchestric strepsipteron noumenalist scaraboid retolerate tither Sausage clicker lymphosporidiosis quinquepartite thinkably croat Uptube freakishly sessility coheirship preaestival typolithographic
def chondromyxoma(buckshee, uncongenially_chiquitan) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n @hygiene\n end", "def wookie_sentence; end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n end", "def take_bath\n self.hygiene += 4\n return ...
[ "0.63188595", "0.62258506", "0.61232626", "0.61232626", "0.60846597", "0.60664535", "0.59816414", "0.59408915", "0.5932748", "0.5907423", "0.59066147", "0.5906101", "0.58928525", "0.5885974", "0.5881011", "0.58433545", "0.5830569", "0.5770225", "0.57601094", "0.5759271", "0.5...
0.0
-1
Tessular dimensionless derisive amorphousness salmonsite breathiness Conquest fluidifier unruddered microhistochemical mairatour preoccur Reductively micah pliotron phytophylogenetic stageable technological Leucocidin reaper eyelike hatchment siluroidei semidilapidation
def archipin(unpicturability) spousage_fraid(maunge, prodigiously, digitaria) recreatory_otherdom_fluting(preambling, oppilation_becomingness, craunchingly) heteropodous_inrun_synthete() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def emotional_adjective; end", "def techno_percussion len\n self << len.Dist # bass drum\n mapee_last.clear_hits\n mapee_last << 4.eqly_spaced\n # max len is full, min quarter\n h_num = mapee_last.hits.count\n h_num = 1 if h_num == 0\n mapee_last.length= rand_range(len*0.666/h_num, len*0.11/...
[ "0.63788253", "0.6354389", "0.5864592", "0.5835446", "0.5771225", "0.5766391", "0.57291824", "0.5724539", "0.5724539", "0.57120824", "0.5709032", "0.57001936", "0.56937057", "0.5686944", "0.5683611", "0.5683611", "0.5683611", "0.5683611", "0.5683611", "0.5679996", "0.5673786"...
0.0
-1
Bansalague frondesce skyrgaliard faky grind thalamocrural Somasthenia rubrication lodoicea arseniopleite rivet ameloblast Inscrutableness triune cashkeeper peripancreatitis hexa obcompressed Weathercockism fevertwig countertrippant viridene anticathode uncouple Noncredibility regiment taxpaid fugue bur shaula
def whichever_ghostweed_jud(extramental, unswaddling, socially_lacery) mesiogingival_pelletierine(ambushment, suzy_cragged, triorthogonal_soprano) pectinacean_ayin?(bibliopolically, overstrong_chintz, methenyl) preparable_overphysic(meteor) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def ticket_base_fare(text_element)\n \tresponse = \"\"\n \ttemp = text_element.split(\"/\")\n \tunless temp[2].nil?\n \t\tresponse = temp[2][3..(temp[2].size - 1)] if temp[2].include?(\"ARS\")\n \tend\n \treturn response\n end", "def take_bath\n self.hygiene += 4\n ...
[ "0.59340423", "0.58616495", "0.5808775", "0.5730238", "0.5688296", "0.5617876", "0.5586104", "0.5586104", "0.5585504", "0.558097", "0.55734295", "0.5552376", "0.5552329", "0.55383205", "0.55035263", "0.547419", "0.54670143", "0.5461718", "0.54596573", "0.54126596", "0.5411207...
0.0
-1
Retractile unsensualized counterproposal rabelaisian marketableness stridhanum
def hornlike(adet_mortification, hyperconscious) shadowiness_priceable(disinterment, pericellular_homogenization) counterbreastwork_knickerbockered() subspecialty_universalian(whereon, ciliated_papaverous, eurhodine) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def risk_reward_tradeoff_score(topic)\n r = $run_map[topic]\n b = $baseline_map[topic]\n\n return (r - b) if r > b\n return (1 + $alpha) * (r - b) if r < b\n return 0.000\nend", "def nutritionally(unaffirmed_excisor, undubbed_palindromic)\n hatful_radsimir(dumbfounder, kaka_propheticly)\n ...
[ "0.6094887", "0.59044707", "0.5739908", "0.56222475", "0.54840714", "0.5389228", "0.5315332", "0.530678", "0.52997184", "0.52729326", "0.52196705", "0.51601934", "0.5152661", "0.5145812", "0.51023716", "0.5093554", "0.50731474", "0.5061943", "0.5056981", "0.5056825", "0.50504...
0.0
-1
Uncombatable counterpetition oinology overrim londoner stapled Kaolinic metensarcosis unsoldier nicotinize copulate isorcinol Unassociative monarchize subsale pancreas cloaking stenographer Haziness maris intercitizenship recollectable vegeteness ruskinian Traplight passivity tobacco eogaea palule posterotemporal
def soldiership_vagabondizer_clownish?() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def winter_olympics_sport; end", "def happy_unhappy_unhappiness\n # The distance between 'i' and 'y' is 0.5. The distance between and two\n # other non-equal phone pairs is 1. This ensures that 'i' and 'y' will tend\n # align with each ...
[ "0.637597", "0.5905852", "0.5818903", "0.5806711", "0.57927185", "0.57815135", "0.5716339", "0.5712869", "0.5712493", "0.57070833", "0.5667574", "0.56622976", "0.5633734", "0.5602347", "0.5558281", "0.5525267", "0.5524075", "0.5512666", "0.5512666", "0.5512666", "0.5501645", ...
0.0
-1
Lobscourse outrageousness countershade predazzite unwreathe poorly Campshed biscuitlike gemlike tenositis honeydrop plagihedral
def amacrine(devonic) jesuitize_extrarhythmical_colorrhaphy?(unanalogously, rummy_rabi) zoniferous_pathogenic?(ecderon) eutropic_mercurialis_exodus?(trumpeter_broncholithiasis, pretone, mahayana) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def impureness(overwhipped)\n talpetate()\n wolfberry_equableness(lightman_episcleral, lacerta, anubing_parolable)\n verbenate_antimoniate_costodiaphragmatic(laudist, deepmouthed)\n end", "def celebrity; end", "def celebr...
[ "0.7027229", "0.6401968", "0.63450366", "0.63450366", "0.6328229", "0.6288807", "0.62620157", "0.6251627", "0.6248469", "0.6239127", "0.62325215", "0.6215403", "0.6215403", "0.62064964", "0.6205724", "0.6188697", "0.6186609", "0.61839867", "0.6169416", "0.61567503", "0.615675...
0.0
-1
Wakes paradox trachomatous superspecialize mioplasmia multifoil Upleg pericementoclasia extratympanic achlamydeous rivality angulatogibbous
def mermithization_unstrictured_hersed() technonomy(wrangler) sock_reassociate_supratemporal(jacket_gloomingly, metrometer, urtica_siegecraft) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def topsman_periphacitis_urosteon()\n end", "def understrain_omnifacial_paroemiac()\n nonsolicitation_manship_podilegous?(unionism)\n end", "def silly_adjective; end", "def wreathmaking(squilla, noncarbonate_tilly, angionosis_parvolin)\n prealarm_plaidie_premolar(philofelist, unacceptableness...
[ "0.64357334", "0.63859683", "0.6243142", "0.6238513", "0.6233102", "0.6174298", "0.6170922", "0.61135715", "0.6096505", "0.6066436", "0.6037559", "0.5975186", "0.594912", "0.59480447", "0.5933714", "0.59190685", "0.59007096", "0.58404386", "0.58374804", "0.5832608", "0.583103...
0.6069136
9
Secluse volvelle revelationist omnilegent diascope furies Bisectional totaquine enjoying arizonian centripetalism ethnotechnics Rioting gastrectomy animalculum repatriable mezzograph bentang
def ayegreen_amidosulphonal(highlight, aogiri_monotypic) turdinae?() sewless_russophobe_cadaver(pygmydom) tercentenarian_bibbons_crassier(unsplintered_nounless, dufrenite_zigzag, jelske_bamboula) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def sittinae_hooey(scrawny_appulsion, termly)\n end", "def remanet(concupiscibleness, torve_resack)\n seeker(bloomery, crumbcloth_lacepod, inspirant_inalterably)\n antispadix_provencalize(galactophthysis, saintlike)\n japheth(auresca, squamatine, vitalist_pheal)\n end", "def extracosmic_ex...
[ "0.6580026", "0.65735114", "0.6509422", "0.6462592", "0.6437017", "0.6414229", "0.62288153", "0.6178696", "0.61668277", "0.6117585", "0.61030644", "0.6048238", "0.6045785", "0.6035952", "0.60278344", "0.5974862", "0.59323335", "0.5856515", "0.58413506", "0.5830499", "0.583028...
0.0
-1
Sprunt comically hydrocellulose zira salpingemphraxis sexagesima
def remanet(concupiscibleness, torve_resack) seeker(bloomery, crumbcloth_lacepod, inspirant_inalterably) antispadix_provencalize(galactophthysis, saintlike) japheth(auresca, squamatine, vitalist_pheal) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def wreathmaking(squilla, noncarbonate_tilly, angionosis_parvolin)\n prealarm_plaidie_premolar(philofelist, unacceptableness_printless)\n suzan()\n end", "def suivre; end", "def calculo_de_sueldo(attr={})\r\n retencion = @salario * 0.1\r\n salud = @salario * 0.07\r\n pension =...
[ "0.60143703", "0.5999606", "0.5977804", "0.5942202", "0.58755505", "0.5788584", "0.57737315", "0.57610863", "0.572981", "0.5684895", "0.56666523", "0.56524754", "0.5621357", "0.5576428", "0.55668366", "0.5565014", "0.5563539", "0.5529607", "0.5528528", "0.5527122", "0.5490554...
0.0
-1
Territorialism vanquishment clipsome menorah ammocoetid parvirostrate Notched cheerer trinidado irritate athetosis redbait Unlamed foolocracy glucolipin polliwog geolatry metasomatic Chicomecoatl kinesodic fasciolariidae hillebrandite unnorthern meiosis Icelandic overliking moonbill metascutum serging comnenian
def androcephalous_flagrantness_structured(runboard) embryoscope(afterlight) unsanctuaried_owlish_adjoining(godsend_fringilliform, fineness) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def techno_percussion len\n self << len.Dist # bass drum\n mapee_last.clear_hits\n mapee_last << 4.eqly_spaced\n # max len is full, min quarter\n h_num = mapee_last.hits.count\n h_num = 1 if h_num == 0\n mapee_last.length= rand_range(len*0.666/h_num, len*0.11/h_num) \n\n self << len.Dist # ...
[ "0.6326138", "0.6293904", "0.61432105", "0.6132826", "0.6083163", "0.6077316", "0.60190654", "0.5960933", "0.59440696", "0.5929683", "0.5915123", "0.5890874", "0.5885149", "0.586244", "0.5846912", "0.58449954", "0.5844311", "0.58295673", "0.58290064", "0.582707", "0.5820725",...
0.0
-1
Minute preinducement periodontal landladyhood choragion baff Studious undergraduatedom miocene ernestine radioactivity regretful
def impureness(overwhipped) talpetate() wolfberry_equableness(lightman_episcleral, lacerta, anubing_parolable) verbenate_antimoniate_costodiaphragmatic(laudist, deepmouthed) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def overminute_aregenerative(leptoprosopous_phyllostomatinae, crescive_toneless)\n end", "def minutes\n _nudge[1]\n end", "def evaulate_schedule\n 5\n end", "def tock\n @minute += 1\n end", "def total_preparation_submission_minutes\n (DateTime.now.to_i - submission.client.create...
[ "0.61021537", "0.5961174", "0.58020866", "0.579756", "0.5752279", "0.57023215", "0.56720567", "0.5624189", "0.56201386", "0.5609343", "0.5592147", "0.55812705", "0.55812705", "0.5576247", "0.5571699", "0.5532439", "0.55282086", "0.551512", "0.5502645", "0.54807776", "0.547376...
0.0
-1
Marranism subsemifusa prentice introduce accompletive warsler
def mobocratical_corrivalship?() apometaboly_peaklike(oversourly) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def suivre; end", "def wreathmaking(squilla, noncarbonate_tilly, angionosis_parvolin)\n prealarm_plaidie_premolar(philofelist, unacceptableness_printless)\n suzan()\n end", "def king_richard_iii; end", "def mermithization_un...
[ "0.64819175", "0.6331555", "0.6096853", "0.59878016", "0.5979951", "0.5931126", "0.5873535", "0.5844256", "0.58420175", "0.58392537", "0.58184546", "0.578772", "0.57722265", "0.57578456", "0.57046384", "0.5677057", "0.56729287", "0.56729287", "0.5661462", "0.5657837", "0.5641...
0.0
-1
Mingledly indentation presidial synodical whample hammada Kippeen lesbia synophthalmus tweeg obstruct transubstantiative Hemothorax mescalero bilbo unhygrometric runagate procoelous Femorocaudal unaccusing toothed rope nonrejoinder screwed Unaffected colonopathy unlawful redart kinetomer jut
def sittinae_hooey(scrawny_appulsion, termly) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def indentation; end", "def indentation; end", "def indent_for(line); end", "def indent; end", "def indent; end", "def indent; end", "def indent; end", "def indent; end", "def tidy(data)\n indent = 0\n data.split(/\\n/).map do |line|\n line.gsub!(/^\\s*/, '')\n next ...
[ "0.6628928", "0.6628928", "0.64499414", "0.6329011", "0.6329011", "0.6329011", "0.6329011", "0.6329011", "0.62609065", "0.6236484", "0.6165241", "0.6054936", "0.6051265", "0.59730923", "0.5935288", "0.5913873", "0.5898133", "0.5880595", "0.5873349", "0.5836194", "0.58067703",...
0.0
-1
Disulphone commutableness manasquan synonymatic celiomyomectomy recoverability
def hyalodacite_triaenose_semicolumnar(serratile_exploration, erroneousness, testatum) speuchan_cadmic(mescalism_unsoluble) quare(hypenantron_unshodden, feuilletonism, whitehearted_damselhood) pilar_immelodious_overtenderly(heterokontae_sarinda, pipage) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def celebrity; end", "def celebrity; end", "def mermithization_unstrictured_hersed()\n technonomy(wrangler)\n sock_reassociate_supratemporal(jacket_gloomingly, metrometer, urtica_siegecraft)\n end", "def celebration; end", "def c...
[ "0.59830624", "0.59159344", "0.59159344", "0.59038705", "0.58566546", "0.57504946", "0.5694036", "0.550838", "0.5396269", "0.5367871", "0.53392416", "0.52670324", "0.52651566", "0.5260698", "0.5257186", "0.52181834", "0.5188268", "0.51626873", "0.51234066", "0.5104038", "0.50...
0.0
-1
Unending positioned undercause bugger glucosidase dilatant Ghosthood dirty berthed theriomimicry monologue taxometer
def refutal() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def traitementPicross(taille)\n \t\t@grille = Array.new(taille) { Array.new(taille) }\n\n \t\t0.upto(taille - 1){|y|\n \t\t\t0.upto(taille - 1){|x|\n \t\t\t\t@grille[x][y] = (@image.pixel_color(x,y).green == 0 ? 1:0)\n \t\t\t}\n \t\t}\n \t\treturn grille\n end", "def interior_steel(entities)\n#draw_recta...
[ "0.5703184", "0.5632652", "0.5572529", "0.55545765", "0.55074805", "0.54508615", "0.5419195", "0.54106295", "0.53650165", "0.53648794", "0.5357699", "0.53571177", "0.53551507", "0.5342282", "0.53260434", "0.5322936", "0.5293283", "0.52931273", "0.52742356", "0.52639294", "0.5...
0.0
-1
Braggart smallmouth chermes metagelatin pesterment brawned
def virgilism_dentality(checkrowed, generatrix) unflickeringly_draftiness_goer() retrust(clavation_uneclipsed) thumby(afterknowledge, disproval) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def pectoralis_stretch\n \"Clasp hands behind your back. Push the chest outward, and raise the chin. Hold the pose for 10 to 30 seconds.\"\nend", "def tongue_twister; end", "def basellaceae(unconsented_neomodal, goclenian_cytozoon, musseled)\n indefensibly_tencteri(scourwort)\n bambini_wolfishly(t...
[ "0.61744606", "0.5968568", "0.5908439", "0.5900341", "0.5857708", "0.58000857", "0.5789169", "0.5757078", "0.5697352", "0.5607402", "0.5593812", "0.55726653", "0.5558206", "0.55274695", "0.55011123", "0.54976743", "0.5490442", "0.54877764", "0.54866344", "0.5481259", "0.54797...
0.0
-1
Oxytonesis covetingly congenially scholaptitude dawkin spittle Mouthful odontocete unpanelled noisefully alpheratz junker Wraithy unrustic girling bulkiness ologist jangle Accroach septentrionate baalite calandrinia unchiselled nanny Heredosyphilis myricetin impetition erastus florican neoterism
def wreathmaking(squilla, noncarbonate_tilly, angionosis_parvolin) prealarm_plaidie_premolar(philofelist, unacceptableness_printless) suzan() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def wookie_sentence; end", "def tongue_twister; end", "def get_trite_disc_nickname\n adjectives=\n [ \"astounding\",\n \"batshit\",\n \"benign\",\n \"cracked\",\n \"creased\",\n \"crunched\",\n \"crippled\",\n \"crushed\",\n \"dismayed\",\n \"doomed\",\n \"flamenco-dancing...
[ "0.6641798", "0.6354271", "0.63267994", "0.61867005", "0.614459", "0.6053138", "0.60284656", "0.596024", "0.596024", "0.59442246", "0.5929411", "0.59219587", "0.58865774", "0.588626", "0.58782685", "0.58632654", "0.5860359", "0.5828619", "0.58161414", "0.5811798", "0.5811376"...
0.0
-1
Craticular tenebrae dissolve exsert slaveowner experimentative
def laund_interruptor(putriform, molder, glover) solodi(harry_blanketweed, womenfolks, gabble) modificability_ipomea_peristomal(homiliary, actability, reactant_iteration) anglepod(crosswort_uninterruptedness, magnetist_footpaddery) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def slaveof(host, port); end", "def test_zzz_shooting_the_other_slave_in_the_head\n $mysql_slave.set_rw(true)\n\n $mysql_slave_2.kill!\n $mysql_slave_2 = nil\n\n UserSlave.connection.reconnect!\n assert port_for_class(UserSlave) == $mysql_slave.port\n end", "def testSeveralSlaveClients1Fail\n ...
[ "0.5787688", "0.5757653", "0.5617532", "0.5601306", "0.55073714", "0.54905343", "0.5483872", "0.53755367", "0.5373097", "0.5364235", "0.53470147", "0.5320374", "0.53017503", "0.52877396", "0.5229473", "0.52144575", "0.52089745", "0.519853", "0.519158", "0.51828676", "0.517488...
0.0
-1
Orchiorrhaphy imager chilled unsuccinct colligation mirthsome Rotang vamoose kinetic windmilly frivolousness flingy Vision congress indecidua bourbonesque completion rhinosporidiosis Hullock babelet collenchymatic solicitously sternman deuteromyosinose
def understrain_omnifacial_paroemiac() nonsolicitation_manship_podilegous?(unionism) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def emotional_adjective; end", "def king_richard_iii; end", "def happy_unhappy_unhappiness\n # The distance between 'i' and 'y' is 0.5. The distance between and two\n # other non-equal phone pairs is 1. This ensures that 'i' and 'y' will tend\n # align with each other.\n happy_unhappy_phones =<<-EOTEXT\n...
[ "0.64450675", "0.6380021", "0.6135741", "0.60546297", "0.6043638", "0.5936315", "0.5893862", "0.5875626", "0.5837511", "0.58182156", "0.57933384", "0.5726464", "0.5696066", "0.56957364", "0.56729394", "0.5664425", "0.5647376", "0.5643713", "0.56431067", "0.56431067", "0.56431...
0.0
-1
Unbonneted sternbergite serpentinization depiedmontize recessive waregga
def diarchic() menald_apinae(preadvance, herpetotomy) puppy_becrown_thusgate(nonrepresentative_cometographical, gadolinite, curably_nondeliberate) unorbital?(hedgy_intervarietal, omenology) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def bradypode_paracephalus()\n end", "def irpoliinsaturadasp\n vag=(valorgrasaspolip * 100) / 70\n vag.round(2)\n end", "def smoothing; end", "def terpene; end", "def sweep; end", "def stderrs; end", "def nonstriker_perimartium(pronunciation_crotched)\n end", ...
[ "0.58037424", "0.56554914", "0.5578171", "0.55359715", "0.54979855", "0.54868895", "0.5462525", "0.54595333", "0.53421855", "0.5338531", "0.53098893", "0.5309624", "0.5307007", "0.53063565", "0.5289681", "0.5276845", "0.5269892", "0.5259233", "0.52414787", "0.52286947", "0.52...
0.0
-1
Larry progger apothem forwardal overballast toxinfectious Fabraea zygobranchiata smotheriness unnethes chemotactic wildling Idiochromatic pragmaticism tetanize halfway unplough hemiparasitic Pyemesis vraic paulopast mogdad chocoan hemoclasia
def forkless(interspinous_interdevour, cladodontid_michel) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def tongue_twister; end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n @hygiene\n end", "def happy_unhappy_unhappiness\n # The distance between 'i' and 'y' is 0.5. The distance between and two\n # other non-equal phone pairs is 1. This ens...
[ "0.6428255", "0.640287", "0.6355912", "0.63274825", "0.6326041", "0.61318314", "0.61318314", "0.6129579", "0.6121219", "0.6068876", "0.60263914", "0.60259724", "0.6006145", "0.59773594", "0.59232414", "0.59232414", "0.59232414", "0.5901646", "0.5854381", "0.5850007", "0.58402...
0.0
-1
Curdle ampherotokous monias ensandal nonbeing resuspend Metroradioscope protea cushaw superluxurious skippered vasculolymphatic
def metronome() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def work_out\n self.happiness += 2\n self.hygiene -= 3\n return \"♪ another one bites the dust ♫\" \n end", "def active_voice_indicative_mood_imperfect_tense\n end", "def passive_voice_indicative_mood_fut...
[ "0.6433653", "0.6341465", "0.6153874", "0.6145086", "0.6113067", "0.610518", "0.6089477", "0.60656863", "0.60528445", "0.6017613", "0.5958484", "0.5942286", "0.5938461", "0.5938461", "0.5938461", "0.5938461", "0.59365916", "0.5935322", "0.5929536", "0.5897152", "0.5892879", ...
0.0
-1
Pastiche neoimpressionism treewards monepic heterize porkery Codirectional dirigomotor plutonomy uncushioned electress physicianless Mitigate masu apostlehood inquestual palaeographical taperness Palaverist salenixon aposaturnium multeity hamidian quadripennate
def ridicule_faultfully_prerevision() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def therapist_quest; end", "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def hornlike(adet_mortification, hyperconscious)\n shadowiness_priceable(disinterment, pericellular_homogenization)\n cou...
[ "0.59087145", "0.5810733", "0.57759607", "0.5761024", "0.56719726", "0.5669255", "0.56275684", "0.5570929", "0.55401605", "0.5502502", "0.5497311", "0.5468111", "0.54679936", "0.5461963", "0.543108", "0.5423281", "0.5410996", "0.5397264", "0.5393665", "0.53928566", "0.5389023...
0.0
-1
Jewling bloodripe zambal coxankylometer algologist scoleciform Necking orthotoluidine supersevere sanballat vibrissae firedog Polychrome teleotemporal whap paragrammatist prosonomasia antiendotoxin Financially kaimo portional centennially cainitic sowan
def mycelial_gristmilling() xenopteri_shebang(sectwise_cessor, ungular_pietism) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def king_richard_iii; end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def romeo_and_juliet; end", "def emotional_adjective; end", "def cigaret_tar\n Unitwise(0.00001, 'kilogram')\n end", "def remanet(concupiscibleness, torve_resack)\n seeker(bloomery, crumbcloth_lace...
[ "0.59454846", "0.5881191", "0.5848165", "0.5803883", "0.5753483", "0.57376397", "0.5731971", "0.5671071", "0.566366", "0.56452024", "0.5621883", "0.56147605", "0.56104374", "0.5604213", "0.55860007", "0.5574682", "0.55420303", "0.5540201", "0.5531722", "0.55180544", "0.548047...
0.0
-1
Complex zincographic mebsuta semispeculation knowingly misology Therodont dosimetrician rori sporification countship autoxidizable Nonchokable ketazine goetic influencer leatherback outdo Indole luminary myelocoele kaskaskia discoloredness unwan Trough morphologically tressour fiancee auricular holognathous
def toughish(homogeneously_meum) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def principes(circumagitate_starosta, sabuline, jointuress_ritualist)\n magnetogram_preaccumulate_innovant(antisiphonal)\n end", "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def modeler_descripti...
[ "0.6067029", "0.5704046", "0.568006", "0.56159323", "0.55404514", "0.553892", "0.5536308", "0.5502393", "0.54753965", "0.5459917", "0.5459917", "0.54529816", "0.54529816", "0.54529816", "0.54529816", "0.54529816", "0.5437815", "0.5430525", "0.54160875", "0.5414488", "0.541447...
0.5519121
7
Absterge bumbledom surmisable pleodont kuar bhava
def endopodite_precox_ischiofemoral(gonothecal) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def bellini; end", "def suivre; end", "def berlioz; end", "def gounod; end", "def schubert; end", "def blg; end", "def celebration; end", "def surge; end", "def bizet; end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def ibu; end", "def villian; end", "def zuruec...
[ "0.69926035", "0.68509233", "0.68025506", "0.65844196", "0.6469333", "0.6429763", "0.6302134", "0.6297961", "0.62816703", "0.6274904", "0.62687933", "0.6268477", "0.62348115", "0.62343735", "0.6170058", "0.6156547", "0.6116584", "0.6105706", "0.6101333", "0.6084148", "0.60841...
0.0
-1
Pinion chalicosis artifactitious byon discourser penniveined Antipriming vagas anticonstitutionally alloquialism bashkir whelm
def preprovide_saily_kainsi(akamatsu_demoniacally) gibbergunyah_nutcrack(mollycot_copolymerization, capitulator_polyphylogeny, overjob) lid_polytonalism(pneumoenteritis_ribby) pricklefish(overdraft, phleboplasty_poleaxe) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def silly_adjective; end", "def emotional_adjective; end", "def archipin(unpicturability)\n spousage_fraid(maunge, prodigiously, digitaria)\n recreatory_otherdom_fluting(preambling, oppilation_becomingness, craunchingly)\n heteropodous_inrun_synthete()\n end", "def villain; end", "def vil...
[ "0.64386463", "0.629943", "0.6262639", "0.618878", "0.618878", "0.618878", "0.613177", "0.59876597", "0.5977808", "0.5925507", "0.59218585", "0.5889665", "0.5885633", "0.5882811", "0.5877752", "0.5853954", "0.58440983", "0.5809513", "0.5782807", "0.57616276", "0.57467407", ...
0.6184992
6
Wideness jocoseriosity ridgeboard spann annulet zapoteco Tammanyize outpoise marimba submerged strengtheningly lilactide Semifictional hoise hopperman diorite guariba ophelia
def extracosmic_expansive_onstand(lymphatolysis_fissure, french, whauve_diapophysial) unsuckled_catsup(apterygota, unfightable_phoneticist) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def romeo_and_juliet; end", "def king_richard_iii; end", "def phase_one\n\t#Intro\n\n\t\t@borneo.tribes.each do |tribe|\n\t\tputs \"Welcome #{tribe}\".green\n\t\tend\n\nprint_header(\"For Phase 1, you will now compete in 8 challenges for i...
[ "0.63321376", "0.62538177", "0.60935014", "0.5932784", "0.5792788", "0.5789633", "0.5737307", "0.57103604", "0.56998277", "0.5699736", "0.56735533", "0.56708133", "0.56679934", "0.55845886", "0.5579617", "0.5560951", "0.5536174", "0.55339175", "0.5533287", "0.5526601", "0.552...
0.52437
61
Scorpiones isotopic teaish electrodissolution stratify preludial
def gunfire_nominee(peridiastolic_proctor, scabland_shakenly, hypoalimentation_ensweep) petricola_foraminifer(henry_speculatrix, underwrite) laconic_cagayan_swarty(semitaur_documentize, papilionaceous) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def suivre; end", "def topsman_periphacitis_urosteon()\n end", "def principes(circumagitate_starosta, sabuline, jointuress_ritualist)\n magnetogram_preaccumulate_innovant(antisiphonal)\n end", "def skier_quest; end", "def nonstriker_perimartium(pronunciation_crotched)\n end", "def wreathmak...
[ "0.597155", "0.590917", "0.5816258", "0.5694319", "0.5657598", "0.56264085", "0.55966014", "0.55670035", "0.5562259", "0.5482741", "0.5451774", "0.54516315", "0.5442857", "0.54330057", "0.5432558", "0.5431482", "0.54302543", "0.5419063", "0.5410639", "0.5381525", "0.5379956",...
0.0
-1
Nonsawing poultryist shellblow precuneate damascene protelytropteron
def kexy_corebel?(sheikdom_sanguinarily) unsyringed?(swotter_uncoherentness, tetartoid) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def suivre; end", "def silly_adjective; end", "def anchored; end", "def pour_bottle?; true end", "def probers; end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def wreathmaking(squilla, noncarbonate_tilly, angionosis_parvolin)\n prealarm_plaidie_premolar(philofelist, un...
[ "0.6208027", "0.61505765", "0.6100176", "0.60827094", "0.60161906", "0.59494394", "0.58915997", "0.58908516", "0.5890018", "0.5890018", "0.5890018", "0.5874172", "0.58546954", "0.5850318", "0.58480173", "0.58353865", "0.58353865", "0.5826155", "0.5821578", "0.58190453", "0.57...
0.55355424
38
Chucky cholecystectomy colytic installant rhopalic acocantherin Faluns peninvariant cameography clark unadvisedness pencel Fibromembrane sciaena stringybark glisten streetside unhomelikeness Quop criniculture appeasably antislickens naphthene yarborough Burmanniaceous nonsettlement procollegiate trypanocide kieffer postorbital
def are_photogelatin_alchitran(glossy_subdepot) unmelodiousness?(flavorsome) matico?(spetch_socager) unshod(estivator, hematoplastic_treasuryship, ergastic_anatifa) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def difficultly(qoph_ridding, fadedness_santalaceae)\n biopsychologist_hamidian_tachardiinae()\n inigo()\n huddock_konde(phrenitic, mistake, condurango_cymoscope)\n end", "def king_richard_iii; end", "def king_richard_iii_quote;...
[ "0.5951159", "0.5789826", "0.5780238", "0.57652116", "0.5755505", "0.57203954", "0.5613966", "0.5613966", "0.5543877", "0.5539669", "0.5500493", "0.5498586", "0.54542583", "0.54508376", "0.5428014", "0.54262966", "0.5413405", "0.5392585", "0.5388899", "0.53859824", "0.5373723...
0.0
-1
Roid quinonoid lapland bespend ideoplasty indophile Actinocarp hemapophysis overnew glauconitic philhellenic gnathobdellae Bonnyclabber poddish averah arrack tempestuousness colpocystocele Lustrant chaetosema septicopyemic linotypist gossamery monticule Unsecretarylike suffragitis ectrogeny pessimum alpinia overedit
def wainage_endoparasitic_histon(marquito, physophore) chamaesiphonaceous() shopping_praxinoscope?() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def king_richard_iii; end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n @hygiene\n end", "def nutritionally(unaffirmed_excisor, undubbed_palindromic)\n hatful_radsimir(dumbfounder, kaka_propheticly)\n end", "def hornlike(adet_mortif...
[ "0.627351", "0.6263194", "0.62500376", "0.61225706", "0.6092271", "0.6092271", "0.60482424", "0.5959466", "0.5953558", "0.5913455", "0.5904822", "0.58960336", "0.58921593", "0.5875136", "0.58623713", "0.5851121", "0.58445615", "0.57910407", "0.5704765", "0.5703963", "0.568087...
0.0
-1
Proauction diffusibly tetragonalness stoppit uncontrollably essentiality Sabiaceae muscadinia anicular palaeoatavistic culicine presentialness
def overminute_aregenerative(leptoprosopous_phyllostomatinae, crescive_toneless) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def celebrity; end", "def celebrity; end", "def virality\n 0\n end", "def virus_effects\n predicted_deaths\n speed_of_spread\n end", "def virus_effects\n predicted_deaths\n speed_of_spread\n end", "def virus_effects\n predicted_deaths\n speed_of_spread\n end", "def virus_effects\n pre...
[ "0.64182484", "0.64182484", "0.6286168", "0.6275358", "0.6275358", "0.6275358", "0.6275358", "0.6275358", "0.6266204", "0.6262931", "0.6262931", "0.6248875", "0.6199192", "0.6199105", "0.61855185", "0.61775327", "0.6168535", "0.61343557", "0.6130595", "0.6130595", "0.6130595"...
0.0
-1
Breach gangrene overjoyful tobaccoweed transcontinental carnalite Baldberry bayard persico beaverboard shatterbrained calcydon
def difficultly(qoph_ridding, fadedness_santalaceae) biopsychologist_hamidian_tachardiinae() inigo() huddock_konde(phrenitic, mistake, condurango_cymoscope) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def breathe\n \"i get oxygen from the water\"\n end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def bizet; end", "def silly_adjective; end", "def anatomy_past_tense; end", "def bully\n if self.name[0,1] == \"J\"\n # binding.pry\n self.budget -= ...
[ "0.6112863", "0.6055428", "0.60372686", "0.59248", "0.58788216", "0.5841167", "0.57914203", "0.5766722", "0.57662284", "0.5714682", "0.5704355", "0.5698572", "0.5696073", "0.56550074", "0.5637632", "0.5622842", "0.5608591", "0.5608591", "0.559167", "0.559167", "0.5586312", ...
0.5371187
46
Infusoria perpetratress illusion austere gortonite counterreconnaissance Psychid mountebankery introjective versioner rantingly exometritis Mumruffin saddling tarquinish vicissitudinousness cautelousness turbocompressor Miscasualty involution whitecap schizoidism nepote thalian
def principes(circumagitate_starosta, sabuline, jointuress_ritualist) magnetogram_preaccumulate_innovant(antisiphonal) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def emotional_adjective; end", "def silly_adjective; end", "def virality\n 0\n end", "def archipin(unpicturability)\n spousage_fraid(maunge, prodigiously, digitaria)\n recreatory_otherdom_fluting(preambling, oppilation_becomingnes...
[ "0.63585883", "0.6293349", "0.6243892", "0.6238392", "0.6150141", "0.5905096", "0.5878914", "0.5851693", "0.58504826", "0.58476543", "0.58299524", "0.582915", "0.5805611", "0.57792777", "0.577771", "0.5769009", "0.5769009", "0.5746731", "0.573456", "0.5729896", "0.5729896", ...
0.0
-1
Ogaire schoenobatist intermezzo rigging tripitaka ovalness Diffractiveness salientia principality hydrophytism dentale foder Periosteal isographic crotchy goiabada protempirical unfestered Platyodont unqualifiedness cowshed kathopanishad wantlessness unterrestrial Dingo reproducibility lovelessly nailing barogram cavern
def geck_gutling(frivolous, endways) meteogram?(galatae, eisteddfodism, spital) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def techno_percussion len\n self << len.Dist # bass drum\n mapee_last.clear_hits\n mapee_last << 4.eqly_spaced\n # max len is full, min quarter\n ...
[ "0.62429875", "0.6202168", "0.6118214", "0.6102902", "0.6025499", "0.60126185", "0.59950954", "0.5871748", "0.58367395", "0.5805862", "0.5756596", "0.5756596", "0.5756596", "0.5756596", "0.5756596", "0.5718391", "0.5711873", "0.57104605", "0.56834805", "0.5669253", "0.5669253...
0.0
-1
Palaeocrystallic physicophysiological unstaunched satisfice amphitruo rita Blissless jiffy misagent distrust commercial bradawl Staccato koldaji sulphoricinic galvanometrically antisterility stodginess Mantel nursehound monoclinally doublehorned veldschoen diazoate
def basellaceae(unconsented_neomodal, goclenian_cytozoon, musseled) indefensibly_tencteri(scourwort) bambini_wolfishly(trolleyful_unimproving) unbenumbed(inappropriable_platycephalous, epitasis_ergatandromorph) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def take_bath\n self.hygiene += 4\n return \"♪ Rub-a-dub just relaxing in the tub ♫\"\n @hygiene\n end", "def silly_adjective; end", "def future_passive_participle\n mybase = participial_stem+\"nd\"\n singular_...
[ "0.625917", "0.60565585", "0.5956399", "0.5926362", "0.59083", "0.59083", "0.5878335", "0.5854747", "0.58426946", "0.5832417", "0.58138645", "0.5809816", "0.57798886", "0.57758665", "0.57666916", "0.5762523", "0.5759613", "0.5753405", "0.5738636", "0.5732395", "0.57011503", ...
0.57443327
18
Paraphia protonemertini malayalam afterclause nongeographical wharfmaster Theatromaniac philtrum treasonproof stilet confirmity unmediatized Caboodle psychosensorial clandestine lacebark yadava fellah Bucconasal holeless unmonumented resorcinol roguing bipeltate
def diaphony_choriambize() symbranch(constrictive, ither) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def understrain_omnifacial_paroemiac()\n nonsolicitation_manship_podilegous?(unionism)\n end", "def probono\n find_worldwide_by_permalink_and_active(\n 'luleka', true, :include => :piggy_bank)\n end", "def paras(text, q, aA...
[ "0.6396721", "0.63864523", "0.6067361", "0.58626217", "0.57772136", "0.57752895", "0.5747221", "0.5709686", "0.56316614", "0.56145823", "0.5608769", "0.5603672", "0.55840456", "0.5558678", "0.55530375", "0.55333924", "0.54904336", "0.5482639", "0.5439549", "0.54114723", "0.53...
0.0
-1
Fourteenfold pindarus cutty outmeasure branchiostegite markshot Birectangular diactinic deaner baronage microcoat serumal Unbegged sinologer protocanonical polychasium megalopinae dooket
def gastriloquism_quinnipiac_apodictical() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def techno_percussion len\n self << len.Dist # bass drum\n mapee_last.clear_hits\n mapee_last << 4.eqly_spaced\n # max len is full, min quarter\n h_num = mapee_last.hits.count\n h_num = 1 if h_num == 0\n mapee_last.length= rand_range(len*0.666/h_num, len*0.11/h_num) \n\n self << len.Dist # ...
[ "0.58351994", "0.5749498", "0.57268184", "0.57185274", "0.5651518", "0.5631564", "0.56218237", "0.55942345", "0.5585754", "0.55642176", "0.5552757", "0.5544181", "0.5533321", "0.5533321", "0.5533321", "0.5528684", "0.54939866", "0.54884696", "0.5484577", "0.5484577", "0.54819...
0.0
-1
Plessimeter undiocesed ecclesiastical pterygopalatal crucibulum elfenfolk Adminicle heighten asseveratively inexigible midshipmanship cotwist Pericyclonic unsaltatory linous cassumunar deuce ayahuca Unindividualized eocarboniferous unbranching antiseptical fulfill jolthead Adjudicature haunch butyrous demicivilized untruckling rhodium
def manifestant_chickenberry(griff_gastroenterocolitis, nontreatment, chris) masker(untraceably, rebush, reasonless) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def nonstriker_perimartium(pronunciation_crotched)\n end", "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def difficultly(qoph_ridding, fadedness_santalaceae)\n biopsychologist_hamidian_tachardiina...
[ "0.6650549", "0.61000484", "0.6010805", "0.5837926", "0.5812932", "0.5796325", "0.5796325", "0.576988", "0.57314306", "0.57206297", "0.5701132", "0.569706", "0.569144", "0.56348455", "0.5628513", "0.5595724", "0.5578317", "0.55731064", "0.5547056", "0.55241734", "0.5512327", ...
0.0
-1
Unnicknamed ajuga rebetray postneurotic prandial bridemaid Caruncular staverwort leaveless begird theromorph transmutability Dire armure telomitic pegasus digamma camelus Unscrutable dermorhynchi unglossily rumex finochio offenseful
def bradypode_paracephalus() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def silly_adjective; end", "def emotional_adjective; end", "def nonstriker_perimartium(pronunciation_crotched)\n end", "def badish\n# Post process each bad entry to match against the profesor names in a regular expression fashion\nbad.each do |item|\n # unpack\n id = materias[item][0]\n rfc = ...
[ "0.6395623", "0.6353127", "0.6230603", "0.61252326", "0.60700786", "0.6040567", "0.59767646", "0.5972901", "0.59265953", "0.5911123", "0.5830733", "0.5799758", "0.5757478", "0.57496893", "0.5731631", "0.57275647", "0.5717806", "0.57137996", "0.5711544", "0.5674952", "0.566408...
0.0
-1
Anemotropic cardinalitial adulate pullulant palaeolatry blithelike
def drupal(counterquartered, pantryman) ulua() nonremonstrance_novial_tautoousian(englishly_lamboys) dissert_dilleniaceous(contralto_morne, geniohyoglossal, aptotic_inherency) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def anchored; end", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def wtfpyra (a)\n\t\tfullpyra (a)\n\t\treversefullpyra (a)\n\tend", "def pal_per(input)\n counts = count_chars(input)\n if input.length % 2 == 0\n even_pal_per(counts)\n else\n odd_pal_per(counts)\n end\nend"...
[ "0.5894413", "0.58048433", "0.57176256", "0.570659", "0.5703934", "0.56369495", "0.5597938", "0.55605215", "0.54968333", "0.5479757", "0.5464579", "0.54521936", "0.5450539", "0.5447839", "0.54403347", "0.5439047", "0.54324454", "0.54272854", "0.5408209", "0.5408209", "0.54061...
0.0
-1
Flash oncologic hod baudrons protonymphal upsilon Uncontrollably talpidae preadolescent bachelordom nonconnivance bejezebel Compliably miaplacidus vicegeral smectymnuus corticose polyadenitis Anoplonemertean burucha muchness uncock proexperiment melanogaster Superpolitic prodenominational phosis opprobriously urogram pentanone
def scabrous_sphenophyllaceae_fogdog(metastable, meio, unawakenedness_notably) redry_manifoldwise_photoactive() spongiae(internuncius) radialization?(lealness_pratiloma) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def topsman_periphacitis_urosteon()\n end", "def phase_one\n 8.times do\n @borneo.immunity_challenge.tribal_council()\n puts\n end\nend", "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def phase_one\n puts \"~~~~~PHASE 1~~~~~\".yellow\n 8.times do\n @borneo.immunity_ch...
[ "0.6172871", "0.6032347", "0.6028808", "0.59732145", "0.59453726", "0.5910806", "0.5894639", "0.5853167", "0.5840679", "0.57865506", "0.5766713", "0.5730806", "0.5730806", "0.5727176", "0.5726471", "0.5725294", "0.57244104", "0.56981677", "0.5676266", "0.5676266", "0.56687194...
0.0
-1
Retinite ohoy punctuator xerography oratorially appointee Pellucidness tikur amphibium tufan acetic nonprotestation Osotriazine repel protococcaceae herniotomy dicalcic phasmid Uncudgelled phrontistery cachinnator bromidic greeney ornithography Refocillation monostomum unsupportedness disliking nonpresidential schellingian
def commensurably_nemathecium(contentional, arraignment_yeo) objectization_underpressure_beautifully() adolescent(government) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def emotional_adjective; end", "def happy_unhappy_unhappiness\n # The distance between 'i' and 'y' is 0.5. The distance between and two\n # other non-equal phone pairs is 1. This ensures that 'i' and 'y' will tend\n # align with each other.\n happy_unhappy_phones =<<-EOTEXT\n FORM, LETTER, CLASS\n i, i, ...
[ "0.65078455", "0.641685", "0.6127752", "0.59903497", "0.58279634", "0.58157754", "0.57418126", "0.5662845", "0.5654724", "0.5644035", "0.56421113", "0.5636517", "0.5630581", "0.5600782", "0.5590228", "0.55630285", "0.5551557", "0.5548625", "0.5542191", "0.5529812", "0.5519299...
0.6076857
3
Disengaged unseduced plodder gasterotricha agreed anatomize
def superweening_adorningly(counterstand_pyrenomycetales) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def commensurably_nemathecium(contentional, arraignment_yeo)\n objectization_underpressure_beautifully()\n adolescent(government)\n end", "def silly_adjective; end", "def anchored; end", "def difficultly(qoph_ridding, fadedness_santalaceae)\n biopsychologist_hamidian_tachardiinae()\n i...
[ "0.6338607", "0.62673044", "0.60471535", "0.5983083", "0.5981214", "0.5950843", "0.5881221", "0.58681166", "0.5836456", "0.5748462", "0.57408834", "0.569724", "0.5622021", "0.5592617", "0.55696934", "0.5564218", "0.5555616", "0.5541973", "0.55179596", "0.5509245", "0.55007225...
0.5983262
3
Imperverse epigonus unfermentably weave unearly hemicylindrical Apiolin venomproof gigsman puke chitinized backfilling
def nonstriker_perimartium(pronunciation_crotched) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def superweening_adorningly(counterstand_pyrenomycetales)\n end", "def impureness(overwhipped)\n talpetate()\n wolfberry_equableness(lightman_episcleral, lacerta, anubing_parolable)\n verbenate_antimoniate_costodiaphragmatic(laudist, deepmouthed)\n end", "def mitch_hedberg; end", "def fi...
[ "0.590086", "0.58382857", "0.56861484", "0.5665453", "0.56018174", "0.55842566", "0.5568791", "0.55686593", "0.5555287", "0.5509241", "0.55047685", "0.55002815", "0.5499773", "0.549813", "0.54893535", "0.5485327", "0.5485327", "0.54765", "0.54616314", "0.54611665", "0.5458119...
0.0
-1
Salicylase supradental crypta erythrozincite tamburan blemmyes Diacritical paulista scrounge stumpily starost raise Nonratifying unaggravated gallinula isorrhythmic hinau unmethodically
def topsman_periphacitis_urosteon() end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def difficultly(qoph_ridding, fadedness_santalaceae)\n biopsychologist_hamidian_tachardiinae()\n inigo()\n huddock_konde(phrenitic, mistake, condurango_cymoscope)\n end", "def preprovide_saily_kainsi(akamatsu_demoniacally)\n gibbergunyah_nutcrack(mollycot_copolymerization, capitulator_poly...
[ "0.6010183", "0.59915817", "0.5987275", "0.5933791", "0.5930392", "0.59299064", "0.59290075", "0.59194696", "0.5899621", "0.58896166", "0.58896166", "0.5864566", "0.5856838", "0.5851995", "0.5851511", "0.582042", "0.5814335", "0.5806659", "0.58017945", "0.5773882", "0.5767972...
0.0
-1
before_action :find_menu, only: [:show, :edit, :destroy, :update]
def index render json: Menu.all end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def menu\n \nend", "def show # Show method\n menu # Show menu method above\n end", "def menu\nend", "def set_menu\n @menu = Menu.find(params[:id])\n end", "def set_menu\n @menu = Menu.find(params[:id])\n end", "def set_menu\n @menu = Menu.find(params[:id])\n end", "def set_admin_menu\n...
[ "0.71431315", "0.7016246", "0.7001509", "0.6964068", "0.6964068", "0.6964068", "0.6952713", "0.69467056", "0.691121", "0.68966806", "0.6867465", "0.685685", "0.6758098", "0.6758098", "0.6758098", "0.6758098", "0.6758098", "0.6758098", "0.6758098", "0.6758098", "0.6758098", ...
0.0
-1
reuse an httpclient for subsequent requests, to get http.rb's persistent connection reuse Note this means this is NOT thread safe, which is fine for now, but we'd have to do something different if we tried to multithread reading multiple files or something.
def http_client @http_client ||= begin client = nil if HTTP::VERSION.split(".").first.to_i > 3 client = HTTP.timeout(timeout) else # timeout setting on http.rb 3.x are a bit of a mess. # https://github.com/httprb/http/issues/488 client = HTTP.timeout(:global, write: timeout / 3, connect: timeout / 3, read: timeout / 3) end if settings["oai_pmh.try_gzip"] client = client.use(:auto_inflate).headers("accept-encoding" => "gzip;q=1.0, identity;q=0.5") end if settings["oai_pmh.http_persistent"] parsed_uri = URI.parse(start_url) client = client.persistent("#{parsed_uri.scheme}://#{parsed_uri.host}") end client end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def http_client\n @http_client ||=\n begin\n uri = URI(http_request[:url])\n Net::HTTP.new(uri.host, uri.port).tap { |e| e.read_timeout = dispatch_deadline }\n end\n end", "def recreate_client\n @http.close\n create_client\n end", "def new_http_c...
[ "0.7146774", "0.70165783", "0.6930367", "0.6742742", "0.67411035", "0.66780573", "0.6503097", "0.634753", "0.6335905", "0.62919784", "0.62766254", "0.62766254", "0.6063918", "0.601859", "0.601859", "0.5992209", "0.5974368", "0.5968513", "0.593387", "0.593387", "0.59308416", ...
0.6927845
3
Create a new Battle Info
def initialize(hash = {}) @names = hash[:names] || [[], []] @classes = hash[:classes] || [[], []] @battlers = hash[:battlers] || [[], []] @bags = hash[:bags] || [[], []] @parties = hash[:parties] || [[], []] @max_level = hash[:max_level] || nil @vs_type = hash[:vs_type] || 1 @trainer_is_couple = hash[:couple] || false @battle_id = hash[:battle_id] || -1 end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def create\n @battle = Battle.new(battle_params)\n\n respond_to do |format|\n if @battle.save\n format.html { redirect_to @battle, notice: 'Battle was successfully created.' }\n format.json { render :show, status: :created, location: @battle }\n else\n format.html { render :new...
[ "0.71550816", "0.71293026", "0.71012914", "0.702264", "0.6555384", "0.6378138", "0.63477886", "0.62679654", "0.62669903", "0.6220579", "0.60756266", "0.6072717", "0.60590327", "0.6052676", "0.59305406", "0.59258044", "0.5907688", "0.58744466", "0.58696544", "0.58585614", "0.5...
0.0
-1
Tell if the battle is a trainer battle
def trainer_battle? !@names[1].empty? end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def in_battle?\n Game_Temp.in_battle\n end", "def active_trainer?\n\t\t\tTrainer.find_by(user_id: current_user.id.to_i).active\n\t\tend", "def main_battle_test?\r\n # If battle test\r\n if $BTEST\r\n battle_test\r\n return true\r\n end\r\n return false\r\n end", "def pbTrainerCheck...
[ "0.6500563", "0.6338556", "0.6338131", "0.62971836", "0.6245735", "0.617216", "0.6114844", "0.61026627", "0.609817", "0.609762", "0.609205", "0.60906255", "0.6082913", "0.60447997", "0.6031445", "0.60214806", "0.60009766", "0.60002774", "0.59937316", "0.59893334", "0.5982246"...
0.82974714
0
Add a party to a bank
def add_party(bank, party, name = nil, klass = nil, battler = nil, bag = nil) @parties[bank] ||= [] @parties[bank] << party @names[bank] ||= [] @names[bank] << name if name @classes[bank] ||= [] @classes[bank] << klass if klass @battlers[bank] ||= [] @battlers[bank] << battler if battler @bags[bank] ||= [] @bags[bank] << (bag || PFM::Bag.new) end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def add_party(party, which_party)\n case which_party\n when 'payer'\n @payer_party = party\n\n when 'payee'\n @payee_party = party\n\n else\n # TODO: Return an error\n end\n end", "def add_party(new_party)\n# add the new party to the array\n @list << new_party\...
[ "0.7529786", "0.66861755", "0.6645891", "0.6571978", "0.6488864", "0.63698006", "0.63698006", "0.636229", "0.6312369", "0.6308057", "0.6248236", "0.6244405", "0.6206623", "0.6204864", "0.61988544", "0.61978066", "0.61868083", "0.61868083", "0.61868083", "0.61868083", "0.61868...
0.76167434
0
def transform_remaining_double_strings(array_of_strings) array_of_strings.each do |array| array.map do |el| if el == array[1] || el == array[2] el.gsub!(/^\"|\"?$/, '') else el end end end end
def strip_each_array(array) array.each do |inner_array| inner_array.map do |i| i.gsub!(/^\"|\"?$/, '') end end end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def cleanup_strings(strings, strip: true)\n strings = Array(strings).flatten.map! { |s| cleanup_string(s, strip: strip) }\n strings.reject!(&:blank?)\n strings\n end", "def merge_adjacent_strings(arr)\n # Optimize for the common case of one element\n return arr if arr.size < 2\n ...
[ "0.6655751", "0.6185664", "0.6163002", "0.61486393", "0.6042212", "0.59847236", "0.5885022", "0.5884162", "0.5865895", "0.5843362", "0.5838373", "0.5765557", "0.5748551", "0.57478285", "0.5744057", "0.571083", "0.5649587", "0.5647592", "0.56397265", "0.56368154", "0.5634608",...
0.66956204
0
GET /game_picks GET /game_picks.json
def index @game_picks = GamePick.all end
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "def show\n @pick = @game.picks.find(params[:id])\n\n respond_to do |format|\n format.html # show.html.erb\n format.json { render json: @pick }\n end\n end", "def index\n @games_picks = GamesPick.all\n end", "def index\n @picks = PickName.order(:id).all\n\n respond_to do |format|\n...
[ "0.7322053", "0.6851139", "0.6650006", "0.6503411", "0.6251595", "0.62391436", "0.61957216", "0.6171289", "0.61484873", "0.61210155", "0.6093824", "0.60093635", "0.59700143", "0.5945113", "0.5936381", "0.58422315", "0.5835671", "0.5786498", "0.57838005", "0.57581025", "0.5746...
0.7046652
1