Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 111 for PROPERTY (0.16 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

        }
    
        private fun KaSession.renderProperty(
            property: KProperty<*>,
            printer: PrettyPrinter,
            renderSymbolsFully: Boolean,
            vararg args: Any,
        ) {
            printer.append(property.name).append(": ")
            renderFunctionCall(property.getter, printer, renderSymbolsFully, args)
        }
    
        private fun KaSession.renderFunctionCall(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirPropertySetterSymbol.kt

        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
        /**
         * Returns [CallableId] of the delegated Java method if the corresponding property of this setter is a synthetic Java property.
         * Otherwise, returns `null`
         */
        override val callableId: CallableId? by cached {
            val fir = firSymbol.fir
            if (fir is FirSyntheticPropertyAccessor) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheAllowedStartParametersIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheAllowedStartParametersIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "changing of kotlin dsl cid property doesn't invalidates cache entry"() {
            given:
            def kotlinDslCidProp = "org.gradle.kotlin.dsl.provider.cid"
            def configurationCache = newConfigurationCacheFixture()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/enduser/GradleRunnerMiscEndUserIntegrationTest.groovy

            testClassNames.each { testClassName ->
                result.assertOutputContains("${testClassName} > execute helloWorld task STARTED")
            }
        }
    
        def "can control debug mode through system property"() {
            when:
            buildFile << gradleTestKitDependency() << """
                test {
                    systemProperty '$DefaultGradleRunner.DEBUG_SYS_PROP', '$debug'
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/ProviderCodecs.kt

                val type: Class<Any> = readClass().uncheckedCast()
                val provider = providerCodec.run { decodeProvider() }
                val property = propertyFactory.property(type).provider(provider)
                isolate.identities.putInstance(id, property)
                property
            }
        }
    }
    
    
    class DirectoryPropertyCodec(
        private val filePropertyFactory: FilePropertyFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/HtmlDependencyReportTask.java

     * this dependency.
     * <p>
     * This task generates a report for the task's containing project by default. But it can also generate
     * a report for multiple projects, by setting the value of the
     * <code>projects</code> property. Here's how to generate an HTML
     * dependency report for all the projects of a multi-project build, for example:
     * <pre>
     * htmlDependencyReport {
     *     projects = project.allprojects
     * }
     * </pre>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/UndeclaredBuildInputListener.kt

    import org.gradle.internal.service.scopes.Scope
    import java.io.File
    
    
    @EventScope(Scope.BuildTree::class)
    interface UndeclaredBuildInputListener {
        /**
         * Called when an undeclared system property read happens.
         */
        fun systemPropertyRead(key: String, value: Any?, consumer: String?)
    
        fun envVariableRead(key: String, value: String?, consumer: String?)
    
        fun fileOpened(file: File, consumer: String?)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onAccess("properties")
                return delegate.properties
            }
    
            override fun property(propertyName: String): Any? {
                onAccess("property")
                return delegate.property(propertyName)
            }
    
            override fun findProperty(propertyName: String): Any? {
                onAccess("findProperty")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/UsedByScanPlugin.java

     * and therefore changes need to be carefully managed. Other plugins like the
     * test-retry or the test-distribution plugin clarify their usage in the {@link #value}.
     * property.
     *
     * @since 4.0
     */
    @Retention(RetentionPolicy.SOURCE)
    @Target({ElementType.METHOD, ElementType.TYPE, ElementType.FIELD, ElementType.CONSTRUCTOR})
    public @interface UsedByScanPlugin {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

        }
    
        private void addExtensionDeclaration(String childBuildName) {
            file("$childBuildName/src/main/groovy/my/MyExtension.groovy") << """
                import ${Property.name}
    
                interface MyExtension {
                    Property<String> getMessage()
                }
            """
        }
    
        private void addModelImplementation(String targetBuildName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top