Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,245 for a_child (0.18 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/empty-urls-child.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>inheritance</groupId>
        <artifactId>empty</artifactId>
        <version>1</version>
      </parent>
      <artifactId>child</artifactId>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls2-child.xml

      <name>Model urls inheritance test child</name>
    
      <scm>
        <url>https://domain.org/override</url><!-- check that this won't impact child.site.url.inherit.append.path attribute inheritance -->
      </scm>
      <distributionManagement>
        <site><!-- overriding 1 element will reset all elements, but not child.site.url.inherit.append.path attribute -->
          <name>reset</name>
        </site>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model inheritance test parent: module directory != artifactId</name>
      <description>
        artifactId == "child-artifact-id"
        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/no-append-urls-child.xml

        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecTest.groovy

            spec.filteringCharset = "ISO_8859_1"
    
            DefaultCopySpec child = unpackWrapper(spec."${method}"("child") {})
    
            then: //children still have these non defaults
            !child.caseSensitive
            !child.includeEmptyDirs
            child.duplicatesStrategy == DuplicatesStrategy.EXCLUDE
            child.fileMode == 1
            child.dirMode == 2
            child.filteringCharset == "ISO_8859_1"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 26 08:05:50 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>child-artifact-id</artifactId>
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  8. src/net/http/routing_tree.go

    		panic("non-nil leaf fields")
    	}
    	n.pattern = p
    	n.handler = h
    }
    
    // addChild adds a child node with the given key to n
    // if one does not exist, and returns the child.
    func (n *routingNode) addChild(key string) *routingNode {
    	if key == "" {
    		if n.emptyChild == nil {
    			n.emptyChild = &routingNode{}
    		}
    		return n.emptyChild
    	}
    	if c := n.findChild(key); c != nil {
    		return c
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/LibrariesSourceGenerator.java

            for (ClassNode child : classNode.getChildren()) {
                writeLibraryAccessorClass(child, deprecated);
                writeLibrarySubClasses(child, deprecated);
            }
        }
    
        private void writeVersionSubClasses(ClassNode classNode) throws IOException {
            for (ClassNode child : classNode.getChildren()) {
                writeVersionAccessorClass(child);
                writeVersionSubClasses(child);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 36K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
Back to top