Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 739 for PROPERTIES (0.35 sec)

  1. 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)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/bean/PropertyWalker.java

     * limitations under the License.
     */
    
    package org.gradle.internal.properties.bean;
    
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * Walks properties declared by the type.
     */
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

     */
    val hashtableCodec: Codec<Hashtable<Any?, Any?>> = mapCodec { Hashtable(it) }
    
    
    /*
     * Decodes Properties as Properties instead of Hashtable.
     */
    val propertiesCodec: Codec<Properties> = mapCodec { Properties() }
    
    
    val treeMapCodec: Codec<TreeMap<Any?, Any?>> = codec(
        {
            write(it.comparator())
            writeMap(it)
        },
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/internal/FilePropertyContainer.java

            return new FilePropertyContainer<T>();
        }
    
        public void add(T property) {
            properties.add(property);
            changed = true;
        }
    
        @Override
        public Iterator<T> iterator() {
            if (changed) {
                for (T propertySpec : properties) {
                    String propertyName = propertySpec.getPropertyName();
                    if (propertyName == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

        }
    
        /**
         * @return all jvm args including system properties
         */
        public List<String> getAllJvmArgs() {
            List<String> args = new ArrayList<>();
            formatSystemProperties(getMutableSystemProperties(), args);
    
            // We have to add these after the system properties so they can override any system properties
            // (identical properties later in the command line override earlier ones)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/DefaultTypeMetadataStoreTest.groovy

            String oldProperty
            @Console
            boolean console
        }
    
        def "can get annotated properties of simple task"() {
            when:
            def properties = metadataStore.getTypeMetadata(SimpleTask).propertiesMetadata
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. src/main/config/openapi/openapi-user.yaml

                  schema:
                    type: object
                    properties:
                      record_count:
                        type: integer
                        example: 9
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            label:
                              type: string
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/TypeMetadata.java

    public interface TypeMetadata {
        void visitValidationFailures(@Nullable String ownerPropertyPath, TypeValidationContext validationContext);
    
        /**
         * Returns the set of relevant properties, that is, those properties annotated with a relevant annotation.
         */
        Set<PropertyMetadata> getPropertiesMetadata();
    
        boolean hasAnnotatedProperties();
    
        PropertyAnnotationHandler getAnnotationHandlerFor(PropertyMetadata propertyMetadata);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top