Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,938 for classy3 (0.24 sec)

  1. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorAnnotationsTest.groovy

                        String value();
                    }
                '''
            ])
    
            when:
            def clazz = api.classes.A
            def annotations = clazz.clazz.annotations
            def annClazz = api.classes.Ann
            def subAnnClazz = api.classes.SubAnn
    
            api.extractAndLoadApiClassFrom(subAnnClazz)
            def extractedAnn = api.extractAndLoadApiClassFrom(annClazz)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/runtime/mksizeclasses.go

    		// use just this size instead of having two
    		// different sizes.
    		if len(classes) > 1 && npages == classes[len(classes)-1].npages && allocsize/size == allocsize/classes[len(classes)-1].size {
    			classes[len(classes)-1].size = size
    			continue
    		}
    		classes = append(classes, class{size: size, npages: npages})
    	}
    
    	// Increase object sizes if we can fit the same number of larger objects
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinEmptyDeclarationProvider.kt

    import org.jetbrains.kotlin.name.ClassId
    import org.jetbrains.kotlin.name.FqName
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.psi.*
    
    public object KotlinEmptyDeclarationProvider : KotlinDeclarationProvider() {
        override fun getClassLikeDeclarationByClassId(classId: ClassId): KtClassLikeDeclaration? = null
        override fun getAllClassesByClassId(classId: ClassId): List<KtClassOrObject> = emptyList()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

                            attributes { it.attribute(artifactType, 'classes') }
                        }
                        inputs.files view.files
                        doLast {
                            assert view.files.collect { it.name } == ['lib.classes', 'lib-util.classes', 'ui.classes', 'some-classes-1.0.classes']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

        }
    
        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, true, destination, writer)
        }
    
        void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            doWrite(classId, 0, false, destination, writer)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/AggregateTestResultsProvider.java

        @Override
        public void writeNonTestOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
            for (DelegateProvider delegateProvider : classOutputProviders.get(classId)) {
                delegateProvider.provider.writeNonTestOutput(delegateProvider.id, destination, writer);
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. platforms/jvm/language-groovy/src/test/groovy/org/gradle/api/internal/tasks/compile/GroovyCompileTransformingClassLoaderTest.groovy

            annotation.classes() == [] as Class[]
        }
    
        def "loads class annotated with transformer class"() {
            expect:
            def cl = loader.loadClass(WithClassSpecified.name)
            def annotation = cl.getAnnotation(classAnnotation)
            annotation.value() == [Transformer.name] as String[]
            annotation.classes() == [] as Class[]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/jvm/java-compiler-plugin/src/test/groovy/com/gradle/internal/compiler/java/listeners/ConstantsCollectorTest.groovy

        def "inherited constants points to original class"() {
            given:
            String clazz = """
    class A {
        static final String STATIC_FINAL_FIELD = "hello";
    }
    class B extends A {
    }
    class C {
        static final String STATIC_FINAL_FIELD = B.STATIC_FINAL_FIELD;
    }
    """
            List<File> classes = toSourceFile(clazz)
    
            when:
            compiler.compile(classes)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:06:26 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/stored.rules

    #
    #Fri Jan 19 18:01:32 EST 2024
    classes\ that\ are\ Gradle\ public\ API\ should\ have\ accessors\ with\ symmetrical\ @Nullable\ annotations=public-api-symmetrical-accessors-nullability.txt
    classes\ that\ are\ Gradle\ public\ API\ should\ not\ have\ direct\ super-class\ or\ interface\ that\ are\ Gradle\ Internal\ API=public-api-not-extends-internal-types.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/annotations/KtFirAnnotationListForDeclaration.kt

        }
    
        override fun contains(classId: ClassId): Boolean = withValidityAssertion {
            return hasAnnotation(firSymbol, classId, useSiteSession)
        }
    
        override fun get(classId: ClassId): List<KaAnnotation> = withValidityAssertion {
            return annotationsByClassId(firSymbol, classId, builder)
        }
    
        override val classIds: Collection<ClassId>
            get() = withValidityAssertion {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top