Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for hasArguments (0.25 sec)

  1. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/annotations/KaAnnotationImpl.kt

        override val useSiteTarget: AnnotationUseSiteTarget?
            get() = withValidityAssertion { backingUseSiteTarget }
    
        private val backingHasArguments: Boolean = hasArguments
    
        override val hasArguments: Boolean
            get() = withValidityAssertion { backingHasArguments }
    
        private val backingArguments: List<KaNamedAnnotationValue> by lazyArguments
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/annotations/KtAnnotationApplication.kt

         * then you can avoid [KaAnnotated.annotationsByClassId] call,
         * because effectively you already have all necessary information in [KaAnnotationApplicationInfo]
         */
        public val hasArguments: Boolean
    
        @Deprecated("Use 'hasArguments' instead.", replaceWith = ReplaceWith("hasArguments"))
        public val isCallWithArguments: Boolean
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/ListBuildOption.java

            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                configureCommandLineOption(parser, config.getAllOptions(), config.getDescription(), config.isDeprecated(), config.isIncubating()).hasArguments();
            }
        }
    
        @Override
        public void applyFromCommandLine(ParsedCommandLine options, T settings) {
            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/FirUtils.kt

        val classId = toAnnotationClassId(builder.rootSession)
    
        return KaAnnotationImpl(
            classId = classId,
            psi = psi as? KtCallElement,
            useSiteTarget = useSiteTarget,
            hasArguments = this is FirAnnotationCall && this.arguments.isNotEmpty(),
            lazyArguments = lazy { argumentsFactory(classId) },
            index = index,
            constructorSymbol = constructorSymbol,
            token = builder.token,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:43 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. testing/public-api-tests/build.gradle.kts

        @get:InputDirectory
        @get:PathSensitive(PathSensitivity.RELATIVE)
        abstract val repoLocation: DirectoryProperty
    
        @get:Input
        abstract val kotlinVersion: Property<String>
    
        override fun asArguments() =
            listOf(
                "-DintegTest.apiJarRepoLocation=${repoLocation.get().asFile.absolutePath}",
                "-DintegTest.kotlinVersion=${kotlinVersion.get()}"
            )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                    @InputFile
                    @PathSensitive(PathSensitivity.NONE)
                    abstract RegularFileProperty getInputFile()
    
                    @Override
                    Iterable<String> asArguments() {
                        return ["-Dinput.file=\${inputFile.get().asFile.absolutePath}".toString()]
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/StringBuildOption.java

            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
                configureCommandLineOption(parser, config.getAllOptions(), config.getDescription(), config.isDeprecated(), config.isIncubating()).hasArgument();
            }
        }
    
        @Override
        public void applyFromCommandLine(ParsedCommandLine options, T settings) {
            for (CommandLineOptionConfiguration config : commandLineOptionConfigurations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/argumentproviders/CiEnvironmentProvider.kt

    
    class CiEnvironmentProvider(private val test: Test) : CommandLineArgumentProvider, Named {
        @Internal
        override fun getName() = "ciEnvironment"
    
        override fun asArguments(): Iterable<String> {
            return if (BuildEnvironment.isCiServer) {
                getRepoMirrorSystemProperties() +
                    getToolchainInstallationPathsProperty() +
                    mapOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

    }
    
    internal
    class DevelocityPluginInfoDirPropertyProvider(@InputFiles @PathSensitive(PathSensitivity.RELATIVE) val pluginInfoDir: Provider<File>) : CommandLineArgumentProvider {
        override fun asArguments() = listOf("-Dorg.gradle.performance.develocity.plugin.infoDir=${pluginInfoDir.get().path}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. platforms/extensibility/unit-test-fixtures/src/integTest/groovy/org/gradle/testfixtures/ProjectBuilderEndUserIntegrationTest.groovy

                private final Test test;
                public AddOpensArgProvider(Test test) {
                    this.test = test;
                }
                @Override
                Iterable<String> asArguments() {
                    return test.javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)
                        ? ["--add-opens=java.base/java.lang=ALL-UNNAMED"]
                        : []
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top