Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for XClass (0.08 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskGroovyJavaJointIncrementalCompilationIntegrationTest.groovy

            sourceWithFileSuffixForProject("java", "impl", "class F {}")
            sourceWithFileSuffixForProject("groovy", "impl", "class G {}")
            run ":impl:compileGroovy"
    
            when:
            aClass.text = "class A { void m1() {}; void m2() {}; }"
            eClass.text = "class E { boolean isCacheEnabled = D.cache; garbage }"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/deployment/custom-class.yaml

    Ben Leggett <******@****.***> 1714764582 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

            fun getProperty(kClass: KClass<*>, name: String) = properties[kClass]?.get(name)
            fun getPropertyType(kClass: KClass<*>, name: String) = propertyOriginalTypes[kClass]?.get(name)
        }
    
        private
        fun createPreIndex(types: Iterable<KClass<*>>): PreIndex {
            val allTypesToVisit = buildSet {
                fun visit(type: KClass<*>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/ArgumentsConverterGenerator.kt

    import java.io.File
    import kotlin.reflect.KClass
    import kotlin.reflect.full.createType
    
    private const val CONVERT_ARGUMENT = "convertArgument"
    
    object ArgumentsConverterGenerator {
        fun render(file: File, packageName: String) {
            val convertArgumentFunctionCallConversion = HLFunctionCallConversion(
                "$CONVERT_ARGUMENT({0}, firSymbolBuilder)",
                callType = Any::class.createType(nullable = true)
            )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromLibrary.kt

    // MODULE_KIND: LibraryBinary
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public static class RClass {}
    }
    
    // MODULE: main(lib)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon.RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 366 bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/TypeStringFormatter.java

    import java.lang.reflect.Type;
    
    class TypeStringFormatter {
    
        static String format(Type type) {
            if (type instanceof Class) {
                Class<?> aClass = (Class) type;
                Class<?> enclosingClass = aClass.getEnclosingClass();
                if (enclosingClass != null) {
                    return format(enclosingClass) + "$" + aClass.getSimpleName();
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/pointers/SymbolPointerExceptions.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolKind
    import kotlin.reflect.KClass
    
    public class CanNotCreateSymbolPointerForLocalLibraryDeclarationException(identifier: String) :
        IllegalStateException("Could not create a symbol pointer for local symbol $identifier") {
        public constructor(klass: KClass<*>) : this(klass.java.simpleName)
    }
    
    public class UnsupportedSymbolKind(identifier: String, kind: KaSymbolKind) : IllegalStateException(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 908 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/schemaFromTypes.kt

    import kotlin.reflect.KCallable
    import kotlin.reflect.KClass
    import kotlin.reflect.KFunction
    import kotlin.reflect.KVisibility
    
    
    fun schemaFromTypes(
        topLevelReceiver: KClass<*>,
        types: Iterable<KClass<*>>,
        externalFunctions: List<KFunction<*>> = emptyList(),
        externalObjects: Map<FqName, KClass<*>> = emptyMap(),
        defaultImports: List<FqName> = emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/mappingToJvm/AccessorTest.kt

            override fun memberFunctions(kClass: KClass<*>, preIndex: DataSchemaBuilder.PreIndex): Iterable<SchemaMemberFunction> =
                if (kClass == MyReceiver::class) {
                    listOf(
                        DefaultDataMemberFunction(
                            MyReceiver::class.toDataTypeRef(),
                            "configureCustomInstance",
                            emptyList(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/KotlinBuildScriptPatternTest.kt

            checkScriptRecognizedByLegacy(KotlinInitScript::class, ScriptType.INIT)
        }
    
        private
        fun checkScriptRecognizedBy(scriptParserClass: KClass<*>, supportedScriptType: ScriptType) {
            assertScriptFilePatternMatches(filePathPatternFrom(scriptParserClass), supportedScriptType)
        }
    
        private
        fun checkScriptRecognizedByLegacy(scriptParserClass: KClass<*>, supportedScriptType: ScriptType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top