Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,245 for PROPERTY (0.23 sec)

  1. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                warning(unsupportedValueTypeConfig { type('MyTask').property('nestedBean.nestedInput').propertyType('Property<URL>') }, "validation_problems", "unsupported_value_type"),
                warning(unsupportedValueTypeConfig { type('MyTask').property('propertyInput').propertyType('Property<URL>') }, "validation_problems", "unsupported_value_type"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

        private final Property<Boolean> server;
        private final Property<Boolean> suspend;
    
        @Inject
        public DefaultJavaDebugOptions(ObjectFactory objectFactory) {
            this.enabled = objectFactory.property(Boolean.class).convention(false);
            this.host = objectFactory.property(String.class);
            this.port = objectFactory.property(Integer.class).convention(5005);
            this.server = objectFactory.property(Boolean.class).convention(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

                contextualLabel == "Type \'MyTask\' property \'options.nestedThing\' is annotated with invalid property type @$ann.simpleName"
                details == "The '@${ann.simpleName}' annotation cannot be used in this context"
                solutions == [
                    'Remove the property',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

        void insert(K key, V value);
    
        /**
         * Adds a map entry to the property value.
         *
         * <p>The given provider will be queried when the value of this property is queried.
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                        "java/com/example/Task.java",
                        """
                            package com.example;
                            import org.gradle.api.provider.Property;
    
                            public abstract class Task {
                                public abstract Property<String> getSourceCompatibility();
                            }
                        """
                    )
                }
            ) {
                assertHasErrors(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/main/resources/app.xml

    				<component class="org.codelibs.fess.auth.chain.CommandChain">
    					<property name="updateCommand">[
    					"/usr/sbin/htpasswd",
    					"-b",
    					"/tmp/test.txt",
    					"$USERNAME",
    					"$PASSWORD"
    					]</property>
    					<property name="deleteCommand">[
    					"/usr/sbin/htpasswd",
    					"-D",
    					"/tmp/test.txt",
    					"$USERNAME"
    					]</property>
    					<property name="targetUsers">[
    					"admin"
    					]</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Nov 19 02:22:47 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultFinalizingValidatingPropertyTest.groovy

            when:
            property.prepareValue()
    
            then:
            1 * value.prepareValue()
            0 * value._
    
            when:
            property.cleanupValue()
    
            then:
            1 * value.cleanupValue()
            0 * value._
        }
    
        def "does not notify null property value"() {
            def valueWrapper = Stub(PropertyValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppSharedLibrary.java

        private final RegularFileProperty linkFile;
        private final Property<Task> linkFileProducer;
        private final RegularFileProperty runtimeFile;
        private final Property<LinkSharedLibrary> linkTaskProperty;
        private final Property<Configuration> linkElements;
        private final Property<Configuration> runtimeElements;
        private final ConfigurableFileCollection outputs;
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyStateExtensions.kt

    package org.gradle.kotlin.dsl
    
    import org.gradle.api.provider.Property
    
    import kotlin.reflect.KProperty
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `val someProperty by somePropertyState`
     */
    operator fun <T> Property<T>.getValue(receiver: Any?, property: KProperty<*>): T = get()
    
    
    /**
     * Property delegate for [Property] instances.
     *
     * Example: `var someProperty by somePropertyState`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxy.java

            }
    
            for (String property : setters.keySet()) {
                if (!getters.containsKey(property)) {
                    throwParameterValidationError(clazz, String.format("A setter for property %s was found but no getter.", property));
                } else if (!setters.get(property).equals(getters.get(property))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:27:26 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top