Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 411 for Clauss (0.27 sec)

  1. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/support/ClassBytesRepositoryTest.kt

            )
    
            assertClassFilePathCandidatesFor(
                "foo.My.Nested",
                listOf(
                    "foo/My/Nested.class", "foo/My/NestedKt.class",
                    "foo/My${'$'}Nested.class", "foo/My${'$'}NestedKt.class",
                    "foo${'$'}My${'$'}Nested.class", "foo${'$'}My${'$'}NestedKt.class"
                )
            )
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 17:45:10 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/serialize/IsolateOwners.kt

        }
    
        class OwnerFlowScope(override val delegate: Gradle) : IsolateOwners() {
            override fun <T> service(type: Class<T>): T = (delegate as GradleInternal).services.get(type)
        }
    
        class OwnerFlowAction(override val delegate: OwnerFlowScope) : IsolateOwners() {
            override fun <T> service(type: Class<T>): T = delegate.service(type)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

                add(DefaultBuildToolingModelControllerFactory::class.java)
                add(ConfigurationCacheRepository::class.java)
                add(InputTrackingState::class.java)
                add(InstrumentedInputAccessListener::class.java)
                add(InstrumentedExecutionAccessListener::class.java)
                add(IsolatedActionCodecsFactory::class.java)
                addProvider(IgnoredConfigurationInputsProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FunctionSemantics.kt

    @ToolingModelContract(subTypes = [
        FunctionSemantics.ConfigureSemantics::class,
        FunctionSemantics.NewObjectFunctionSemantics::class,
        FunctionSemantics.Builder::class
    ])
    sealed interface FunctionSemantics : Serializable {
    
        val returnValueType: DataTypeRef
    
        @ToolingModelContract(subTypes = [
            AccessAndConfigure::class,
            AddAndConfigure::class
        ])
        sealed interface ConfigureSemantics : FunctionSemantics {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 09:43:01 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-problems-base/src/main/kotlin/org/gradle/internal/configuration/problems/PropertyProblem.kt

        object Gradle : PropertyTrace()
    
        class BuildLogic(
            val source: DisplayName,
            val lineNumber: Int? = null
        ) : PropertyTrace()
    
        class BuildLogicClass(
            val name: String
        ) : PropertyTrace()
    
        class Task(
            val type: Class<*>,
            val path: String
        ) : PropertyTrace()
    
        class Bean(
            val type: Class<*>,
            val trace: PropertyTrace
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 21:59:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

        }
    
        private
        fun <P : FlowParameters, T : FlowAction<P>> parametersTypeOf(action: Class<T>): Class<P>? =
            isolationScheme.parameterTypeFor(action)
    }
    
    
    data class RegisteredFlowAction(
        val type: Class<out FlowAction<FlowParameters>>,
        val parameters: FlowParameters?
    )
    
    
    private
    class DefaultFlowScopeRegistration<P : FlowParameters> : FlowScope.Registration<P>
    
    
    @NonExtensible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

     */
    @ServiceScope(Scope.Global::class)
    class BeanConstructors(
        cacheFactory: CrossBuildInMemoryCacheFactory
    ) {
        private
        val cache: CrossBuildInMemoryCache<Class<*>, Constructor<out Any>> = cacheFactory.newClassCache()
    
        fun constructorForSerialization(beanType: Class<*>): Constructor<out Any> {
            return cache.get(beanType) { -> createConstructor(beanType) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

    import org.gradle.internal.service.scopes.ServiceScope
    
    
    @ServiceScope(Scope.BuildTree::class)
    interface BeanStateWriterLookup {
        fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter
    }
    
    
    @ServiceScope(Scope.BuildTree::class)
    interface BeanStateReaderLookup {
        fun beanStateReaderFor(beanType: Class<*>): BeanStateReader
    }
    
    
    class DefaultWriteContext(
    
        codec: Codec<Any?>,
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/DefaultAnalysisSchema.kt

        @SerialName("property")
        data class DefaultProperty(override val dataProperty: DataProperty) : ConfigureAccessor.Property
    
        @Serializable
        @SerialName("custom")
        data class DefaultCustom(override val objectType: DataTypeRef, override val customAccessorIdentifier: String) : ConfigureAccessor.Custom
    
        @Serializable
        @SerialName("configuringLambdaArgument")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

        mock<ScriptContents> {
            on { file } doReturn scriptFile
        }
    
    
    internal
    class ResolverTestRecorder : ResolverEventLogger, (ReportSeverity, String, Position?) -> Unit {
    
        data class LogEvent(
            val event: ResolverEvent,
            val prettyPrinted: String
        )
    
        data class IdeReport(
            val severity: ReportSeverity,
            val message: String,
            val position: Position?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top