Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for PropertyName (0.19 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

             */
            data object CannotMerge : MergeKey
    
            /**
             * The key for properties that can get merged by shadowing.
             */
            data class CanMergeProperty(
                val propertyName: String
            ) : MergeKey
    
            /**
             * The key for element blocks that configure the same nested objects (like configuring functions do).
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

            withValidityAssertion { analysisSession.typeProvider.getArrayElementType(this) }
    }
    
    public typealias KtTypeProviderMixIn = KaTypeProviderMixIn
    
    @Suppress("PropertyName")
    public abstract class KaBuiltinTypes : KaLifetimeOwner {
        public abstract val int: KaType
    
        @Deprecated("Use 'int' instead.", replaceWith = ReplaceWith("int"))
        public val INT: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

                ].collect{it.toString() }
                additionalData.asMap == [
                    'typeName' : 'CustomTask',
                    'propertyName' : 'brokenInputFile',
                ]
            }
    
            where:
            inputName   | inputType
            "File"      | InputFile
            "Directory" | InputDirectory
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * properties which are available for a project.</p>
         *
         * @param propertyName The name of the property to locate.
         * @return True if this project has the given property, false otherwise.
         */
        boolean hasProperty(String propertyName);
    
        /**
         * <p>Returns the properties of this project. See <a href="#properties">here</a> for details of the properties which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean
            val instrumentationAgentUsed: Boolean
            val ignoredFileSystemCheckInputs: String?
            fun gradleProperty(propertyName: String): String?
            fun fingerprintOf(fileCollection: FileCollectionInternal): HashCode
            fun hashCodeAndTypeOf(file: File): Pair<HashCode, FileType>
            fun hashCodeOf(file: File): HashCode?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            logBuildOrSettingsFileDeprecation("settingsFile");
            return settingsFile;
        }
    
        private void logBuildOrSettingsFileDeprecation(String propertyName) {
            DeprecationLogger.deprecateProperty(StartParameter.class, propertyName)
                .withContext("Setting custom build file to select the default project has been deprecated.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                    // GENERATE return factory.newInstance(this, propertyName, ...)
                    _ALOAD(0);
                    _LDC(property.getName());
    
                    switch (property.getType().getTypeParameters().length) {
                        case 1:
                            // GENERATE factory.newInstance(this, propertyName, propType, elementType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                    Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s);
                    while (matcher.find()) {
                        String propertyName = matcher.group(0);
    
                        if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) {
                            continue;
                        }
                        addViolation(
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                solutions == [ 'Load your class by using one of Gradle\'s built-in ways.' ]
                additionalData.asMap == [
                    'typeName' : 'CustomTask',
                    'propertyName' : 'bean'
                ]
            }
        }
    
        def "properly captures all attributes"() {
            given:
            withBuildCache()
            buildFile << """
                task customTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                    Matcher matcher = EXPRESSION_PROJECT_NAME_PATTERN.matcher(s);
                    while (matcher.find()) {
                        String propertyName = matcher.group(0);
    
                        if (path.startsWith("activation.file.") && "${project.basedir}".equals(propertyName)) {
                            continue;
                        }
                        addViolation(
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top