Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for prop4 (0.03 sec)

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

            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputContains 'sys prop value at configuration time = 42'
            outputContains 'sys prop value at execution time = 42'
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun 'ok', '-Dsome.prop=42'
    
            then:
            outputDoesNotContain 'sys prop value at configuration time = 42'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                if (requiredMavenVersion != null) {
                    Map<String, String> props = new LinkedHashMap<>(pluginArtifact.getProperties());
                    props.put("requiredMavenVersion", requiredMavenVersion);
                    pluginArtifact = pluginArtifact.setProperties(props);
                }
            } catch (ArtifactDescriptorException e) {
                throw new PluginResolutionException(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

            Map<String, String> props = new HashMap<>();
            if (recessive != null) {
                props.putAll(recessive);
            }
            if (dominant != null) {
                props.putAll(dominant);
            }
            return props;
        }
    
        private Artifact getRelocation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

         */
        def createJarWithProperties(String path, Map<String, ?> properties = [source: 1]) {
            def props = new Properties()
            def sw = new StringWriter()
            props.putAll(properties.collectEntries { k, v -> [k, String.valueOf(v)] })
            props.setProperty(path, testDirectory.path)
            props.store(sw, null)
            file(path).delete()
            createZip(path) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

        def "build logic can read standard system property #prop without declaring access"() {
            file("buildSrc/src/main/java/SneakyPlugin.java") << """
                import ${Project.name};
                import ${Plugin.name};
    
                public class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        System.out.println("$prop = " + System.getProperty("$prop"));
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

            def cl = transformAndLoad(SystemPropertyAccessingThing)
    
            when:
            cl.readProperty()
    
            then:
            1 * listener.systemPropertyQueried("prop", null, SystemPropertyAccessingThing.name)
            0 * listener._
    
            cleanup:
            InstrumentedInputs.discardListener()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
Back to top