Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for allAttributes (0.38 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

            ImmutableMap.Builder<String, Object> allAttributes = ImmutableMap.builder();
            attributes.forEach((key, value) -> {
                if (value != null && !String.valueOf(value).isEmpty()) {
                    allAttributes.put(key, value);
                }
            });
            allAttributes.put("kind", getKind());
            allAttributes.put("path", path);
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/GradleEnterprisePluginLegacyContactPointFixture.groovy

            assert output.contains("buildScan.unsupportedMessage: $unsupported")
        }
    
        BuildScanConfig.Attributes attributes(String output) {
            def all = allAttributes(output)
            all.empty ? null : all.first()
        }
    
        List<BuildScanConfig.Attributes> allAttributes(String output) {
            output.findAll("buildScan\\.attributes: \\{(.+)\\}\\\n") {
                it[1]
            }.collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top