Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 752 for PROPERTIES (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/files/sampleJavaProject/kotlin/build.gradle.kts

    }
    
    // tag::link-task-properties[]
    // tag::inner-link-task-properties[]
    val archivesDirPath = layout.buildDirectory.dir("archives")
    // end::inner-link-task-properties[]
    
    tasks.register<Zip>("packageClasses") {
        archiveAppendix = "classes"
        destinationDirectory = archivesDirPath
    
        from(tasks.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
    - 892 bytes
    - Viewed (0)
  7. testing/internal-integ-testing/build.gradle.kts

        @TaskAction
        fun prepareVersions() {
            val properties = Properties()
            properties["mostRecent"] = mostRecent.get()
            properties["mostRecentSnapshot"] = mostRecentSnapshot.get()
            properties["versions"] = versions.get()
            gradlebuild.basics.util.ReproduciblePropertiesWriter.store(properties, destFile.get().asFile)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/gradle-cli-main/src/main/java/org/gradle/internal/jvm/GradleVersionNumberLoader.java

                    connection.setUseCaches(false);
                    inputStream = connection.getInputStream();
                    Properties properties = new Properties();
                    properties.load(inputStream);
    
                    return properties.get(VERSION_NUMBER_PROPERTY).toString();
                } finally {
                    if (inputStream != null) {
                        inputStream.close();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderTest.groovy

            pomReader.properties['project.groupId'] == 'group-one'
            pomReader.properties['pom.groupId'] == 'group-one'
            pomReader.properties['groupId'] == 'group-one'
            pomReader.properties['project.artifactId'] == 'artifact-one'
            pomReader.properties['pom.artifactId'] == 'artifact-one'
            pomReader.properties['artifactId'] == 'artifact-one'
            pomReader.properties['project.version'] == 'version-one'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         * makes it available to the build.
         *
         * Optionally sets a system properties after load.
         *
         * This method should be called only once per build but multiple calls with the
         * same argument are allowed.
         *
         * @param settingsDir directory where to look for the {@code gradle.properties} file
         * @param setSystemProperties should system properties be set or not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top