Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for PROPERTIES (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTestKitIntegrationTest.groovy

                        buildFile = new File(testProjectDir, 'build.gradle')
                        gradleProperties = new File(testProjectDir, 'gradle.properties')
                    }
    
                    def "run Gradle build with Jacoco"() {
                        given:
                        def jacocoAgentJar = System.getProperty("jacocoAgentJar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            return p;
        }
    
        /**
         * <p>Creates the parameters for a new build, using these parameters as a template. Copies the environmental properties from this parameter (eg Gradle user home dir, etc), but does not copy the
         * build specific properties (eg task names).</p>
         *
         * @return The new parameters.
         */
        public StartParameter newBuild() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                        return configurationCacheRun('greet', "-Dgreeting=$greeting")
                    case SystemPropertySource.GRADLE_PROPERTIES:
                        file('root/gradle.properties').text = "systemProp.greeting=$greeting"
                        return configurationCacheRun('greet')
                }
                throw new IllegalArgumentException('source')
            }
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

        }
    
        @Override
        public DaemonStartupInfo startDaemon(boolean singleUse) {
            String daemonUid = UUID.randomUUID().toString();
    
            final JavaInfo resolvedJvm;
            // Gradle daemon properties have been defined
            if (daemonParameters.getRequestedJvmCriteria() != null) {
                IncubationLogger.incubatingFeatureUsed("Daemon JVM discovery");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. testing/distributions-integ-tests/src/integTest/groovy/org/gradle/DistributionIntegrationSpec.groovy

        private static void assertIsGradleApiMetadataJar(TestFile jar) {
            new JarTestFixture(jar.canonicalFile).with {
                def apiDeclaration = GUtil.loadProperties(IOUtils.toInputStream(content("gradle-api-declaration.properties"), StandardCharsets.UTF_8))
                assert apiDeclaration.size() == 2
                assert apiDeclaration.getProperty("includes").contains(":org/gradle/api/**:")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

            // https://github.com/micronaut-projects/micronaut-gradle-plugin/releases
            static micronaut = "4.3.6"
    
            // https://plugins.gradle.org/plugin/com.gorylenko.gradle-git-properties
            static gradleGitProperties = Versions.of("2.4.1")
    
            // https://plugins.gradle.org/plugin/org.flywaydb.flyway
            static flyway = Versions.of("10.11.0")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/stdlib-java-extensions/src/test/groovy/org/gradle/api/JavaVersionSpec.groovy

                assert e.getMessage() == "Could not determine Java version from '" + value + "'."
            }
        }
    
        def "uses system property to determine if compatible with Java #versionString"() {
            System.properties['java.version'] = versionString
    
            expect:
            JavaVersion.current() == current
            JavaVersion.current().java6 == isJava6
            JavaVersion.current().java7 == isJava7
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            val signature = createSignature(symbol, resultingDescriptor) ?: return null
            if (targetDescriptor.isSynthesizedPropertyFromJavaAccessors()) {
                // FE1.0 represents synthesized properties as an extension property of the Java class. Hence we use the extension receiver as
                // the dispatch receiver and always pass null for extension receiver (because in Java there is no way to specify an extension
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. pom.xml

          <url>scm:svn:https://svn.apache.org/repos/asf/maven/website/components/${maven.site.path}</url>
        </site>
        <downloadUrl>https://maven.apache.org/download.html</downloadUrl>
      </distributionManagement>
    
      <properties>
        <javaVersion>17</javaVersion>
        <maven.compiler.source>${javaVersion}</maven.compiler.source>
        <maven.compiler.target>${javaVersion}</maven.compiler.target>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                private final PathScope pathScope;
                private final Predicate<PathType> pathTypeFilter;
    
                /**
                 * Creates a request with the specified properties.
                 *
                 * @param session      {@link Session}
                 * @param rootArtifact The root dependency whose transitive dependencies should be collected, may be {@code
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
Back to top