proj_name stringclasses 26
values | relative_path stringlengths 42 165 | class_name stringlengths 3 46 | func_name stringlengths 2 44 | masked_class stringlengths 80 7.9k | func_body stringlengths 76 5.98k | initial_context stringclasses 74
values | parent_class_output stringlengths 20 1.75k | parent_class_output_re_type unknown | parent_class_output_re_method unknown | func_body_re_type unknown | func_body_re_method unknown | relevant_context stringlengths 0 99.1k | relevant_context_no_cmt stringlengths 0 36.2k | retrieved_names stringlengths 39 1.7k | retrieved_types stringlengths 2 128k | retrieved_methods stringlengths 2 20.3k | similar_methods stringlengths 2 3.74k | func_body_re.methods unknown | func_body_re.similar_methods unknown | func_body_re.types unknown | retrieved_types_grouth_truth stringlengths 0 96.5k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
qiujiayu_AutoLoadCache | AutoLoadCache/autoload-cache-serializer/autoload-cache-serializer-protobuf/src/main/java/com/jarvis/cache/serializer/protobuf/HeapByteBufUtil.java | HeapByteBufUtil | setIntLE | class HeapByteBufUtil {
static byte getByte(byte[] memory, int index) {
return memory[index];
}
static short getShort(byte[] memory, int index) {
return (short) (memory[index] << 8 | memory[index + 1] & 0xFF);
}
static short getShortLE(byte[] memory, int index) {
return (s... |
memory[index] = (byte) value;
memory[index + 1] = (byte) (value >>> 8);
memory[index + 2] = (byte) (value >>> 16);
memory[index + 3] = (byte) (value >>> 24);
|
memory[index] = (byte) value;
memory[index + 1] = (byte) (value >>> 8);
memory[index + 2] = (byte) (value >>> 16);
memory[index + 3] = (byte) (value >>> 24);
| [
91,
93
] | [
91,
93
] | [
91,
93
] | [
91,
93
] | {"similar_methods": [{"setIntLE": ""}]} | [] | [] | [] | [
91,
110,
117,
108,
108,
93
] | [
91,
34,
115,
101,
116,
73,
110,
116,
76,
69,
34,
93
] | [
91,
110,
117,
108,
108,
93
] | ||||
jitsi_jitsi | jitsi/modules/plugin/otr/src/main/java/net/java/sip/communicator/plugin/otr/OtrMetaContactMenu.java | OtrMetaContactMenu | createOtrContactMenus | class OtrMetaContactMenu
extends AbstractPluginComponent
implements ActionListener,
PopupMenuListener
{
/**
* The last known <tt>MetaContact</tt> to be currently selected and to be
* depicted by this instance and the <tt>OtrContactMenu</tt>s it contains.
*/
private MetaCon... |
JMenu menu = getMenu();
// Remove any existing OtrContactMenu items.
menu.removeAll();
// Create the new OtrContactMenu items.
if (metaContact != null)
{
Iterator<Contact> contacts = metaContact.getContacts();
if (metaContact.getContactCount() ... | /**
* Provides an abstract base implementation of <code>PluginComponent</code> in order to take care of the implementation boilerplate and let implementers focus on the specifics of their plug-in.
* @author Lyubomir Marinov
*/
public abstract class AbstractPluginComponent implements PluginComponent {
/**
* The ... |
if (metaContact != null)
{
for (Contact contact : metaContact.getContacts())
{
OtrContactMenu otrContactMenu =
new OtrContactMenu(getContainer(), getParentFactory());
otrContactMenu.setCurrentContact(contact);
m... | [
91,
34,
67,
111,
110,
116,
97,
99,
116,
34,
44,
34,
74,
77,
101,
110,
117,
34,
44,
34,
79,
116,
114,
67,
111,
110,
116,
97,
99,
116,
77,
101,
110,
117,
34,
44,
34,
77,
101,
116,
97,
67,
111,
110,
116,
97,
99,
116,
34,
... | [
91,
34,
115,
101,
116,
67,
117,
114,
114,
101,
110,
116,
67,
111,
110,
116,
97,
99,
116,
34,
44,
34,
114,
101,
109,
111,
118,
101,
65,
108,
108,
34,
44,
34,
97,
100,
100,
34,
44,
34,
103,
101,
116,
67,
111,
110,
116,
97,
... | [
91,
34,
77,
101,
116,
97,
67,
111,
110,
116,
97,
99,
116,
34,
44,
34,
67,
111,
110,
116,
97,
99,
116,
82,
101,
115,
111,
117,
114,
99,
101,
34,
44,
34,
73,
116,
101,
114,
97,
116,
111,
114,
60,
67,
111,
110,
116,
97,
99,... | [
91,
34,
115,
117,
112,
112,
111,
114,
116,
82,
101,
115,
111,
117,
114,
99,
101,
115,
34,
44,
34,
103,
101,
116,
82,
101,
115,
111,
117,
114,
99,
101,
115,
34,
44,
34,
103,
101,
116,
67,
111,
110,
116,
97,
99,
116,
67,
111... | /**
* A MetaContact is an abstraction used for merging multiple Contacts (most often) belonging to different <tt>ProtocolProvider</tt>s. <p> Instances of a MetaContact are read-only objects that cannot be modified directly but only through the corresponding MetaContactListService. </p>
* @author Emil Ivov
* @author... | public interface MetaContact extends Comparable<MetaContact> {
public Contact getDefaultContact();
public Contact getDefaultContact( Class<? extends OperationSet> operationSet);
public Iterator<Contact> getContacts();
public Contact getContact( String contactAddress, ProtocolProviderService ownerProvider);
... | {"types": [{"MetaContact": "MetaContact"}, {"ContactResource": "ContactResource"}, {"Iterator<Contact>": "ContactInfoActivator"}, {"JMenu": "HelpMenu"}, {"Collection<ContactResource>": "ContactResource"}, {"Contact": "Contact"}], "methods": [{"supportResources": "supportResources"}, {"getResources": "getResources"}, {"... | [{"MetaContact": {"retrieved_name": "MetaContact", "raw_body": "/** \n * A MetaContact is an abstraction used for merging multiple Contacts (most often) belonging to different <tt>ProtocolProvider</tt>s. <p> Instances of a MetaContact are read-only objects that cannot be modified directly but only through the correspon... | [{"supportResources": {"retrieved_name": "supportResources", "raw_body": "/** \n * Indicates if this contact supports resources.\n * @return <tt>false</tt> to indicate that this contact doesn't supportresources\n */\n@Override public boolean supportResources(){\n return false;\n}\n"}}, {"getResources": {"retrieved_nam... | [{"createOtrContactMenus": {"retrieved_name": "createAddContactMenu", "raw_body": "/** \n * Create an the add contact menu, taking into account the number of contact details available in the given <tt>sourceContact</tt>.\n * @param sourceContact the external source contact, for which we'd liketo create a menu\n * @retu... | [
91,
34,
115,
117,
112,
112,
111,
114,
116,
82,
101,
115,
111,
117,
114,
99,
101,
115,
34,
44,
34,
103,
101,
116,
82,
101,
115,
111,
117,
114,
99,
101,
115,
34,
44,
34,
103,
101,
116,
67,
111,
110,
116,
97,
99,
116,
67,
111... | [
91,
34,
99,
114,
101,
97,
116,
101,
79,
116,
114,
67,
111,
110,
116,
97,
99,
116,
77,
101,
110,
117,
115,
34,
93
] | [
91,
34,
77,
101,
116,
97,
67,
111,
110,
116,
97,
99,
116,
34,
44,
34,
67,
111,
110,
116,
97,
99,
116,
82,
101,
115,
111,
117,
114,
99,
101,
34,
44,
34,
73,
116,
101,
114,
97,
116,
111,
114,
60,
67,
111,
110,
116,
97,
99,... | /**
* A MetaContact is an abstraction used for merging multiple Contacts (most often) belonging to different <tt>ProtocolProvider</tt>s. <p> Instances of a MetaContact are read-only objects that cannot be modified directly but only through the corresponding MetaContactListService. </p>
* @author Emil Ivov
* @author... |
docker-java_docker-java | docker-java/docker-java-api/src/main/java/com/github/dockerjava/api/model/Device.java | Device | parse | class Device extends DockerObject implements Serializable {
private static final long serialVersionUID = 1L;
@JsonProperty("CgroupPermissions")
private String cGroupPermissions = "";
@JsonProperty("PathOnHost")
private String pathOnHost = null;
@JsonProperty("PathInContainer")
private Str... |
String src = "";
String dst = "";
String permissions = "rwm";
final String[] arr = deviceStr.trim().split(":");
// java String.split() returns wrong length, use tokenizer instead
switch (new StringTokenizer(deviceStr, ":").countTokens()) {
case 3: {
... | /**
* @see DockerObjectAccessor
*/
public abstract class DockerObject {
HashMap<String,Object> rawValues=new HashMap<>();
@JsonAnyGetter public Map<String,Object> getRawValues();
}
|
final String[] deviceParts = deviceStr.split(":");
if (deviceParts.length != 3) {
throw new IllegalArgumentException("Invalid device format: " + deviceStr);
}
final String devicePathInContainer = deviceParts[0];
final String devicePathOnHost = deviceParts[1];
... | [
91,
93
] | [
91,
34,
115,
112,
108,
105,
116,
34,
93
] | [
91,
93
] | [
91,
34,
108,
101,
110,
103,
116,
104,
34,
44,
34,
115,
112,
108,
105,
116,
34,
44,
34,
99,
111,
117,
110,
116,
84,
111,
107,
101,
110,
115,
34,
44,
34,
116,
114,
105,
109,
34,
93
] | @Override public long getContentLength(){
return -1;
}
public long skip(long n) throws IOException {
return delegate.skip(n);
}
/**
* @see #joinTokens
*/
@CheckForNull public SwarmJoinTokens getJoinTokens(){
return joinTokens;
}
public T transform(Map<String,String> env){
return (T)this;
}
/**
* Parses a s... | @Override public long getContentLength(){
return -1;
}
public long skip(long n) throws IOException {
return delegate.skip(n);
}
/**
* @see #joinTokens
*/
@CheckForNull public SwarmJoinTokens getJoinTokens(){
return joinTokens;
}
public T transform(Map<String,String> env){
return (T)this;
}
/**
* Parses a s... | {"methods": [{"length": "getContentLength"}, {"split": "skip"}, {"countTokens": "getJoinTokens"}, {"trim": "transform"}], "similar_methods": [{"parse": "parse"}]} | [] | [{"length": {"retrieved_name": "getContentLength", "raw_body": "@Override public long getContentLength(){\n return -1;\n}\n"}}, {"split": {"retrieved_name": "skip", "raw_body": "public long skip(long n) throws IOException {\n return delegate.skip(n);\n}\n"}}, {"countTokens": {"retrieved_name": "getJoinTokens", "raw_b... | [{"parse": {"retrieved_name": "parse", "raw_body": "/** \n * Parses a string to an {@link InternetProtocol}.\n * @param serialized the protocol, e.g. <code>tcp</code> or <code>TCP</code>\n * @return an {@link InternetProtocol} described by the string\n * @throws IllegalArgumentException if the argument cannot be parse... | [
91,
34,
108,
101,
110,
103,
116,
104,
34,
44,
34,
115,
112,
108,
105,
116,
34,
44,
34,
99,
111,
117,
110,
116,
84,
111,
107,
101,
110,
115,
34,
44,
34,
116,
114,
105,
109,
34,
93
] | [
91,
34,
112,
97,
114,
115,
101,
34,
93
] | [
91,
110,
117,
108,
108,
93
] | |
subhra74_snowflake | snowflake/muon-app/src/main/java/muon/app/ui/components/session/utilpage/services/ServiceTableCellRenderer.java | ServiceTableCellRenderer | getTableCellRendererComponent | class ServiceTableCellRenderer extends JLabel implements TableCellRenderer {
public ServiceTableCellRenderer() {
setText("HHH");
setBorder(new EmptyBorder(5, 5, 5, 5));
setOpaque(true);
}
@Override
public Component getTableCellRendererComponent(JTable table, Object value... |
setText(value == null ? "" : value.toString());
setBackground(isSelected ? table.getSelectionBackground() : table.getBackground());
setForeground(isSelected ? table.getSelectionForeground() : table.getForeground());
return this;
|
Service service = (Service) value;
setText(service.getName());
return this;
| [
91,
34,
74,
84,
97,
98,
108,
101,
34,
44,
34,
83,
101,
114,
118,
105,
99,
101,
34,
93
] | [
91,
34,
103,
101,
116,
78,
97,
109,
101,
34,
93
] | [
91,
34,
74,
84,
97,
98,
108,
101,
34,
93
] | [
91,
34,
103,
101,
116,
83,
101,
108,
101,
99,
116,
105,
111,
110,
70,
111,
114,
101,
103,
114,
111,
117,
110,
100,
34,
44,
34,
103,
101,
116,
70,
111,
114,
101,
103,
114,
111,
117,
110,
100,
34,
44,
34,
116,
111,
83,
116,
... | public class SearchTableRenderer implements TableCellRenderer {
private JLabel label;
private JPanel panel;
private SearchTableModel model;
private JLabel textLabel, iconLabel;
public SearchTableRenderer( SearchTableModel model);
public Component getTableCellRendererComponent( JTable table, Object value,... | public class SearchTableRenderer implements TableCellRenderer {
private JLabel label;
private JPanel panel;
private SearchTableModel model;
private JLabel textLabel, iconLabel;
public SearchTableRenderer( SearchTableModel model);
public Component getTableCellRendererComponent( JTable table, Object value,... | {"types": [{"JTable": "SearchTableRenderer"}], "methods": [{"getSelectionForeground": "getDefaultSelectionForeground"}, {"getForeground": "getForeground"}, {"toString": "toString"}, {"getSelectionBackground": "getDefaultSelectionBackground"}, {"getBackground": "getBackground"}], "similar_methods": [{"getTableCellRender... | [{"JTable": {"retrieved_name": "SearchTableRenderer", "raw_body": "public class SearchTableRenderer implements TableCellRenderer {\n private JLabel label;\n private JPanel panel;\n private SearchTableModel model;\n private JLabel textLabel, iconLabel;\n public SearchTableRenderer( SearchTableModel model);\n publ... | [{"getSelectionForeground": {"retrieved_name": "getDefaultSelectionForeground", "raw_body": "public Color getDefaultSelectionForeground(){\n return this.defaults.getColor(\"nimbusSelectedText\");\n}\n"}}, {"getForeground": {"retrieved_name": "getForeground", "raw_body": "@Override public Color getForeground(){\n retu... | [{"getTableCellRendererComponent": {"retrieved_name": "getTableCellRendererComponent", "raw_body": "@Override public Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected,boolean hasFocus,int row,int column){\n setBackground(isSelected ? table.getSelectionBackground() : table.getBackgrou... | [
91,
34,
103,
101,
116,
83,
101,
108,
101,
99,
116,
105,
111,
110,
70,
111,
114,
101,
103,
114,
111,
117,
110,
100,
34,
44,
34,
103,
101,
116,
70,
111,
114,
101,
103,
114,
111,
117,
110,
100,
34,
44,
34,
116,
111,
83,
116,
... | [
91,
34,
103,
101,
116,
84,
97,
98,
108,
101,
67,
101,
108,
108,
82,
101,
110,
100,
101,
114,
101,
114,
67,
111,
109,
112,
111,
110,
101,
110,
116,
34,
93
] | [
91,
34,
74,
84,
97,
98,
108,
101,
34,
93
] | public class SearchTableRenderer implements TableCellRenderer {
private JLabel label;
private JPanel panel;
private SearchTableModel model;
private JLabel textLabel, iconLabel;
public SearchTableRenderer( SearchTableModel model);
public Component getTableCellRendererComponent( JTable table, Object value,... | |
DerekYRC_mini-spring | mini-spring/src/main/java/org/springframework/aop/aspectj/AspectJExpressionPointcutAdvisor.java | AspectJExpressionPointcutAdvisor | getPointcut | class AspectJExpressionPointcutAdvisor implements PointcutAdvisor {
private AspectJExpressionPointcut pointcut;
private Advice advice;
private String expression;
public void setExpression(String expression) {
this.expression = expression;
}
@Override
public Pointcut getPointcut() {<FILL_FUNCTION_BODY>}
... |
if (pointcut == null) {
pointcut = new AspectJExpressionPointcut(expression);
}
return pointcut;
|
if (pointcut == null) {
pointcut = new AspectJExpressionPointcut();
pointcut.setExpression(expression);
}
return pointcut;
| [
91,
34,
65,
115,
112,
101,
99,
116,
74,
69,
120,
112,
114,
101,
115,
115,
105,
111,
110,
80,
111,
105,
110,
116,
99,
117,
116,
34,
93
] | [
91,
34,
115,
101,
116,
69,
120,
112,
114,
101,
115,
115,
105,
111,
110,
34,
93
] | [
91,
34,
65,
115,
112,
101,
99,
116,
74,
69,
120,
112,
114,
101,
115,
115,
105,
111,
110,
80,
111,
105,
110,
116,
99,
117,
116,
34,
93
] | [
91,
93
] | /**
* @author derekyi
* @date 2020/12/5
*/
public class AspectJExpressionPointcut implements Pointcut, ClassFilter, MethodMatcher {
private static final Set<PointcutPrimitive> SUPPORTED_PRIMITIVES=new HashSet<PointcutPrimitive>();
static {
SUPPORTED_PRIMITIVES.add(PointcutPrimitive.EXECUTION);
}
private f... | public class AspectJExpressionPointcut implements Pointcut, ClassFilter, MethodMatcher {
private static final Set<PointcutPrimitive> SUPPORTED_PRIMITIVES=new HashSet<PointcutPrimitive>();
static {
SUPPORTED_PRIMITIVES.add(PointcutPrimitive.EXECUTION);
}
private final PointcutExpression pointcutExpression;
p... | {"types": [{"AspectJExpressionPointcut": "AspectJExpressionPointcut"}], "similar_methods": [{"getPointcut": "getPointcut"}]} | [{"AspectJExpressionPointcut": {"retrieved_name": "AspectJExpressionPointcut", "raw_body": "/** \n * @author derekyi\n * @date 2020/12/5\n */\npublic class AspectJExpressionPointcut implements Pointcut, ClassFilter, MethodMatcher {\n private static final Set<PointcutPrimitive> SUPPORTED_PRIMITIVES=new HashSet<Pointcut... | [] | [{"getPointcut": {"retrieved_name": "getPointcut", "raw_body": "Pointcut getPointcut();\n"}}] | [
91,
110,
117,
108,
108,
93
] | [
91,
34,
103,
101,
116,
80,
111,
105,
110,
116,
99,
117,
116,
34,
93
] | [
91,
34,
65,
115,
112,
101,
99,
116,
74,
69,
120,
112,
114,
101,
115,
115,
105,
111,
110,
80,
111,
105,
110,
116,
99,
117,
116,
34,
93
] | /**
* @author derekyi
* @date 2020/12/5
*/
public class AspectJExpressionPointcut implements Pointcut, ClassFilter, MethodMatcher {
private static final Set<PointcutPrimitive> SUPPORTED_PRIMITIVES=new HashSet<PointcutPrimitive>();
static {
SUPPORTED_PRIMITIVES.add(PointcutPrimitive.EXECUTION);
}
private f... | |
Pay-Group_best-pay-sdk | best-pay-sdk/src/main/java/com/lly835/bestpay/service/impl/wx/WxPayMicroServiceImpl.java | WxPayMicroServiceImpl | pay | "class WxPayMicroServiceImpl extends WxPayServiceImpl {\n\n /**\n * 微信付款码支付\n (...TRUNCATED) | "\n WxPayUnifiedorderRequest wxRequest = new WxPayUnifiedorderRequest();\n wxRequest.s(...TRUNCATED) | "/** \n * Created by 廖师兄 2017-07-02 13:40\n */\n@Slf4j public class WxPayServiceImpl extends B(...TRUNCATED) | "\n WxPayRequest wxPayRequest = (WxPayRequest) request;\n WxPayAsyncRequest wxPayAsync(...TRUNCATED) | [
91,
34,
87,
120,
80,
97,
121,
82,
101,
113,
117,
101,
115,
116,
34,
44,
34,
87,
120,
80,
97,
121,
65,
115,
121,
110,
99,
82,
101,
113,
117,
101,
115,
116,
34,
44,
34,
80,
97,
121,
82,
101,
113,
117,
101,
115,
116,
34,
93... | "WyJnZXRCb2R5Iiwic2V0RGV2aWNlSW5mbyIsInNldEZlZVR5cGUiLCJzZXRUaW1lU3RhcnQiLCJnZXREZXZpY2VJbmZvIiwic2V(...TRUNCATED) | "WyJXeFBheVVuaWZpZWRvcmRlclJlcXVlc3QiLCJXeFBheUFwaSIsIlBheVJlcXVlc3QiLCJJT0V4Y2VwdGlvbiIsIkNhbGw8V3h(...TRUNCATED) | "WyJzZXROb25jZVN0ciIsInNldE9wZW5pZCIsImJvZHkiLCJzZXRBcHBpZCIsImNyZWF0ZSIsImV4ZWN1dGUiLCJnZXRNY2hJZCI(...TRUNCATED) | "/** \n * Created by 廖师兄 2017-07-02 13:42\n */\n@Data @Root(name=\"xml\",strict=false) public (...TRUNCATED) | "public class WxPayUnifiedorderRequest {\n private String appid;\n private String mchId;\n privat(...TRUNCATED) | "{\"types\": [{\"WxPayUnifiedorderRequest\": \"WxPayUnifiedorderRequest\"}, {\"WxPayApi\": \"WxPayAp(...TRUNCATED) | "[{\"WxPayUnifiedorderRequest\": {\"retrieved_name\": \"WxPayUnifiedorderRequest\", \"raw_body\": \"(...TRUNCATED) | "[{\"setNonceStr\": {\"retrieved_name\": \"setNotifyUrl\", \"raw_body\": \"public void setNotifyUrl((...TRUNCATED) | "[{\"pay\": {\"retrieved_name\": \"pay\", \"raw_body\": \"@Override public PayResponse pay(PayReques(...TRUNCATED) | "WyJzZXROb25jZVN0ciIsInNldE9wZW5pZCIsImJvZHkiLCJzZXRBcHBpZCIsImNyZWF0ZSIsImV4ZWN1dGUiLCJnZXRNY2hJZCI(...TRUNCATED) | [
91,
34,
112,
97,
121,
34,
93
] | "WyJXeFBheVVuaWZpZWRvcmRlclJlcXVlc3QiLCJXeFBheUFwaSIsIlBheVJlcXVlc3QiLCJJT0V4Y2VwdGlvbiIsIkNhbGw8V3h(...TRUNCATED) | "/** \n * Created by 廖师兄 2017-07-02 13:42\n */\n@Data @Root(name=\"xml\",strict=false) public (...TRUNCATED) |
pmd_pmd | "pmd/pmd-java/src/main/java/net/sourceforge/pmd/lang/java/rule/multithreading/DoubleCheckedLockingRu(...TRUNCATED) | DoubleCheckedLockingRule | visit | "class DoubleCheckedLockingRule extends AbstractJavaRule {\n\n @Override\n protected @NonNull (...TRUNCATED) | "\n if (node.isVoid() || node.getResultTypeNode() instanceof ASTPrimitiveType || node.getBody(...TRUNCATED) | "\n ASTMethodDeclaration method = (ASTMethodDeclaration) node;\n List<JVariableSymbol>(...TRUNCATED) | [
91,
34,
76,
105,
115,
116,
60,
74,
86,
97,
114,
105,
97,
98,
108,
101,
83,
121,
109,
98,
111,
108,
62,
34,
44,
34,
74,
86,
97,
114,
105,
97,
98,
108,
101,
83,
121,
109,
98,
111,
108,
34,
44,
34,
65,
83,
84,
77,
101,
11... | [
91,
34,
103,
101,
116,
76,
111,
99,
97,
108,
86,
97,
114,
105,
97,
98,
108,
101,
115,
34,
93
] | "WyJBU1RJZlN0YXRlbWVudCIsIkFTVFJldHVyblN0YXRlbWVudCIsIkxpc3Q8QVNUUmV0dXJuU3RhdGVtZW50PiIsIkFTVEV4cHJ(...TRUNCATED) | "WyJkZXNjZW5kYW50cyIsImlzVm9sYXRpbGUiLCJpc051bGxDaGVjayIsImdldExlZnRPcGVyYW5kIiwiZ2V0Qm9keSIsImdldEV(...TRUNCATED) | "public final class ASTIfStatement extends AbstractPLSQLNode {\n private boolean hasElse;\n ASTIfS(...TRUNCATED) | "public final class ASTIfStatement extends AbstractPLSQLNode {\n private boolean hasElse;\n ASTIfS(...TRUNCATED) | "{\"types\": [{\"ASTIfStatement\": \"ASTIfStatement\"}, {\"ASTReturnStatement\": \"ASTReturnStatemen(...TRUNCATED) | "[{\"ASTIfStatement\": {\"retrieved_name\": \"ASTIfStatement\", \"raw_body\": \"public final class A(...TRUNCATED) | "[{\"descendants\": {\"retrieved_name\": \"descendants\", \"raw_body\": \"/** \\n * Returns a node s(...TRUNCATED) | "[{\"visit\": {\"retrieved_name\": \"visit\", \"raw_body\": \"default R visit(ASTWhenClause node,P d(...TRUNCATED) | "WyJkZXNjZW5kYW50cyIsImlzVm9sYXRpbGUiLCJpc051bGxDaGVjayIsImdldExlZnRPcGVyYW5kIiwiZ2V0Qm9keSIsImdldEV(...TRUNCATED) | [
91,
34,
118,
105,
115,
105,
116,
34,
93
] | "WyJBU1RJZlN0YXRlbWVudCIsIkFTVFJldHVyblN0YXRlbWVudCIsIkxpc3Q8QVNUUmV0dXJuU3RhdGVtZW50PiIsIkFTVEV4cHJ(...TRUNCATED) | "public final class ASTIfStatement extends AbstractPLSQLNode {\n private boolean hasElse;\n ASTIfS(...TRUNCATED) | |
subhra74_snowflake | snowflake/muon-app/src/main/java/muon/app/ui/laf/AppSkinDark.java | AppSkinDark | initDefaultsDark | "class AppSkinDark extends AppSkin {\r\n\r\n\t/**\r\n\t * \r\n\t */\r\n\tpublic AppSkinDark() {\r\n\(...TRUNCATED) | "\r\n\r\n\t\tColor selectionColor = new Color(3, 155, 229);\r\n\t\tColor controlColor = new Color(40(...TRUNCATED) | "/** \n * @author subhro\n */\npublic abstract class AppSkin {\n protected UIDefaults defaults;\n (...TRUNCATED) | "\n\t\tdefaults.put(\"Button.background\", new Color(20, 20, 20));\n\t\tdefaults.put(\"Button.foregr(...TRUNCATED) | [
91,
93
] | [
91,
34,
112,
117,
116,
34,
93
] | [
91,
34,
67,
111,
108,
111,
114,
34,
93
] | [
91,
34,
103,
101,
116,
78,
97,
109,
101,
34,
44,
34,
112,
117,
116,
34,
93
] | "/** \n * @author traff\n */\n@SuppressWarnings(\"UseJBColor\") public abstract class ColorPalette {(...TRUNCATED) | "public abstract class ColorPalette {\n public static final ColorPalette XTERM_PALETTE=new ColorPal(...TRUNCATED) | "{\"types\": [{\"Color\": \"ColorPalette\"}], \"methods\": [{\"getName\": \"getName\"}, {\"put\": \"(...TRUNCATED) | "[{\"Color\": {\"retrieved_name\": \"ColorPalette\", \"raw_body\": \"/** \\n * @author traff\\n */\\(...TRUNCATED) | "[{\"getName\": {\"retrieved_name\": \"getName\", \"raw_body\": \"@Override public String getName(){(...TRUNCATED) | "[{\"initDefaultsDark\": {\"retrieved_name\": \"initDefaultsLight\", \"raw_body\": \"private void in(...TRUNCATED) | [
91,
34,
103,
101,
116,
78,
97,
109,
101,
34,
44,
34,
112,
117,
116,
34,
93
] | [
91,
34,
105,
110,
105,
116,
68,
101,
102,
97,
117,
108,
116,
115,
68,
97,
114,
107,
34,
93
] | [
91,
34,
67,
111,
108,
111,
114,
34,
93
] | "/** \n * @author traff\n */\n@SuppressWarnings(\"UseJBColor\") public abstract class ColorPalette {(...TRUNCATED) |
spring-cloud_spring-cloud-gateway | "spring-cloud-gateway/spring-cloud-gateway-server/src/main/java/org/springframework/cloud/gateway/fi(...TRUNCATED) | ReactiveLoadBalancerClientFilter | choose | "class ReactiveLoadBalancerClientFilter implements GlobalFilter, Ordered {\n\n\tprivate static final(...TRUNCATED) | "\n\t\tReactorLoadBalancer<ServiceInstance> loadBalancer = this.clientFactory.getInstance(serviceId,(...TRUNCATED) | "\n\t\tLoadBalancerProperties loadBalancerProperties = clientFactory.getProperties(serviceId);\n\t\t(...TRUNCATED) | "WyJMb2FkQmFsYW5jZXJDbGllbnRGYWN0b3J5IiwiTG9hZEJhbGFuY2VyQ2xpZW50IiwiTG9hZEJhbGFuY2VyUHJvcGVydGllcyI(...TRUNCATED) | "WyJnZXRMYXp5UHJvdmlkZXIiLCJjaG9vc2UiLCJvblN0YXJ0IiwiZG9Pbk5leHQiLCJnZXRJZkF2YWlsYWJsZSIsImZvckVhY2g(...TRUNCATED) | "WyJSZWFjdG9yTG9hZEJhbGFuY2VyPFNlcnZpY2VJbnN0YW5jZT4iLCJTZXQ8TG9hZEJhbGFuY2VyTGlmZWN5Y2xlPiIsIlJlcXV(...TRUNCATED) | [
91,
34,
103,
101,
116,
73,
110,
115,
116,
97,
110,
99,
101,
34,
44,
34,
111,
110,
83,
116,
97,
114,
116,
34,
44,
34,
102,
111,
114,
69,
97,
99,
104,
34,
44,
34,
99,
104,
111,
111,
115,
101,
34,
93
] | "/** \n * A {@link GlobalFilter} that allows passing the {@code} instanceId) of the{@link ServiceIn(...TRUNCATED) | "public class LoadBalancerServiceInstanceCookieFilter implements GlobalFilter, Ordered {\n private (...TRUNCATED) | "{\"types\": [{\"ReactorLoadBalancer<ServiceInstance>\": \"LoadBalancerServiceInstanceCookieFilter\"(...TRUNCATED) | "[{\"ReactorLoadBalancer<ServiceInstance>\": {\"retrieved_name\": \"LoadBalancerServiceInstanceCooki(...TRUNCATED) | "[{\"getInstance\": {\"retrieved_name\": \"getInstances\", \"raw_body\": \"@Override public Flux<Ser(...TRUNCATED) | "[{\"choose\": {\"retrieved_name\": \"options\", \"raw_body\": \"@Override public RequestHeadersUriS(...TRUNCATED) | [
91,
34,
103,
101,
116,
73,
110,
115,
116,
97,
110,
99,
101,
34,
44,
34,
111,
110,
83,
116,
97,
114,
116,
34,
44,
34,
102,
111,
114,
69,
97,
99,
104,
34,
44,
34,
99,
104,
111,
111,
115,
101,
34,
93
] | [
91,
34,
99,
104,
111,
111,
115,
101,
34,
93
] | "WyJSZWFjdG9yTG9hZEJhbGFuY2VyPFNlcnZpY2VJbnN0YW5jZT4iLCJTZXQ8TG9hZEJhbGFuY2VyTGlmZWN5Y2xlPiIsIlJlcXV(...TRUNCATED) | "/** \n * A {@link GlobalFilter} that allows passing the {@code} instanceId) of the{@link ServiceIn(...TRUNCATED) | |
PlexPt_chatgpt-java | chatgpt-java/src/main/java/com/plexpt/chatgpt/Images.java | Images | init | "class Images {\n /**\n * keys\n */\n private String apiKey;\n\n private List<Strin(...TRUNCATED) | "\n OkHttpClient.Builder client = new OkHttpClient.Builder();\n client.addInterceptor((...TRUNCATED) | "\n this.apiClient = new Api(this.apiKey,this.apiKeyList,this.apiHost,this.okHttpClient,this.(...TRUNCATED) | [
91,
34,
80,
114,
111,
120,
121,
34,
44,
34,
79,
107,
72,
116,
116,
112,
67,
108,
105,
101,
110,
116,
34,
44,
34,
76,
105,
115,
116,
60,
83,
116,
114,
105,
110,
103,
62,
34,
44,
34,
65,
112,
105,
34,
93
] | [
91,
93
] | "WyJCYXNlUmVzcG9uc2UiLCJPa0h0dHBDbGllbnQuQnVpbGRlciIsIkxpc3Q8U3RyaW5nPiIsIlJlcXVlc3QiLCJBcGkiLCJSZXN(...TRUNCATED) | "WyJib2R5IiwiYWRkQ29udmVydGVyRmFjdG9yeSIsInBhcnNlT2JqZWN0IiwiY3JlYXRlIiwibWV0aG9kIiwibmV3QnVpbGRlciI(...TRUNCATED) | "/** \n * @author plexpt\n */\n@Data @JsonIgnoreProperties(ignoreUnknown=true) public class BaseResp(...TRUNCATED) | "public class BaseResponse<T> {\n private String object;\n private List<T> data;\n private Error (...TRUNCATED) | "{\"types\": [{\"BaseResponse\": \"BaseResponse\"}, {\"OkHttpClient.Builder\": \"ChatContextHolder\"(...TRUNCATED) | "[{\"BaseResponse\": {\"retrieved_name\": \"BaseResponse\", \"raw_body\": \"/** \\n * @author plexpt(...TRUNCATED) | "[{\"body\": {\"retrieved_name\": \"main\", \"raw_body\": \"public static void main(String[] args){\(...TRUNCATED) | "[{\"init\": {\"retrieved_name\": \"init\", \"raw_body\": \"/** \\n * \\u521d\\u59cb\\u5316\\n */\\n(...TRUNCATED) | "WyJib2R5IiwiYWRkQ29udmVydGVyRmFjdG9yeSIsInBhcnNlT2JqZWN0IiwiY3JlYXRlIiwibWV0aG9kIiwibmV3QnVpbGRlciI(...TRUNCATED) | [
91,
34,
105,
110,
105,
116,
34,
93
] | "WyJCYXNlUmVzcG9uc2UiLCJPa0h0dHBDbGllbnQuQnVpbGRlciIsIkxpc3Q8U3RyaW5nPiIsIlJlcXVlc3QiLCJBcGkiLCJSZXN(...TRUNCATED) | "/** \n * @author plexpt\n */\n@Data @JsonIgnoreProperties(ignoreUnknown=true) public class BaseResp(...TRUNCATED) |
End of preview. Expand in Data Studio
No dataset card yet
- Downloads last month
- 12