Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for addgonote (0.13 sec)

  1. src/cmd/link/internal/ld/elf.go

    		for _, l := range ctxt.Library {
    			h.Write(l.Fingerprint[:])
    		}
    		addgonote(ctxt, ".note.go.abihash", ELF_NOTE_GOABIHASH_TAG, h.Sum([]byte{}))
    		addgonote(ctxt, ".note.go.pkg-list", ELF_NOTE_GOPKGLIST_TAG, pkglistfornote)
    		var deplist []string
    		for _, shlib := range ctxt.Shlibs {
    			deplist = append(deplist, filepath.Base(shlib.Path))
    		}
    		addgonote(ctxt, ".note.go.deps", ELF_NOTE_GODEPS_TAG, []byte(strings.Join(deplist, "\n")))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Dependency.java

         */
        String getScope();
    
        /**
         * The scope of this library. If <code>null</code>, the scope attribute is not added.
         * @since 4.5
         */
        void setScope(String scope);
    
        void addToNode(Node parentNode);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleDependency.java

        }
    
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> attributes = new LinkedHashMap<>();
            attributes.put("type", "module");
            attributes.put("module-name", name);
            if (exported) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/idea/model/ProjectLibraryTest.groovy

            def pathFactory = new PathFactory()
            pathFactory.addPathVariable("USER_HOME", userHome)
    
            when:
            def parent = new Node(null, "parent")
            lib.addToNode(parent, pathFactory)
    
            then:
            def writer = new StringWriter()
            def printer = new XmlNodePrinter(new IndentPrinter(writer))
            printer.print(parent)
            writer.toString().trim() == """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ProjectLibrary.java

         */
        public Set<File> getSources() {
            return sources;
        }
    
        public void setSources(Set<File> sources) {
            this.sources = sources;
        }
    
        public void addToNode(Node parentNode, PathFactory pathFactory) {
            Map<String, Object> libraryAttributes = new LinkedHashMap<>();
            libraryAttributes.put("name", name);
            if (type != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/ModuleLibrary.java

         */
        public boolean isExported() {
            return exported;
        }
    
        public void setExported(boolean exported) {
            this.exported = exported;
        }
    
        @Override
        public void addToNode(Node parentNode) {
            Map<String, Object> orderEntryAttributes = new LinkedHashMap<>();
            orderEntryAttributes.put("type", "module-library");
            orderEntryAttributes.putAll(getAttributeMapForScopeAndExported());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

                getXml().remove(libraryTable);
                return;
            }
            libraryTable.setValue(new NodeList());
            for (ProjectLibrary library : projectLibraries) {
                library.addToNode(libraryTable, pathFactory);
            }
        }
    
        private Node findProjectRootManager() {
            return findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "ProjectRootManager");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/Module.java

        }
    
        private void addDependenciesToXml() {
            Node moduleRoot = getNewModuleRootManager();
            for (Dependency dependency : dependencies) {
                dependency.addToNode(moduleRoot);
            }
        }
    
        private Node getNewModuleRootManager() {
            Node newModuleRootManager = findFirstWithAttributeValue(getChildren(getXml(), "component"), "name", "NewModuleRootManager");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  9. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.idea.model.ModuleDependency.addToNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (ModuleDependency.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
Back to top