Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 281 for PROPERTIES (0.13 sec)

  1. manifests/addons/dashboards/pilot-dashboard.gen.json

                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
                         "options": "rds"
                      },
                      "properties": [
                         {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    Gradle provides several ways to manage this using *lazy configuration*.
    
    image::writing-tasks-4.png[]
    
    [[lazy_properties]]
    == Understanding Lazy properties
    
    Gradle provides lazy properties, which delay calculating a property’s value until it’s actually required.
    
    Lazy properties provide three main benefits:
    
    1. *Deferred Value Resolution:* Allows wiring Gradle models without needing to know when a property's value will be known.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         *
         * @param propertyName the name of the system property
         * @return the provider for the system property, never returns null
         * @since 6.1
         */
        Provider<String> systemProperty(String propertyName);
    
        /**
         * Creates a {@link Provider} whose value is fetched from system properties using the given property name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/taskfactory/AnnotationProcessingTaskFactoryTest.groovy

            def properties = inputProperties(task)
    
            expect:
            properties["cCompiler"] != null
            properties["CFlags"] != null
            properties["dns"] != null
            properties["URL"] != null
            properties["a"] != null
            properties["b"] != null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    		Extensions:           nested.ForbiddenExtensions,
    		Items:                nestedToStructural(nested.Items),
    	}
    
    	if len(nested.Properties) > 0 {
    		structuralConversion.Properties = make(map[string]schema.Structural, len(nested.Properties))
    		for k, v := range nested.Properties {
    			structuralConversion.Properties[k] = *nestedToStructural(&v)
    		}
    	}
    
    	if nested.AdditionalProperties != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            file("local.properties") << "\nunrelated.properties=foo"
            configurationCacheRun "run"
    
            then:
            output.count("ON CI") == 1
            configurationCache.assertStateLoaded()
    
            when: "running after changing the property value"
            file("local.properties").text = "ci=false"
            configurationCacheRun "run"
    
            then:
    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/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            } else if (targetVersion >= GradleVersion.version("6.8")) {
                return ['buildEnvironment', 'components', 'dependencies', 'dependencyInsight', 'dependentComponents', 'help', 'javaToolchains', 'projects', 'properties', 'tasks', 'model', 'outgoingVariants']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

        }
    
        private static Map<String, String> convertSystemProperties(Properties properties) {
            Map<String, String> result = new HashMap<String, String>();
            for (Map.Entry<Object, Object> entry : properties.entrySet()) {
                result.put(entry.getKey().toString(), entry.getValue() == null ? null : entry.getValue().toString());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
         *     <li>User properties (highest precedence)</li>
         * </ul>
         * Note: Project properties contains properties injected from profiles, if applicable. Their precedence is
         * {@code profile > project}, hence active profile property may override project property.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

    import java.io.File;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    import java.util.Arrays;
    import java.util.List;
    import java.util.Properties;
    
    /**
     * <p>Generates scripts (for *nix and windows) which allow you to build your project with Gradle, without having to
     * install Gradle.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top