Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,233 for PROPERTIES (0.44 sec)

  1. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

        }
    
        File createModule(String simpleName, Properties properties) {
            def moduleDir = tmpDir.createDir("$simpleName/build/resources/main")
            save(properties, moduleDir.file("gradle-$simpleName-classpath.properties"))
            moduleDir
        }
    
        private Properties properties(Map kvs = [:]) {
            new Properties().with {
                putAll(kvs)
                it
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/IncrementalBuildOutputOriginIntegrationTest.groovy

                def w1 = tasks.create("w1", WriteProperties) {
                    destinationFile = file("w1.properties")
                    properties = [v: 1]
                }
                def w2 = tasks.create("w2", WriteProperties) {
                    destinationFile = file("w2.properties")
                    properties = [v: 1]
                }
    
                tasks.create("w").dependsOn w1, w2
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:27:17 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    	}
    
    	for k, vFld := range v.Properties {
    		if sFld, ok := s.Properties[k]; !ok {
    			if sAdditionalPropertiesSchema == nil || !opts.AllowValidationPropertiesWithAdditionalProperties {
    				allErrs = append(allErrs, field.Required(sPath.Child("properties").Key(k), fmt.Sprintf("because it is defined in %s", vPath.Child("properties").Key(k))))
    			} else {
    				// Allow validations on specific properties if there exists an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/versions/KotlinGradlePluginVersions.groovy

            "1.8",
            "1.9",
            "2.0",
        ]
    
        private final Factory<Properties> propertiesFactory
        private Properties properties
    
        KotlinGradlePluginVersions() {
            this(new ClasspathVersionSource("kotlin-versions.properties", KotlinGradlePluginVersions.classLoader))
        }
    
        private KotlinGradlePluginVersions(Factory<Properties> propertiesFactory) {
            this.propertiesFactory = propertiesFactory
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/PropertyAnnotationHandler.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.properties.annotations;
    
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.properties.PropertyValue;
    import org.gradle.internal.properties.PropertyVisitor;
    import org.gradle.internal.reflect.validation.TypeValidationContext;
    import org.gradle.internal.service.scopes.Scope;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          description: Traffic policies that apply to this subset.
                          properties:
                            connectionPool:
                              properties:
                                http:
                                  description: HTTP connection pool settings.
                                  properties:
                                    h2UpgradePolicy:
                                      description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.7K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheFactory.java

            DirCacheReference(ReferencablePersistentCache cache, Map<String, ?> properties, LockOptions lockOptions) {
                this.cache = cache;
                this.properties = properties;
                this.lockOptions = lockOptions;
                onOpen(cache);
            }
    
            public void addReference(ReferenceTrackingCache cache) {
                references.add(cache);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 15:54:23 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/DataSchemaBuilder.kt

            }
    
            val types: Iterable<KClass<*>>
                get() = properties.keys
    
            fun hasType(kClass: KClass<*>): Boolean = kClass in properties
    
            fun getAllProperties(kClass: KClass<*>): List<DataProperty> = properties[kClass]?.values.orEmpty().toList()
    
            fun getClaimedFunctions(kClass: KClass<*>): Set<KFunction<*>> = claimedFunctions[kClass].orEmpty()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/Parameters.java

        private final AllProperties properties;
    
        public Parameters(StartParameterInternal startParameter, DaemonParameters daemonParameters, AllProperties properties) {
            this.startParameter = startParameter;
            this.daemonParameters = daemonParameters;
            this.properties = properties;
        }
    
        public AllProperties getProperties() {
            return properties;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:44 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/type/DefaultType.java

            Map<String, String> properties = new HashMap<>();
            properties.put(ArtifactProperties.TYPE, id);
            properties.put(ArtifactProperties.LANGUAGE, language.id());
            properties.put(MavenArtifactProperties.INCLUDES_DEPENDENCIES, Boolean.toString(includesDependencies));
            properties.put(
                    MavenArtifactProperties.CONSTITUTES_BUILD_PATH,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top