Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for ExtraInfo (0.22 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyDescriptor.groovy

            description = ivy.info[0].description[0]
            licenses = ivy.info[0].license
            authors = ivy.info[0].ivyauthor
    
            extraInfo = [:]
            ivy.info[0].children().findAll { it.name() instanceof QName }.each {
                extraInfo[new javax.xml.namespace.QName(it.name().namespaceURI, it.name().localPart)] = it.text()
            }
    
            ivy.configurations.conf.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProviderTest.groovy

        def "can provide Ivy descriptor"() {
            given:
            def extraInfo = [:]
            extraInfo.put(new NamespaceId("baz", "foo"), "extraInfoValue")
    
            def metaData = Stub(IvyModuleResolveMetadata)
            metaData.status >> "test"
            metaData.branch >> "branchValue"
            metaData.extraAttributes >> ImmutableMap.copyOf(extraInfo)
    
            def componentState = Stub(ModuleComponentGraphResolveState)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

        }
    
        IvyHttpModule withExtraAttributes(Map extraAttributes) {
            backingModule.withExtraAttributes(extraAttributes)
            return this
        }
    
        IvyHttpModule withExtraInfo(Map extraInfo) {
            backingModule.withExtraInfo(extraInfo)
            return this
        }
    
        IvyHttpModule withBranch(String branch) {
            backingModule.withBranch(branch)
            return this
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            return this
        }
    
        /**
         * Keys in extra info will be prefixed with namespace prefix "ns" in this fixture.
         */
        IvyFileModule withExtraInfo(Map extraInfo) {
            this.extraInfo.putAll(extraInfo)
            return this
        }
    
        @Override
        ModuleArtifact getIvy() {
            return moduleArtifact([name: "ivy", type: "ivy", ext: "xml"], ivyPattern)
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. 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 (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - Node podresources API now includes init containers with containerRestartPolicy of `Always` when `SidecarContainers` feature is enabled....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top