Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for Child1 (0.19 sec)

  1. tests/associations_test.go

    	parent := Parent{}
    	DB.Create(&parent)
    
    	child := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference"}
    	child1 := Child{ParentID: &parent.ID, Parent: &parent, Name: "HasManyCircularReference1"}
    
    	parent.Children = []*Child{&child, &child1}
    	DB.Save(&parent)
    
    	var children []*Child
    	DB.Where("parent_id = ?", parent.ID).Find(&children)
    Go
    - Registered: Sun Apr 14 09:35:11 GMT 2024
    - Last Modified: Wed Feb 08 08:29:09 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/parent-inheritance/child3.xml

    <project>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <packaging>pom</packaging>
        <modelVersion>4.0.0</modelVersion>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Aug 05 21:42:06 GMT 2009
    - 181 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/child.xml

    -->
    
    <model>
    
      <extend>project.xml</extend>
    
      <parent>
        <groupId>maven</groupId>
        <artifactId>maven-project-test</artifactId>
        <version>1.0-beta-9</version>
      </parent>
    
      <artifactId>child-artifact</artifactId>
      <groupId>maven</groupId>
      <version>1.0-beta-9</version>
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Wed Feb 28 22:49:30 GMT 2007
    - 1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/parent-inheritance/pom.xml

    <project>
      <parent>
        <groupId>gid</groupId>
        <artifactId>child-3</artifactId>
        <version>1.0</version>
        <relativePath>child3.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>child-2</artifactId>
      <packaging>pom</packaging>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Aug 05 21:42:06 GMT 2009
    - 279 bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            // load the child project, which inherits from p0...
            MavenProject project1 = getProject(pom1);
    
            System.out.println("\n\n");
            System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
            System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
            System.out.println(
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  6. maven-core/src/test/resources-project-builder/plugin-config-append/no-profile/subproject/pom.xml

                <stringParam>CHILD-1</stringParam>
                <stringParam>CHILD-3</stringParam>
                <stringParam>CHILD-2</stringParam>
                <stringParam>CHILD-4</stringParam>
              </stringParams>
              <listParam combine.children="append">
                <!-- NOTE: These values are deliberately not in alpha order! -->
                <listParam>CHILD-1</listParam>
                <listParam>CHILD-3</listParam>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.3K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/project/harness/Xpp3DomNodeIterator.java

            return child != null;
        }
    
        private void filterChildren(int position) {
            for (; position > filteredChildren.size() && filteredIndex < children.size(); filteredIndex++) {
                XmlNode child = children.get(filteredIndex);
                if (testNode(child)) {
                    filteredChildren.add(child);
                }
            }
        }
    
        private boolean testNode(XmlNode node) {
            if (test == null) {
    Java
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/merged-plugin-exec-order/w-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <id>child-1</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-1</goal>
                </goals>
              </execution>
              <execution>
                <id>child-2</id>
                <phase>validate</phase>
                <goals>
                  <goal>child-2</goal>
                </goals>
              </execution>
              <execution>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/limited-inheritance/child/pom.xml

      </parent>
    
      <artifactId>child</artifactId>
    
      <organization>
        <name>child-org</name>
      </organization>
    
      <scm>
        <developerConnection>https://child.url/scm</developerConnection>
      </scm>
      <issueManagement>
        <url>https://child.url/issues</url>
      </issueManagement>
      <ciManagement>
        <system>child-ci</system>
        <url>https://child.url/ci</url>
      </ciManagement>
    XML
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/groovy/gradlebuild/docs/XmlSpecification.groovy

                if (prettyPrint && !inlineContent) {
                    trimmedContent = element.childNodes.inject([]) { list, child ->
                        if (!(child instanceof Text) || child.textContent.trim().length() != 0) {
                            list << child
                        }
                        return list
                    }
                }
    
                if (trimmedContent.isEmpty()) {
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 4.1K bytes
    - Viewed (0)
Back to top