Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for XClass (0.21 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. internal/config/storageclass/storage-class.go

    )
    
    // Standard constants for all storage class
    const (
    	// Reduced redundancy storage class
    	RRS = "REDUCED_REDUNDANCY"
    	// Standard storage class
    	STANDARD = "STANDARD"
    )
    
    // Standard constats for config info storage class
    const (
    	ClassStandard = "standard"
    	ClassRRS      = "rrs"
    	Optimize      = "optimize"
    	InlineBlock   = "inline_block"
    
    	// Reduced redundancy storage class environment variable
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

                        subject.collectionOfClasses(listOf(Number::class, Int::class))
    
                        subject.methodParameterizedClass(type = Int::class)
                        subject.covariantMethodParameterizedClass(type = Int::class)
                        subject.methodParameterizedCovariantClass(type = Int::class)
                        subject.methodParameterizedContravariantClass(type = Int::class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensions.kt

     * based on the static type of the provider.
     */
    class RegisteringDomainObjectDelegateProviderWithType<T, U : Any>
    private constructor(
        internal val delegateProvider: T,
        internal val type: KClass<U>
    ) {
        companion object {
            fun <T, U : Any> of(delegateProvider: T, type: KClass<U>) =
                RegisteringDomainObjectDelegateProviderWithType(delegateProvider, type)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. 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)
Back to top