Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 54 for ClassAnalysis (0.17 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/cache/GeneralCompileCaches.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.compile.incremental.cache;
    
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassAnalysis;
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassSetAnalysisData;
    import org.gradle.cache.Cache;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * The build scoped compile caches.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/analyzer/ClassDependenciesAnalyzer.java

    package org.gradle.api.internal.tasks.compile.incremental.analyzer;
    
    import org.gradle.api.file.FileTreeElement;
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassAnalysis;
    import org.gradle.internal.hash.HashCode;
    
    public interface ClassDependenciesAnalyzer {
        ClassAnalysis getClassAnalysis(HashCode classFileHash, FileTreeElement classFile);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 984 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

    import org.objectweb.asm.signature.SignatureVisitor;
    import org.gradle.api.internal.cache.StringInterner;
    import org.gradle.api.internal.tasks.compile.incremental.deps.ClassAnalysis;
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.objectweb.asm.ClassReader;
    import org.objectweb.asm.ClassVisitor;
    import org.objectweb.asm.Label;
    import org.objectweb.asm.ModuleVisitor;
    import org.objectweb.asm.Opcodes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classanalysis/AsmConstants.java

     * 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 org.gradle.internal.classanalysis;
    
    import org.objectweb.asm.Opcodes;
    
    public class AsmConstants {
        public static final int ASM_LEVEL = Opcodes.ASM9;
    
        /**
         * The minimal version of Java for which ASM understands the bytecodes.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:43:28 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    import gradlebuild.basics.classanalysis.Attributes.artifactType
    import gradlebuild.basics.classanalysis.Attributes.minified
    import gradlebuild.basics.transforms.Minify
    
    /**
     * A map from artifact name to a set of class name prefixes that should be kept.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  6. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassAnalysisException.kt

     * 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 gradlebuild.basics.classanalysis
    
    import org.gradle.internal.exceptions.Contextual
    
    
    @Contextual
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 821 bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassDetector.java

     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.testing.testng;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.gradle.api.internal.tasks.testing.detection.TestClassVisitor;
    import org.gradle.api.internal.tasks.testing.detection.TestFrameworkDetector;
    import org.objectweb.asm.AnnotationVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/ClassFile.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file
    
    import org.gradle.internal.classanalysis.AsmConstants
    import org.objectweb.asm.ClassReader
    import org.objectweb.asm.ClassVisitor
    import org.objectweb.asm.Label
    import org.objectweb.asm.MethodVisitor
    
    class ClassFile {
        boolean hasSourceFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.classanalysis.AsmConstants;
    import org.gradle.internal.classloader.TransformReplacer.MarkerResource;
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/test/SomeClass.java

        private Set<String> stuff(HashMap<String, String> map) {
            System.out.println(new Foo());
            return new HashSet<String>();
        }
    
        private class Foo {
            // Hint: this field won't appear in the ClassAnalysis for SomeClass
            public AccessedFromPrivateClassPublicField anotherField;
    
            public String toString() {
                return "" + new AccessedFromPrivateClass();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top