Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,799 for XClass (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/KotlinBuildScriptIntegrationTest.kt

            withBuildScript("""
                plugins { id("my-plugin") }
    
                extensions.getByType(MyExtension::class).some("api.get")
                extensions.configure<MyExtension> { some("api.configure") }
                the<MyExtension>().some("kotlin.reified.get")
                the(MyExtension::class).some("kotlin.kclass.get")
                configure<MyExtension> { some("kotlin.configure") }
                my.some("accessor.get")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

        private fun getFrontendIndependentKClassOf(value: Any): KClass<*> {
            fun KClass<*>.isFrontendIndependent(): Boolean {
                if (this == Any::class) return false
                val qualifiedName = qualifiedName ?: return false
                return symbolImplementationPackageNames.none { qualifiedName.startsWith("$it.") }
            }
    
            val valueClass = value::class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Request.kt

      @JvmName("reifiedTag")
      inline fun <reified T : Any> tag(): T? = tag(T::class)
    
      /** Returns the tag attached with [type] as a key, or null if no tag is attached with that key. */
      fun <T : Any> tag(type: KClass<T>): T? = type.java.cast(tags[type])
    
      /**
       * Returns the tag attached with `Object.class` as a key, or null if no tag is attached with
       * that key.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:17:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TaskContainerDslIntegrationTest.kt

                taskAssertion("cabin", Copy::class),
                taskAssertion("castle", Task::class, equalTo("null!")),
                taskAssertion("valley", Copy::class, equalTo("null!")),
                taskAssertion("hill", Copy::class, equalTo("null!")),
                taskAssertion("bat"),
                taskAssertion("pipistrelle", Copy::class, equalTo("nullABC")),
                taskAssertion("yate"),
                taskAssertion("quartern", Copy::class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:27 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/object.h

      // effectively a "weak reference" to intern'd class value.
      // types are compared by comparing pointer values here.
      // Handle* class_;  // effectively a "weak reference" to intern'd class value.
    
      /// The Integer handle.
      friend class Integer;
      /// The Float handle.
      friend class Float;
      /// The String handle.
      friend class String;
      /// The Object handle.
      friend class Object;
      /// The List handle.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            source "class A { static final int x = 1; }",
                "class B { static final int x = A.x + 1; }",
                "class C { static final int x = B.x + 1; }",
                "class D { static final int x = C.x + 1; }",
                "class E { }"
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  10. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginAuxclasspathIntegrationTest.groovy

            """
                package org.gradle.ruleusing;
                public class Class2 extends Class1 { }
            """
        }
    
        private static classReferencingIntermediate() {
            """
            package org.gradle.ruleusing;
            public class Class1 {
                private org.gradle.intermediate.IntermediateClass mClass = null;
            }
           """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:47:00 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top