Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 665 for PROPERTY (0.11 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/language/swift/tasks/SwiftCompile.java

        private final Property<Boolean> debuggable;
        private final Property<Boolean> optimize;
        private final Property<NativePlatform> targetPlatform;
        private final Property<NativeToolChain> toolChain;
    
        private final CompilerOutputFileNamingSchemeFactory compilerOutputFileNamingSchemeFactory;
        private final Deleter deleter;
    
        @Inject
        public SwiftCompile(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                error(missingAnnotationConfig { type('MyTask').property('tree.nonAnnotated').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
                error(missingAnnotationConfig { type('MyTask').property('tree.left.nonAnnotated').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            bean.filesBean.toString() == "property 'filesBean'"
            bean.filesBean.modelIdentityDisplayName.displayName == "property 'filesBean'"
            bean.filesBean.prop.toString() == "file collection"
    
            bean.propBean.toString() == "property 'propBean'"
            bean.propBean.modelIdentityDisplayName.displayName == "property 'propBean'"
            bean.propBean.prop.toString() == "property 'propBean.prop'"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            e.message == "Could not get unknown property 'unknown' for object of type ${BeanWithMixInProperties.name}."
    
            when:
            dynamicObject.setProperty("unknown", 123)
    
            then:
            e = thrown(MissingPropertyException)
            e.property == "unknown"
            e.type == BeanWithMixInProperties
            e.message == "Could not set unknown property 'unknown' for object of type ${BeanWithMixInProperties.name}."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                error(missingAnnotationConfig { type('MyTask').property('badTime').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
                error(missingAnnotationConfig { type('MyTask').property('oldThing').missingInputOrOutput() }, 'validation_problems', 'missing_annotation'),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                println("ValueSource result = \${vsResult.get()}")
                println("some.property = \${System.getProperty("some.property")}")
            """
    
            when:
            configurationCacheRun("-Dsome.property=1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("some.property = 1")
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractProperty.java

        /**
         * Creates a shallow copy of this property. Further changes to this property (via {@code set(...)}, or {@code convention(Object...)}) do not
         * change the copy. However, the copy still reflects changes to the underlying providers that constitute this property. Consider the following snippet:
         * <pre>
         *     def upstream = objects.property(String).value("foo")
         *     def property = objects.property(String).value(upstream)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:54 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

        private final RegularFileProperty archiveFile;
        private final Property<String> archiveName;
        private final Property<String> archiveBaseName;
        private final Property<String> archiveAppendix;
        private final Property<String> archiveVersion;
        private final Property<String> archiveExtension;
        private final Property<String> archiveClassifier;
        private final Property<Boolean> archivePreserveFileTimestamps;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

            "Property<Integer>"           | "int"            | "self.getProperty().getOrElse(0)"                | ".set(arg0)"       | []
            "Property<Boolean>"           | "boolean"        | "self.getProperty().getOrElse(false)"            | ".set(arg0)"       | []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/model/ObjectFactory.java

         * </ul>
         *
         * @param valueType The type of the property.
         * @return The property. Never returns null.
         * @since 4.3
         */
        <T> Property<T> property(Class<T> valueType);
    
        /**
         * Creates a {@link ListProperty} implementation to hold a {@link List} of the given element type {@code T}. The property has an empty list as its initial value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top