Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 492 for PROPERTIES (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

         * Parses a sequence of XML elements and converts them to the appropriate {@link Properties} type.
         *
         * @param parser The XML parser
         * @return Converted Properties instance
         */
        private static Properties parseProperties(final XmlPullParser parser) throws Exception {
            final Properties properties = newImplementation(parser, Properties.class);
            while (parser.nextTag() == XmlPullParser.START_TAG) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.properties.InputFilePropertyType;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadataStore;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

        new File(projectDirectory, "gradle.properties") << "\norg.gradle.workers.max=${maxWorkers}\n"
    
    }
    
    private void setMaxHeap(File projectDirectory, String maxHeap) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.jvmargs=-Xmx${maxHeap}\n"
    
    }
    
    private void setParallel(File projectDirectory, boolean parallel) {
        new File(projectDirectory, "gradle.properties") << "\norg.gradle.parallel=${parallel}\n"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGradlePropertiesIntegrationTest.groovy

            configurationCache.assertStateStored()
            outputContains "because the set of Gradle properties has changed."
    
            where:
            dynamicPropertyExpression << [
                'gradleProp',
                'ext.gradleProp'
            ]
        }
    
        @Issue("https://github.com/gradle/gradle/issues/19793")
        def "gradle properties must be accessible from task in #build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (jvmArguments != null) {
                daemonParams.setJvmArgs(jvmArguments);
            }
    
            daemonParams.setRequestedJvmCriteria(properties.getDaemonJvmProperties());
    
            // Include the system properties that are defined in the daemon JVM args
            properties = properties.merge(daemonParams.getSystemProperties());
    
            Map<String, String> envVariables = operationParameters.getEnvironmentVariables(null);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

                connection.setUseCaches(false);
                inputStream = connection.getInputStream();
                Properties properties = new Properties();
                properties.load(inputStream);
    
                String version = properties.get(VERSION_NUMBER_PROPERTY).toString();
    
                // We allow the gradle version to be overridden for tests that are sensitive
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top