Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,938 for classy3 (0.12 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinCompositeDeclarationProvider.kt

        override fun getClassLikeDeclarationByClassId(classId: ClassId): KtClassLikeDeclaration? {
            return providers.firstNotNullOfOrNull { it.getClassLikeDeclarationByClassId(classId) }
        }
    
        override fun getAllClassesByClassId(classId: ClassId): Collection<KtClassOrObject> {
            return providers.flatMap { it.getAllClassesByClassId(classId) }
        }
    
        override fun getAllTypeAliasesByClassId(classId: ClassId): Collection<KtTypeAlias> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirSyntheticFunctionInterfaceSourceProvider.kt

            val classId = function.containingClassLookupTag()?.classId ?: return null
            val classOrObject = classByClassId(classId, function.llFirSession.ktModule) ?: return null
            return classOrObject.declarations.singleOrNull()
        }
    
        private fun provideSourceForFunctionClass(klass: FirClass): PsiElement? {
            return classByClassId(klass.symbol.classId, klass.llFirSession.ktModule)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/InMemoryTestResultsProvider.java

            withReader(new Action<TestOutputStore.Reader>() {
                @Override
                public void execute(TestOutputStore.Reader reader) {
                    reader.writeNonTestOutput(classId, destination, writer);
                }
            });
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. src/runtime/metrics/description.go

    		Name: "/cpu/classes/gc/mark/dedicated:cpu-seconds",
    		Description: "Estimated total CPU time spent performing GC tasks on " +
    			"processors (as defined by GOMAXPROCS) dedicated to those tasks. " +
    			"This metric is an overestimate, and not directly comparable to " +
    			"system CPU time measurements. Compare only with other /cpu/classes " +
    			"metrics.",
    		Kind:       KindFloat64,
    		Cumulative: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/junit/result/BinaryResultBackedTestResultsProvider.java

        }
    
        @Override
        public boolean hasOutput(final long classId, final TestOutputEvent.Destination destination) {
            final boolean[] hasOutput = new boolean[1];
            withReader(new Action<TestOutputStore.Reader>() {
                @Override
                public void execute(TestOutputStore.Reader reader) {
                    hasOutput[0] = reader.hasOutput(classId, destination);
                }
            });
            return hasOutput[0];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationQualifierRenderer.kt

                annotationRenderer: KaAnnotationRenderer,
                printer: PrettyPrinter,
            ) {
                printer {
                    val classId = annotation.classId
                    if (classId != null) {
                        append(classId.asSingleFqName().render())
                    } else {
                        append("ERROR_ANNOTATION")
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/antMigration/importBuild/kotlin/build.xml

        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <target name="cleanAll">
            <delete dir="${build.dir}"/>
        </target>
    
        <target name="prepare">
            <tstamp>
                <format property="now" pattern="yyyy-MM-dd hh:mm:ss"/>
            </tstamp>
        </target>
    
        <target name="build" depends="prepare">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 958 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    // For each J in [0, len(classes)):
    //  1. `classes[J].lowerBound <= allocs[J] <= classes[J].upperBound` and
    //  2. exactly one of the following is true:
    //     2a. `allocs[J] == fairProp * classes[J].target`,
    //     2b. `allocs[J] == classes[J].lowerBound && classes[J].lowerBound > fairProp * classes[J].target`, or
    //     2c. `allocs[J] == classes[J].upperBound && classes[J].upperBound < fairProp * classes[J].target`.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/antMigration/multiProject/groovy/web/build.xml

        <property name="build.dir" value="target"/>
        <property name="classes.dir" value="${build.dir}/classes"/>
    
        <!-- tag::build-required[] -->
        <target name="buildRequiredProjects">
            <ant dir="${root.dir}/util" target="build"/>  <!--1-->
        </target>
        <!-- end::build-required[] -->
    
        <target name="compile" depends="buildRequiredProjects">
            <mkdir dir="${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 922 bytes
    - Viewed (0)
  10. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorInnerClassTest.groovy

            extractedOuter.classes.length == 0
        }
    
        def "should not keep anonymous local classes"() {
            given:
            def api = toApi 'A': '''
                public class A {
                   public void foo() {
                       class Person {}
                   }
                }
            '''
    
            when:
            def outer = api.classes.A
            def inner = api.classes['A$1Person']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top