Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for rclass (0.24 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Logging.kt

    import org.gradle.internal.configuration.problems.StructuredMessageBuilder
    import org.gradle.internal.configuration.problems.propertyDescriptionFor
    
    import kotlin.reflect.KClass
    
    
    fun MutableIsolateContext.reportUnsupportedFieldType(
        unsupportedType: KClass<*>,
        action: String,
        fieldName: String,
        fieldValue: Any? = null
    ) {
        withPropertyTrace(PropertyKind.Field, fieldName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/end2end/control_flow_v1.pbtxt

        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@Placeholder"
          }
        }
      }
    }
    node {
      name: "cond/MatMul/Switch_1"
      op: "Switch"
      input: "Const"
      input: "cond/pred_id"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
            s: "loc:@Const"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 23 21:23:31 UTC 2020
    - 3.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/verify_for_export.mlir

    module {
      // CHECK-LABEL: func @passesSingleIslandOp
      func.func @passesSingleIslandOp() {
        // CHECK: _class = ["loc:@class"]
        tf_executor.graph {
          %c, %control0 = tf_executor.island wraps "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
          %a, %control1 = tf_executor.island wraps "tf.A"() {_class = ["loc:@class"]} : () -> (tensor<2xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 27 17:36:06 UTC 2023
    - 885 bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/test/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/AccessorTypePrecedenceTest.kt

                Base::class,
                Core::class
            )
        }
    
        private
        inline fun <reified T> assertAccessorTypePrecedenceOf(vararg types: KClass<*>) {
            assertTypeSequence(
                T::class.java.accessorTypePrecedenceSequence(),
                *types
            )
        }
    
        private
        fun assertTypeSequence(sequence: Sequence<Class<*>>, vararg types: KClass<*>) {
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/util/DiagnosticUtils.kt

    import kotlin.reflect.KClass
    
    class KaNonBoundToPsiErrorDiagnostic(
        override val factoryName: String,
        override val defaultMessage: String,
        override val token: KaLifetimeToken,
    ) : KaDiagnostic {
        override val severity: KaSeverity
            get() = withValidityAssertion { KaSeverity.ERROR }
    
        override val diagnosticClass: KClass<*>
            get() = KaNonBoundToPsiErrorDiagnostic::class
    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluationSchema/SchemaComponents.kt

    import org.gradle.internal.declarativedsl.schemaBuilder.PropertyExtractor
    import org.gradle.internal.declarativedsl.schemaBuilder.TypeDiscovery
    import org.gradle.internal.declarativedsl.schemaBuilder.schemaFromTypes
    import kotlin.reflect.KClass
    
    
    internal
    interface EvaluationSchemaBuilder {
        fun registerAnalysisSchemaComponent(analysisSchemaComponent: AnalysisSchemaComponent)
        val typeDiscoveries: List<TypeDiscovery>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirClassLikeSymbolPointer.kt

    import org.jetbrains.kotlin.analysis.api.symbols.pointers.KaSymbolPointer
    import org.jetbrains.kotlin.name.ClassId
    import kotlin.reflect.KClass
    
    internal class KaFirClassLikeSymbolPointer<T : KaClassLikeSymbol>(
        private val classId: ClassId,
        private val expectedClass: KClass<T>,
    ) : KaSymbolPointer<T>() {
        @Deprecated("Consider using org.jetbrains.kotlin.analysis.api.KaSession.restoreSymbol")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-rclist.json

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top