Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 685 for PROPERTIES (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    
    [[sec:extra_properties]]
    ==== Extra Properties
    
    Gradle's enhanced objects, including projects, tasks, and source sets, can hold user-defined properties.
    
    [.multi-language-text.lang-kotlin]
    Add, read, and set extra properties via the owning object's `extra` property. Alternatively, you can access extra properties via Kotlin delegated properties using `by extra`.
    
    [.multi-language-text.lang-groovy]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Credentials in system properties take precedence over the ones embedded in `distributionUrl`.
    
    [TIP]
    ====
    HTTP Basic Authentication should only be used with `HTTPS` URLs and not plain `HTTP` ones.
    With Basic Authentication, the user credentials are sent in clear text.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultValueSnapshotterTest.groovy

        }
    
        Properties properties(Map<String, String> entries) {
            def properties = new Properties()
            entries.each { key, value -> properties.setProperty(key, value) }
            return properties
        }
    
        def "creates snapshot for properties"() {
            expect:
            def snapshot1 = snapshotter.snapshot(properties([:]))
            snapshot1 instanceof MapValueSnapshot
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 29.5K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_dataclasses/test_tutorial003.py

                "schemas": {
                    "Author": {
                        "title": "Author",
                        "required": ["name"],
                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "items": {
                                "title": "Items",
                                "type": "array",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

    import org.gradle.internal.fingerprint.LineEndingSensitivity
    import org.gradle.internal.properties.InputBehavior
    import org.gradle.internal.properties.InputFilePropertyType
    import org.gradle.internal.properties.OutputFilePropertyType
    import org.gradle.internal.properties.PropertyValue
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.serialize.graph.Codec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/bean/DefaultPropertyWalkerTest.groovy

    import org.gradle.internal.properties.InputFilePropertyType
    import org.gradle.internal.properties.OutputFilePropertyType
    import org.gradle.internal.properties.PropertyVisitor
    import org.gradle.internal.properties.annotations.DefaultTypeMetadataStore
    import org.gradle.internal.properties.annotations.MissingPropertyAnnotationHandler
    import org.gradle.internal.properties.annotations.PropertyAnnotationHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             */
            void onRemove(Object key);
    
            /**
             * Called when the caller unconditionally removes all properties in this Properties object, for example by calling {@link Properties#clear()}.
             * <p>
             * The state of the observed Properties object is undefined for the duration of the call: it may be already completely or partially
             * modified to reflect the result of the operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/ant.adoc

    include::sample[dir="snippets/ant/properties/groovy",files="build.gradle[tags=set-property]"]
    ====
    
    Many Ant tasks set properties when they execute.
    There are several ways to get the value of these properties.
    You can get the property directly from the `AntBuilder` instance.
    The Ant properties are also available as a Map:
    
    ====
    include::sample[dir="snippets/ant/properties/groovy",files="build.xml[tags=getproperty]"]
    ====
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 15:23:52 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            request.setLocalRepository(getLocalRepository());
    
            // native
            Properties properties = new Properties();
            properties.setProperty("maven.resolver.transport", "apache");
            request.setSystemProperties(properties);
            Map<String, Object> configProperties =
                    systemSessionFactory.newRepositorySession(request).getConfigProperties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top