Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getHomepage (0.28 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorDescription.java

        /**
         * The text of this description.
         */
        Property<String> getText();
    
        /**
         * The homepage of the publication of this description.
         */
        Property<String> getHomepage();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyModuleDescriptorDescription.java

            homepage = objectFactory.property(String.class);
        }
    
        @Override
        public Property<String> getText() {
            return text;
        }
    
        @Override
        public Property<String> getHomepage() {
            return homepage;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/tasks/IvyDescriptorFileGenerator.java

                        .endElement();
                }
    
                if (model.description != null) {
                    xmlWriter.startElement("description")
                        .attribute("homepage", model.description.getHomepage().getOrNull())
                        .characters(model.description.getText().getOrElse(""))
                        .endElement();
                }
    
                if (model.extraInfo != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. test-site/activator-launch-1.3.2.jar

    DependencyDescriptor mediate(DependencyDescriptor); public final org.apache.ivy.core.module.id.ModuleRules getAllDependencyDesc(); public final void addLicense(License); public final License[] getLicenses(); public final String getHomePage(); public final void setHomePage(String); public final String getDescription(); public final void setDescription(String); public final long getLastModified(); public final void setLastModified(long); public final org.apache.ivy.plugins.namespace.Namespace getNamespace();...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                        // nothing to do, we don't store this
                        return;
                    } else if (state == State.INFO && "description".equals(qName)) {
                        getMd().setHomePage(substitute(attributes.getValue("homepage")));
                        state = State.DESCRIPTION;
                        buffer = new StringBuffer();
                    } else if (state == State.INFO && isOtherNamespace(qName)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top