Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for ExtraInfo (0.15 sec)

  1. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioFileCustomizationIntegrationTest.groovy

                        globals.appendNode("ExtraInfo", "Some extra info")
                        globals.appendNode("ProjectName", project.name)
                    }
                }
            }
        }
    """
            and:
            run "visualStudio"
    
            then:
            final projectFile = projectFile("mainExe.vcxproj")
            projectFile.globals.ExtraInfo[0].text() == "Some extra info"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyModuleDescriptorConverter.java

        }
    
        @SuppressWarnings("deprecation")
        public Map<NamespaceId, String> extractExtraAttributes(ModuleDescriptor ivyDescriptor) {
            Map<String, String> extraInfo = ivyDescriptor.getExtraInfo();
            return extraInfo.entrySet().stream().collect(
                Collectors.toMap(e -> NamespaceId.decode(e.getKey()), Map.Entry::getValue));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

            String reason = Joiner.on(" and ").join(reasons);
            if (shouldPrintLog(expirationStatus)) {
    
                String when = expirationStatus == GRACEFUL_EXPIRE ? "after the build" : "immediately";
                String extraInfo = expirationStatus == GRACEFUL_EXPIRE
                    ? "The daemon will restart for the next build, which may increase subsequent build times"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/MetadataDescriptorFactoryTest.groovy

            when:
            def descriptor = factory.createDescriptor(IvyModuleDescriptor)
    
            then:
            descriptor.branch == "branch"
            descriptor.ivyStatus == "status"
            descriptor.extraInfo.asMap() == [(new QName("foo")): "bar"]
        }
    
        def 'exposes pom descriptor if pom metadata present'() {
            given:
            MavenModuleResolveMetadata metadata = Stub()
            metadata.getPackaging() >> "pack"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorSpec.java

        /**
         * Returns the extra info element spec for this publication
         */
        IvyExtraInfoSpec getExtraInfo();
    
        /**
         * Adds a new extra info element to the publication
         */
        void extraInfo(String namespace, String elementName, String value);
    
        /**
         * Creates, configures and adds a license to this publication.
         *
         * @since 4.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/DefaultComponentMetadataHandlerTest.groovy

            with(capturedDescriptor1) {
                extraInfo.asMap() == [(new QName(id1.namespace, id1.name)): "info1 value", (new QName(id2.namespace, id2.name)): "info2 value"]
            }
            capturedDescriptor2 instanceof IvyModuleDescriptor
            with(capturedDescriptor2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/IvyDescriptorFileGeneratorTest.groovy

                info.description[0].@homepage == "http://example.com"
            }
        }
    
        def "writes supplied extra info elements" () {
            when:
            descriptor.extraInfo("http://namespace/foo", "foo", "fooValue")
            descriptor.extraInfo("http://namespace/bar", "bar", "barValue")
    
            then:
            ivyXml.info."foo".size() == 1
            ivyXml.info."foo"[0].namespaceURI() == "http://namespace/foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializer.java

                writeAttributes(metadata.getAttributes());
            }
    
            private void writeExtraInfo(Map<NamespaceId, String> extraInfo) throws IOException {
                writeCount(extraInfo.size());
                for (Map.Entry<NamespaceId, String> entry : extraInfo.entrySet()) {
                    NamespaceId namespaceId = entry.getKey();
                    writeString(namespaceId.getNamespace());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioIncrementalIntegrationTest.groovy

                        projectFile.withXml { xml ->
                            Node globals = xml.asNode().PropertyGroup.find({it.'@Label' == 'Globals'}) as Node
                            globals.appendNode("ExtraInfo", "Some extra info")
                            globals.appendNode("ProjectName", project.name)
                        }
            """
            run "visualStudio"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            "someBranch_ぴ₦ガき∆ç√∫" | "release_ぴ₦ガき∆ç√∫"
        }
    
        def "delegates with valid extra info elements" () {
            given:
            def descriptor = ivyDescriptor()
            elements.each { descriptor.extraInfo(it, it, "${it}Value") }
            def publication = new IvyNormalizedPublication("pub-name", coordinates, ivyFile(descriptor), emptySet())
    
            when:
            publisher.publish(publication, repository)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top