Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for XClass (0.37 sec)

  1. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/HLDiagnosticConverter.kt

            Variance::class,
            FqName::class,
            ClassId::class,
            FirModuleData::class,
            ExpectActualCompatibility::class,
            ExpectActualCompatibility.MismatchOrIncompatible::class,
            ExpectActualAnnotationsIncompatibilityType::class,
            FirDeprecationInfo::class,
            ApiVersion::class,
            CallableId::class,
            ClassKind::class,
            FunctionTypeKind::class,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm9.go

    	if a1 != 0 {
    		return &optab[a1-1]
    	}
    	a1 = int(p.From.Class)
    	if a1 == 0 {
    		a1 = c.aclass(&p.From) + 1
    		p.From.Class = int8(a1)
    	}
    	a1--
    
    	argsv := [3]int{C_NONE + 1, C_NONE + 1, C_NONE + 1}
    	for i, ap := range p.RestArgs {
    		argsv[i] = int(ap.Addr.Class)
    		if argsv[i] == 0 {
    			argsv[i] = c.aclass(&ap.Addr) + 1
    			ap.Addr.Class = int8(argsv[i])
    		}
    
    	}
    	a3 := argsv[0] - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

         */
        private
        fun typeHierarchyViaJavaReflection(kClass: KClass<*>): Iterable<KClass<*>> =
            Traverser.forGraph<Class<*>> { listOfNotNull(it.superclass) + it.interfaces }
                .breadthFirst(kClass.java).map { it.kotlin }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/schemaFromGradleExtensions.kt

        fun hasRestrictedAnnotationWithSuperTypes(kClass: KClass<*>) =
            hasRestrictedAnnotationCached(kClass) || kClass.supertypes.any { (it.classifier as? KClass<*>)?.let { isAnnotatedMaybeInSupertypes(it) } ?: false }
    
        private
        val hasRestrictedAnnotationWithSuperTypesCache = mutableMapOf<KClass<*>, Boolean>()
    
        private
        val hasRestrictedAnnotationCache = mutableMapOf<KClass<*>, Boolean>()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/project/TypeSafeProjectAccessorsSchemaBuildingComponent.kt

            }
        }
    
        private
        fun allClassesReachableFromGetters(kClass: KClass<*>) = buildSet {
            fun visit(kClass: KClass<*>) {
                if (add(kClass)) {
                    val properties = propertyFromTypesafeProjectGetters.extractProperties(kClass)
                    val typesFromGetters = properties.mapNotNull { it.originalReturnType.classifier as? KClass<*> }
                    typesFromGetters.forEach(::visit)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/ReflectionCache.java

        public T get(final Class<?> receiver, final Class<?>[] key) {
            synchronized (lock) {
                return cache.get(receiver, key);
            }
        }
    
        protected abstract T create(Class<?> receiver, Class<?>[] key);
    
        public int size() {
            return cache.size();
        }
    
        private class WeaklyClassReferencingCache extends WeakHashMap<Class<?>, CacheEntry> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/bytecode/AsmExtensions.kt

     */
    @JvmInline
    internal
    value class InternalName(val value: String) {
    
        companion object {
            fun from(sourceName: String) = InternalName(sourceName.replace('.', '/'))
        }
    
        override fun toString() = value
    }
    
    
    internal
    object InternalNameOf {
    
        val javaLangObject = InternalName("java/lang/Object")
    }
    
    
    internal
    val KClass<*>.internalName: InternalName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_splits.mlir

    // CHECK-LABEL: func @colocate_split_with_pred
    func.func @colocate_split_with_pred() {
      // CHECK: Split
      // CHECK-SAME: _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: Thu Apr 27 18:44:34 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/GroovyIncrementalCompilationIntegrationTest.groovy

            'adding'   | 'class A { } \nclass B { } \n'            | 'class A{}\nclass B{}\nclass C{}'          | ['A', 'B', 'C']  | []
            'removing' | 'class A { } \nclass B { } \nclass C { }' | 'class A{}\nclass B{}\n'                   | ['A', 'B']       | ['C']
            'changing' | 'class A { } \nclass B { } \nclass C { }' | 'class A{}\nclass B{}\n class C { int i }' | ['A', 'B', 'C']  | []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/GradleApiExtensionsIntegrationTest.kt

                // Class<T> to KClass<T>
                objects.property(Long::class)
    
                // Groovy named arguments to vararg of Pair
                fileTree("dir" to "src", "excludes" to listOf("**/ignore/**", "**/.data/**"))
    
                // Class<T> + Action<T> to KClass<T> + T.() -> Unit
                tasks.register("foo", Copy::class) {
                    from("src")
                    into("dst")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:53:16 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top