Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 376 for PROPERTIES (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/Environment.kt

            else -> null
        }
    
        override fun getSystemProperties(): Environment.Properties =
            DefaultProperties(System.getProperties().uncheckedCast())
    
        override fun getVariables(): Environment.Properties =
            DefaultProperties(System.getenv())
    
        internal
        open class DefaultProperties(val map: Map<String, String>) : Environment.Properties {
            override fun byNamePrefix(prefix: String): Map<String, String?> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/files/sampleJavaProject/groovy/build.gradle

    }
    
    // tag::link-task-properties[]
    // tag::inner-link-task-properties[]
    def archivesDirPath = layout.buildDirectory.dir('archives')
    // end::inner-link-task-properties[]
    
    tasks.register('packageClasses', Zip) {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from compileJava
    }
    // end::link-task-properties[]
    
    // tag::nested-specs[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:03:24 UTC 2024
    - 878 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/kubeopenapi.go

    		return nil
    	}
    
    	ret := &spec.Schema{}
    
    	if s.Items != nil {
    		ret.Items = &spec.SchemaOrArray{Schema: s.Items.ToKubeOpenAPI()}
    	}
    	if s.Properties != nil {
    		ret.Properties = make(map[string]spec.Schema, len(s.Properties))
    		for k, v := range s.Properties {
    			ret.Properties[k] = *v.ToKubeOpenAPI()
    		}
    	}
    	if s.AdditionalProperties != nil {
    		ret.AdditionalProperties = &spec.SchemaOrBool{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/algorithm_test.go

    		{"object array object", `{"array":[{"a":1},{"b":2}],"object":{"a":1},"additionalProperties":{"x":{"a":1},"y":{"b":2}}}`, &structuralschema.Structural{
    			Properties: map[string]structuralschema.Structural{
    				"array": {
    					Items: &structuralschema.Structural{
    						Properties: map[string]structuralschema.Structural{
    							"a": {
    								Generic: structuralschema.Generic{
    									Default: structuralschema.JSON{Object: "A"},
    								},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildEnvironmentConfigurationConverter.java

            AllProperties properties = layoutToPropertiesConverter.convert(initialProperties, buildLayout);
            StartParameterInternal startParameter = new StartParameterInternal();
            startParameterConverter.convert(args, buildLayout, properties, startParameter);
    
            DaemonParameters daemonParameters = new DaemonParameters(buildLayout, fileCollectionFactory, properties.getRequestedSystemProperties());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 13:41:21 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidatorWorkarounds.java

            "org.gradle.api.internal.tasks.properties.annotations.OutputDirectoryPropertyAnnotationHandler",
            "org.gradle.api.internal.tasks.properties.annotations.OutputDirectoriesPropertyAnnotationHandler",
            "org.gradle.api.internal.tasks.properties.annotations.OutputFilePropertyAnnotationHandler",
            "org.gradle.api.internal.tasks.properties.annotations.OutputFilesPropertyAnnotationHandler",
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/PropertyValidationAccess.java

    import org.gradle.internal.properties.annotations.NestedValidationUtil;
    import org.gradle.internal.properties.annotations.PropertyMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadata;
    import org.gradle.internal.properties.annotations.TypeMetadataStore;
    import org.gradle.internal.properties.annotations.TypeMetadataWalker;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/SystemPropertySetterExecuter.java

        }
    
        @Override
        public BuildActionResult execute(BuildAction action, BuildActionParameters actionParameters, BuildRequestContext buildRequestContext) {
            Properties originalProperties = System.getProperties();
            Properties updatedProperties = new Properties();
            updatedProperties.putAll(originalProperties);
            updatedProperties.putAll(actionParameters.getSystemProperties());
            System.setProperties(updatedProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 21:54:27 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/stored.rules

    methods\ that\ are\ mutable\ public\ API\ properties\ and\ do\ not\ have\ raw\ return\ type\ org.gradle.api.resources.TextResource\ and\ do\ not\ have\ raw\ return\ type\ assignable\ to\ org.gradle.api.file.FileCollection\ should\ have\ return\ type\ Provider=public-api-mutable-properties.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/CacheBuilder.java

        /**
         * Specifies the additional key properties for the cache. The cache is treated as invalid if any of the properties do not match the properties used to create the cache. The default for this is an
         * empty map.
         *
         * @param properties additional properties for the cache.
         * @return this
         */
        CacheBuilder withProperties(Map<String, ?> properties);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top