index
int64 1
4.82k
| file_id
stringlengths 6
9
| content
stringlengths 240
14.6k
| repo
stringlengths 9
82
| path
stringlengths 8
129
| token_length
int64 72
3.85k
| original_comment
stringlengths 13
1.35k
| comment_type
stringclasses 2
values | detected_lang
stringclasses 1
value | prompt
stringlengths 142
14.6k
| Excluded
bool 1
class | file-tokens-Qwen/Qwen2-7B
int64 64
3.93k
| comment-tokens-Qwen/Qwen2-7B
int64 4
476
| file-tokens-bigcode/starcoder2-7b
int64 74
3.98k
| comment-tokens-bigcode/starcoder2-7b
int64 4
458
| file-tokens-google/codegemma-7b
int64 56
3.99k
| comment-tokens-google/codegemma-7b
int64 4
472
| file-tokens-ibm-granite/granite-8b-code-base
int64 74
3.98k
| comment-tokens-ibm-granite/granite-8b-code-base
int64 4
458
| file-tokens-meta-llama/CodeLlama-7b-hf
int64 77
4.07k
| comment-tokens-meta-llama/CodeLlama-7b-hf
int64 4
496
| excluded-based-on-tokenizer-Qwen/Qwen2-7B
bool 2
classes | excluded-based-on-tokenizer-bigcode/starcoder2-7b
bool 2
classes | excluded-based-on-tokenizer-google/codegemma-7b
bool 2
classes | excluded-based-on-tokenizer-ibm-granite/granite-8b-code-base
bool 2
classes | excluded-based-on-tokenizer-meta-llama/CodeLlama-7b-hf
bool 2
classes | include-for-inference
bool 2
classes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3,391 | 25495_15 | /*
* Copyright (C) 2013 Koen Vlaswinkel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package nl.phphulp.app;
import java.util.ArrayList;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import android.widget.Toast;
public class ArticleAdapter extends BaseAdapter {
private Context context;
private ArrayList<Article> items;
/**
* Dit wordt gebruikt voor een hogere snelheid
*/
static class ViewHolder {
public TextView title;
public TextView text;
}
public ArticleAdapter(Context context, ArrayList<Article> items) {
super();
this.context = context;
this.items = items;
}
/**
* Hoe groot is onze lijst?
*
* @return grootte van de lijst
*/
@Override
public int getCount() {
return items.size();
}
/**
* Een item uit de lijst
*
* @return een object dat het item is
*/
@Override
public Object getItem(int position) {
return items.get(position);
}
/**
* Dit is een beetje onzinnig voor onze applicatie
*
* @return de positie
*/
@Override
public long getItemId(int position) {
return position;
}
/**
* Hier maken we de view die zichtbaar is in de lijst
*
* @param position
* @param convertView
* @param parent
*
* @return De view
*/
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
// Zorg ervoor dat we een layout kunnen maken
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Zorg voor een standaard view met 2 regels
view = inflater.inflate(android.R.layout.simple_list_item_2,
parent, false);
// We gaan voor wat snelheid zorgen
ViewHolder viewHolder = new ViewHolder();
viewHolder.title = (TextView) view.findViewById(android.R.id.text1);
viewHolder.text = (TextView) view.findViewById(android.R.id.text2);
// En deze snelheid opslaan
view.setTag(viewHolder);
}
// Hier kunnen we de snelheid weer terugkrijgen
ViewHolder holder = (ViewHolder) view.getTag();
// Dit is ons artikel dat we moeten laten zien
final Article article = items.get(position);
// We gaan op de eerste regel een titel laten zien
holder.title.setText(article.getTitle());
// En op de tweede regel wat content
holder.text.setText(article.getContent());
// En nu gaan we zorgen dat er een 'Toast' verschijnt als je op het item
// klikt
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Hier maken we een 'Toast'
Toast.makeText(
context,
"Je hebt op artikel " + article.getId()
+ " geklikt met slug " + article.getSlug(),
Toast.LENGTH_LONG).show();
}
});
return view;
}
}
| koesie10/phphulp-android | Android/src/nl/phphulp/app/ArticleAdapter.java | 1,074 | // Hier maken we een 'Toast' | line_comment | nl | /*
* Copyright (C) 2013 Koen Vlaswinkel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package nl.phphulp.app;
import java.util.ArrayList;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import android.widget.Toast;
public class ArticleAdapter extends BaseAdapter {
private Context context;
private ArrayList<Article> items;
/**
* Dit wordt gebruikt voor een hogere snelheid
*/
static class ViewHolder {
public TextView title;
public TextView text;
}
public ArticleAdapter(Context context, ArrayList<Article> items) {
super();
this.context = context;
this.items = items;
}
/**
* Hoe groot is onze lijst?
*
* @return grootte van de lijst
*/
@Override
public int getCount() {
return items.size();
}
/**
* Een item uit de lijst
*
* @return een object dat het item is
*/
@Override
public Object getItem(int position) {
return items.get(position);
}
/**
* Dit is een beetje onzinnig voor onze applicatie
*
* @return de positie
*/
@Override
public long getItemId(int position) {
return position;
}
/**
* Hier maken we de view die zichtbaar is in de lijst
*
* @param position
* @param convertView
* @param parent
*
* @return De view
*/
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
if (view == null) {
// Zorg ervoor dat we een layout kunnen maken
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Zorg voor een standaard view met 2 regels
view = inflater.inflate(android.R.layout.simple_list_item_2,
parent, false);
// We gaan voor wat snelheid zorgen
ViewHolder viewHolder = new ViewHolder();
viewHolder.title = (TextView) view.findViewById(android.R.id.text1);
viewHolder.text = (TextView) view.findViewById(android.R.id.text2);
// En deze snelheid opslaan
view.setTag(viewHolder);
}
// Hier kunnen we de snelheid weer terugkrijgen
ViewHolder holder = (ViewHolder) view.getTag();
// Dit is ons artikel dat we moeten laten zien
final Article article = items.get(position);
// We gaan op de eerste regel een titel laten zien
holder.title.setText(article.getTitle());
// En op de tweede regel wat content
holder.text.setText(article.getContent());
// En nu gaan we zorgen dat er een 'Toast' verschijnt als je op het item
// klikt
view.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// Hier maken<SUF>
Toast.makeText(
context,
"Je hebt op artikel " + article.getId()
+ " geklikt met slug " + article.getSlug(),
Toast.LENGTH_LONG).show();
}
});
return view;
}
}
| false | 834 | 8 | 1,015 | 9 | 958 | 8 | 1,015 | 9 | 1,177 | 10 | false | false | false | false | false | true |
476 | 52687_6 | package novi.nl.Les11BESpringbootmodelhuiswerk.models;
import com.fasterxml.jackson.annotation.JsonIgnore;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "cimodules")
public class CIModule {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
private String type;
private Double price;
// Een ManyToOne relatie tussen Television en CI-Module
// @OneToMany(mappedBy = "cimodule")
// private List<Television> televisions;
// OneToMany relatie tussen Television en CI-Module
@ManyToOne
private Television television;
//getters & setters........................................
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
// hoort bij ManyToOne
public Television getTelevision() {
return television;
}
public void setTelevision(Television television) {
this.television = television;
}
// hoort bij OneToMany
// public List<Television> getTelevisions() {
// return televisions;
// }
//
// public void setTelevisions(List<Television> televisions) {
// this.televisions = televisions;
// }
}
| Ellen-van-Duikeren/BE-spring-boot-model-huiswerk-Les11 | src/main/java/novi/nl/Les11BESpringbootmodelhuiswerk/models/CIModule.java | 493 | // hoort bij OneToMany | line_comment | nl | package novi.nl.Les11BESpringbootmodelhuiswerk.models;
import com.fasterxml.jackson.annotation.JsonIgnore;
import javax.persistence.*;
import java.util.List;
@Entity
@Table(name = "cimodules")
public class CIModule {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;
private String name;
private String type;
private Double price;
// Een ManyToOne relatie tussen Television en CI-Module
// @OneToMany(mappedBy = "cimodule")
// private List<Television> televisions;
// OneToMany relatie tussen Television en CI-Module
@ManyToOne
private Television television;
//getters & setters........................................
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Double getPrice() {
return price;
}
public void setPrice(Double price) {
this.price = price;
}
// hoort bij ManyToOne
public Television getTelevision() {
return television;
}
public void setTelevision(Television television) {
this.television = television;
}
// hoort bij<SUF>
// public List<Television> getTelevisions() {
// return televisions;
// }
//
// public void setTelevisions(List<Television> televisions) {
// this.televisions = televisions;
// }
}
| false | 366 | 6 | 426 | 6 | 422 | 5 | 426 | 6 | 501 | 7 | false | false | false | false | false | true |