text stringlengths 24 1.04M | metadata stringlengths 233 497 |
|---|---|
### File: spring-context/src/test/kotlin/org/springframework/ui/ModelMapExtensionsTests.kt
/*
* Copyright 2002-2019 the original author or authors
*
* 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 Li... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Kotlin", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/kotlin/org/springframework/ui/ModelMapExtensionsTests.kt", "license": "apache-2.0... |
### File: spring-context/src/test/resources/org/springframework/context/groovy/applicationContext-error.groovy
package org.springframework.context.groovy
beans = {
framework String, 'Grails'
foo String, 'hello'
}
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/context/groovy/applicationContext-error.groovy", "l... |
### File: spring-context/src/test/resources/org/springframework/context/groovy/applicationContext.groovy
package org.springframework.context.groovy
beans {
framework String, 'Grails'
foo String, 'hello'
}
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/context/groovy/applicationContext.groovy", "license... |
### File: spring-context/src/test/resources/org/springframework/context/groovy/applicationContext2.groovy
package org.springframework.context.groovy
beans {
company String, 'SpringSource'
}
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/context/groovy/applicationContext2.groovy", "licens... |
### File: spring-context/src/test/resources/org/springframework/scripting/config/TestBean.groovy
package org.springframework.scripting.config
class TestBean implements ITestBean {
ITestBean otherBean
boolean initialized
boolean destroyed
void setOtherBean(ITestBean otherBean) {
this.otherBean = otherBean;
}... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/config/TestBean.groovy", "license": "apac... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/Calculator.groovy
package org.springframework.scripting.groovy;
import org.springframework.scripting.Calculator
class GroovyCalculator implements Calculator {
@Override
int add(int x, int y) {
return x + y;
}
}
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/Calculator.groovy", "license": "ap... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/CallCounter.groovy
package org.springframework.scripting.groovy;
import org.springframework.scripting.CallCounter;
class GroovyCallCounter implements CallCounter {
int count = -100;
void init() {
count = 0;
}
@Override
void bef... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/CallCounter.groovy", "license": "a... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/DelegatingCalculator.groovy
package org.springframework.scripting.groovy;
import org.springframework.scripting.Calculator
class DelegatingCalculator implements Calculator {
def Calculator delegate;
@Override
int add(int x, int y) {
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/DelegatingCalculator.groovy", "lic... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/Messenger.groovy
package org.springframework.scripting.groovy;
import org.springframework.stereotype.Component;
@Component
class GroovyMessenger2 extends ConcreteMessenger {
}
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/Messenger.groovy", "license": "apa... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/MessengerInstance.groovy
package org.springframework.scripting.groovy;
import org.springframework.scripting.Messenger
class GroovyMessenger implements Messenger {
GroovyMessenger() {
println "GroovyMessenger"
}
def String message;... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/MessengerInstance.groovy", "licens... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/ScriptBean.groovy
package org.springframework.scripting.groovy;
import org.springframework.context.ApplicationContext
import org.springframework.context.ApplicationContextAware
import org.springframework.scripting.ContextScriptBean
import... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/ScriptBean.groovy", "license": "ap... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/TestFactoryBean.groovy
package org.springframework.scripting.groovy;
import org.springframework.beans.factory.FactoryBean
class TestFactoryBean implements FactoryBean {
@Override
public boolean isSingleton() {
true
}
@Override
p... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/TestFactoryBean.groovy", "license"... |
### File: spring-context/src/test/resources/org/springframework/scripting/groovy/simple.groovy
package org.springframework.scripting.groovy;
return 3 * 2
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Groovy", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/groovy/simple.groovy", "license": "apache... |
### File: spring-context/src/test/resources/org/springframework/scripting/support/Messenger.js
function getMessage() { return "Hello World!" }
| {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "JavaScript", "repo_name": "vincentjava/spring-framework", "path": "spring-context/src/test/resources/org/springframework/scripting/support/Messenger.js", "license": "ap... |
### File: spring-core/kotlin-coroutines/src/main/kotlin/org/springframework/core/CoroutinesUtils.kt
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Kotlin", "repo_name": "vincentjava/spring-framework", "path": "spring-core/kotlin-coroutines/src/main/kotlin/org/springframework/core/CoroutinesUtils.kt", "license": "a... |
### File: spring-core/src/main/java/org/springframework/asm/AnnotationVisitor.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are per... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/AnnotationVisitor.java", "license": "apache-2.0", "size":... |
### File: spring-core/src/main/java/org/springframework/asm/AnnotationWriter.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are perm... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/AnnotationWriter.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/asm/Attribute.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted p... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Attribute.java", "license": "apache-2.0", "size": 16850} |
### File: spring-core/src/main/java/org/springframework/asm/ByteVector.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ByteVector.java", "license": "apache-2.0", "size": 13242} |
### File: spring-core/src/main/java/org/springframework/asm/ClassReader.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ClassReader.java", "license": "apache-2.0", "size": 16178... |
### File: spring-core/src/main/java/org/springframework/asm/ClassTooLargeException.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, ar... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ClassTooLargeException.java", "license": "apache-2.0", "s... |
### File: spring-core/src/main/java/org/springframework/asm/ClassVisitor.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitte... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ClassVisitor.java", "license": "apache-2.0", "size": 1428... |
### File: spring-core/src/main/java/org/springframework/asm/ClassWriter.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ClassWriter.java", "license": "apache-2.0", "size": 41502... |
### File: spring-core/src/main/java/org/springframework/asm/ConstantDynamic.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permi... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ConstantDynamic.java", "license": "apache-2.0", "size": 6... |
### File: spring-core/src/main/java/org/springframework/asm/Constants.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted p... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Constants.java", "license": "apache-2.0", "size": 8425} |
### File: spring-core/src/main/java/org/springframework/asm/Context.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted pro... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Context.java", "license": "apache-2.0", "size": 5637} |
### File: spring-core/src/main/java/org/springframework/asm/CurrentFrame.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitte... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/CurrentFrame.java", "license": "apache-2.0", "size": 2605... |
### File: spring-core/src/main/java/org/springframework/asm/Edge.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provid... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Edge.java", "license": "apache-2.0", "size": 3949} |
### File: spring-core/src/main/java/org/springframework/asm/FieldVisitor.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitte... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/FieldVisitor.java", "license": "apache-2.0", "size": 5482... |
### File: spring-core/src/main/java/org/springframework/asm/FieldWriter.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/FieldWriter.java", "license": "apache-2.0", "size": 11452... |
### File: spring-core/src/main/java/org/springframework/asm/Frame.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provi... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Frame.java", "license": "apache-2.0", "size": 58584} |
### File: spring-core/src/main/java/org/springframework/asm/Handle.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted prov... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Handle.java", "license": "apache-2.0", "size": 7248} |
### File: spring-core/src/main/java/org/springframework/asm/Handler.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted pro... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Handler.java", "license": "apache-2.0", "size": 8312} |
### File: spring-core/src/main/java/org/springframework/asm/Label.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provi... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Label.java", "license": "apache-2.0", "size": 30567} |
### File: spring-core/src/main/java/org/springframework/asm/MethodTooLargeException.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, a... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/MethodTooLargeException.java", "license": "apache-2.0", "... |
### File: spring-core/src/main/java/org/springframework/asm/MethodVisitor.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitt... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/MethodVisitor.java", "license": "apache-2.0", "size": 351... |
### File: spring-core/src/main/java/org/springframework/asm/MethodWriter.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitte... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/MethodWriter.java", "license": "apache-2.0", "size": 1016... |
### File: spring-core/src/main/java/org/springframework/asm/ModuleVisitor.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitt... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ModuleVisitor.java", "license": "apache-2.0", "size": 643... |
### File: spring-core/src/main/java/org/springframework/asm/ModuleWriter.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitte... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/ModuleWriter.java", "license": "apache-2.0", "size": 9603... |
### File: spring-core/src/main/java/org/springframework/asm/Opcodes.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted pro... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Opcodes.java", "license": "apache-2.0", "size": 19862} |
### File: spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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
*... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java", "license": "apache-2.0", "size": 126... |
### File: spring-core/src/main/java/org/springframework/asm/Symbol.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted prov... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Symbol.java", "license": "apache-2.0", "size": 10365} |
### File: spring-core/src/main/java/org/springframework/asm/SymbolTable.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/SymbolTable.java", "license": "apache-2.0", "size": 55114... |
### File: spring-core/src/main/java/org/springframework/asm/Type.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provid... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/Type.java", "license": "apache-2.0", "size": 32360} |
### File: spring-core/src/main/java/org/springframework/asm/TypePath.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted pr... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/TypePath.java", "license": "apache-2.0", "size": 7731} |
### File: spring-core/src/main/java/org/springframework/asm/TypeReference.java
// ASM: a very small and fast Java bytecode manipulation framework
// Copyright (c) 2000-2011 INRIA, France Telecom
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitt... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/TypeReference.java", "license": "apache-2.0", "size": 173... |
### File: spring-core/src/main/java/org/springframework/asm/package-info.java
/**
* Spring's repackaging of
* <a href="https://gitlab.ow2.org/asm/asm">ASM 7.0</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on ASM at... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/asm/package-info.java", "license": "apache-2.0", "size": 461} |
### File: spring-core/src/main/java/org/springframework/cglib/SpringCglibInfo.java
/*
* Copyright 2002-2014 the original author or authors.
*
* 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 a... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/SpringCglibInfo.java", "license": "apache-2.0", "size":... |
### File: spring-core/src/main/java/org/springframework/cglib/core/AbstractClassGenerator.java
/*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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 t... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/AbstractClassGenerator.java", "license": "apache-2... |
### File: spring-core/src/main/java/org/springframework/cglib/core/AsmApi.java
/*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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
*... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/AsmApi.java", "license": "apache-2.0", "size": 879... |
### File: spring-core/src/main/java/org/springframework/cglib/core/ClassLoaderAwareGeneratorStrategy.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/ClassLoaderAwareGeneratorStrategy.java", "license"... |
### File: spring-core/src/main/java/org/springframework/cglib/core/KeyFactory.java
/*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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 a... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/KeyFactory.java", "license": "apache-2.0", "size":... |
### File: spring-core/src/main/java/org/springframework/cglib/core/ReflectUtils.java
/*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/ReflectUtils.java", "license": "apache-2.0", "size... |
### File: spring-core/src/main/java/org/springframework/cglib/core/SpringNamingPolicy.java
/*
* Copyright 2002-2014 the original author or authors.
*
* 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 L... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/SpringNamingPolicy.java", "license": "apache-2.0",... |
### File: spring-core/src/main/java/org/springframework/cglib/core/package-info.java
/**
* Spring's repackaging of the
* <a href="http://cglib.sourceforge.net">CGLIB</a> core package
* (for internal use only).
*
* <p>As this repackaging happens at the class file level, sources
* and javadocs are not available her... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/core/package-info.java", "license": "apache-2.0", "size... |
### File: spring-core/src/main/java/org/springframework/cglib/package-info.java
/**
* Spring's repackaging of
* <a href="https://github.com/cglib/cglib">CGLIB 3.3</a>
* (with Spring-specific patches; for internal use only).
*
* <p>This repackaging technique avoids any potential conflicts with
* dependencies on CG... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/package-info.java", "license": "apache-2.0", "size": 46... |
### File: spring-core/src/main/java/org/springframework/cglib/proxy/Enhancer.java
/*
* Copyright 2002,2003,2004 The Apache Software Foundation
*
* 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 Licen... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/proxy/Enhancer.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/cglib/proxy/MethodProxy.java
/*
* Copyright 2003,2004 The Apache Software Foundation
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/proxy/MethodProxy.java", "license": "apache-2.0", "size... |
### File: spring-core/src/main/java/org/springframework/cglib/proxy/package-info.java
/**
* Spring's repackaging of the
* <a href="http://cglib.sourceforge.net">CGLIB</a> proxy package
* (for internal use only).
*
* <p>As this repackaging happens at the class file level, sources
* and javadocs are not available h... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/cglib/proxy/package-info.java", "license": "apache-2.0", "siz... |
### File: spring-core/src/main/java/org/springframework/core/AliasRegistry.java
/*
* Copyright 2002-2015 the original author or authors.
*
* 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
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/AliasRegistry.java", "license": "apache-2.0", "size": 18... |
### File: spring-core/src/main/java/org/springframework/core/AttributeAccessor.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/AttributeAccessor.java", "license": "apache-2.0", "size"... |
### File: spring-core/src/main/java/org/springframework/core/AttributeAccessorSupport.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 L... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/AttributeAccessorSupport.java", "license": "apache-2.0",... |
### File: spring-core/src/main/java/org/springframework/core/BridgeMethodResolver.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 Licen... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/BridgeMethodResolver.java", "license": "apache-2.0", "si... |
### File: spring-core/src/main/java/org/springframework/core/CollectionFactory.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/CollectionFactory.java", "license": "apache-2.0", "size"... |
### File: spring-core/src/main/java/org/springframework/core/ConfigurableObjectInputStream.java
/*
* Copyright 2002-2016 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ConfigurableObjectInputStream.java", "license": "apache-... |
### File: spring-core/src/main/java/org/springframework/core/Constants.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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
*
*... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/Constants.java", "license": "apache-2.0", "size": 12821} |
### File: spring-core/src/main/java/org/springframework/core/Conventions.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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
*
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/Conventions.java", "license": "apache-2.0", "size": 1150... |
### File: spring-core/src/main/java/org/springframework/core/DecoratingClassLoader.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 Lice... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/DecoratingClassLoader.java", "license": "apache-2.0", "s... |
### File: spring-core/src/main/java/org/springframework/core/DecoratingProxy.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/DecoratingProxy.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/core/DefaultParameterNameDiscoverer.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/DefaultParameterNameDiscoverer.java", "license": "apache... |
### File: spring-core/src/main/java/org/springframework/core/ExceptionDepthComparator.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 L... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ExceptionDepthComparator.java", "license": "apache-2.0",... |
### File: spring-core/src/main/java/org/springframework/core/GenericTypeResolver.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 Licens... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/GenericTypeResolver.java", "license": "apache-2.0", "siz... |
### File: spring-core/src/main/java/org/springframework/core/GraalDetector.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/GraalDetector.java", "license": "apache-2.0", "size": 12... |
### File: spring-core/src/main/java/org/springframework/core/InfrastructureProxy.java
/*
* Copyright 2002-2012 the original author or authors.
*
* 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 Licens... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/InfrastructureProxy.java", "license": "apache-2.0", "siz... |
### File: spring-core/src/main/java/org/springframework/core/KotlinDetector.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/KotlinDetector.java", "license": "apache-2.0", "size": 2... |
### File: spring-core/src/main/java/org/springframework/core/KotlinReflectionParameterNameDiscoverer.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/KotlinReflectionParameterNameDiscoverer.java", "license"... |
### File: spring-core/src/main/java/org/springframework/core/LocalVariableTableParameterNameDiscoverer.java
/*
* Copyright 2002-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtai... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/LocalVariableTableParameterNameDiscoverer.java", "licens... |
### File: spring-core/src/main/java/org/springframework/core/MethodClassKey.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/MethodClassKey.java", "license": "apache-2.0", "size": 2... |
### File: spring-core/src/main/java/org/springframework/core/MethodIntrospector.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/MethodIntrospector.java", "license": "apache-2.0", "size... |
### File: spring-core/src/main/java/org/springframework/core/MethodParameter.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/MethodParameter.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/core/NamedInheritableThreadLocal.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 th... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NamedInheritableThreadLocal.java", "license": "apache-2.... |
### File: spring-core/src/main/java/org/springframework/core/NamedThreadLocal.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 a... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NamedThreadLocal.java", "license": "apache-2.0", "size":... |
### File: spring-core/src/main/java/org/springframework/core/NestedCheckedException.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 Lic... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NestedCheckedException.java", "license": "apache-2.0", "... |
### File: spring-core/src/main/java/org/springframework/core/NestedExceptionUtils.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 Licen... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NestedExceptionUtils.java", "license": "apache-2.0", "si... |
### File: spring-core/src/main/java/org/springframework/core/NestedIOException.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NestedIOException.java", "license": "apache-2.0", "size"... |
### File: spring-core/src/main/java/org/springframework/core/NestedRuntimeException.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 Lic... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/NestedRuntimeException.java", "license": "apache-2.0", "... |
### File: spring-core/src/main/java/org/springframework/core/OrderComparator.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/OrderComparator.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/core/Ordered.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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
*
* ... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/Ordered.java", "license": "apache-2.0", "size": 2400} |
### File: spring-core/src/main/java/org/springframework/core/OverridingClassLoader.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 Lice... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/OverridingClassLoader.java", "license": "apache-2.0", "s... |
### File: spring-core/src/main/java/org/springframework/core/ParameterNameDiscoverer.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 Li... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ParameterNameDiscoverer.java", "license": "apache-2.0", ... |
### File: spring-core/src/main/java/org/springframework/core/ParameterizedTypeReference.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ParameterizedTypeReference.java", "license": "apache-2.0... |
### File: spring-core/src/main/java/org/springframework/core/PrioritizedParameterNameDiscoverer.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 cop... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/PrioritizedParameterNameDiscoverer.java", "license": "ap... |
### File: spring-core/src/main/java/org/springframework/core/PriorityOrdered.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/PriorityOrdered.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/core/ReactiveAdapter.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ReactiveAdapter.java", "license": "apache-2.0", "size": ... |
### File: spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 Li... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ReactiveAdapterRegistry.java", "license": "apache-2.0", ... |
### File: spring-core/src/main/java/org/springframework/core/ReactiveTypeDescriptor.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 Lic... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ReactiveTypeDescriptor.java", "license": "apache-2.0", "... |
### File: spring-core/src/main/java/org/springframework/core/ResolvableType.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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
... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ResolvableType.java", "license": "apache-2.0", "size": 5... |
### File: spring-core/src/main/java/org/springframework/core/ResolvableTypeProvider.java
/*
* Copyright 2002-2017 the original author or authors.
*
* 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 Lic... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/ResolvableTypeProvider.java", "license": "apache-2.0", "... |
### File: spring-core/src/main/java/org/springframework/core/SerializableTypeWrapper.java
/*
* Copyright 2002-2019 the original author or authors.
*
* 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 Li... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/SerializableTypeWrapper.java", "license": "apache-2.0", ... |
### File: spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java
/*
* Copyright 2002-2018 the original author or authors.
*
* 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 Licens... | {"idx": "gitee_code", "domain": "code", "domain2": "gitee-permissive", "header_footer": "", "lang": "en", "source": "gitee_code-0.jsonl", "prog_lang": "Java", "repo_name": "vincentjava/spring-framework", "path": "spring-core/src/main/java/org/springframework/core/SimpleAliasRegistry.java", "license": "apache-2.0", "siz... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.