Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 1,194 for Child (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/converter_test.go

    		`unknown field "ul1.child.a"`,
    		`unknown field "ul1.child.aa"`,
    		`unknown field "ul1.child.aaa"`,
    		`unknown field "ul1.child.c"`,
    		`unknown field "ul1.child.cc"`,
    		`unknown field "ul1.child.ccc"`,
    
    		`unknown field "ul1.child.child.a"`,
    		`unknown field "ul1.child.child.aa"`,
    		`unknown field "ul1.child.child.aaa"`,
    		`unknown field "ul1.child.child.b"`,
    		`unknown field "ul1.child.child.bb"`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 16:02:13 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

                            }
                            parent.addChild(child);
                            artifacts = artifactResults.getArtifactsWithId(decoder.readSmallInt());
                            child.addParentSpecificArtifacts(parent, artifacts);
                            break;
                        case NODE_ARTIFACTS:
                            id = decoder.readSmallLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. 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)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/BaseDirFileResolverTest.groovy

            assertEquals("relative${File.separator}child".toString(), baseDirConverter.resolveAsRelativePath("relative/child"))
            assertEquals("relative${File.separator}child".toString(), baseDirConverter.resolveForDisplay("relative/child"))
        }
    
        @Test public void testResolveAbsoluteChildPathToRelativePath() {
            def absoluteFile = new File(baseDir, 'child').absoluteFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 29 17:15:52 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/ProjectBuildFileIntegrationTest.groovy

            !buildFile.exists()
    
            when:
            createDirs("child")
            settingsFile << "include 'child'"
            def initScript = file("init.gradle") << """
                rootProject { 
                    assert buildFile.canonicalPath == '${buildFile.canonicalPath.replace("\\", "\\\\")}'
                    assert project(":child").buildFile.canonicalPath == '${file("child/build.gradle").canonicalPath.replace("\\", "\\\\")}'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/cache/prog.go

    	"time"
    )
    
    // ProgCache implements Cache via JSON messages over stdin/stdout to a child
    // helper process which can then implement whatever caching policy/mechanism it
    // wants.
    //
    // See https://github.com/golang/go/issues/59719
    type ProgCache struct {
    	cmd    *exec.Cmd
    	stdout io.ReadCloser  // from the child process
    	stdin  io.WriteCloser // to the child process
    	bw     *bufio.Writer  // to stdin
    	jenc   *json.Encoder  // to bw
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. src/syscall/exec_libc2.go

    	Setsid     bool        // Create session.
    	// Setpgid sets the process group ID of the child to Pgid,
    	// or, if Pgid == 0, to the new child's process ID.
    	Setpgid bool
    	// Setctty sets the controlling terminal of the child to
    	// file descriptor Ctty. Ctty must be a descriptor number
    	// in the child process: an index into ProcAttr.Files.
    	// This is only meaningful if Setsid is true.
    	Setctty bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-merging/w-plugin-mgmt/sub/pom.xml

            <executions>
              <execution>
                <!-- NOTE: Explicitly reference "default" id here -->
                <id>default</id>
                <phase>child-default</phase>
              </execution>
              <execution>
                <id>non-default</id>
                <phase>child-non-default</phase>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            def childProject = Mock(ProjectInternal) {
                _ * getTasks() >> childTasks
                _ * getChildProjectsUnchecked() >> [:]
            }
    
            _ * project.childProjectsUnchecked >> [child: childProject]
    
            when:
            def results = resolver.selectWithName('task', project, true)
    
            then:
            1 * tasks.discoverTasks()
            1 * childTasks.discoverTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/execution/selection/DefaultBuildTaskSelector.java

                });
            }
            for (ProjectState child : project.getChildProjects()) {
                ProjectState previous = candidates.put(child.getIdentityPath().getName(), child);
                if (previous != null) {
                    throw new IllegalStateException("Duplicate child project names for " + project.getDisplayName());
                }
            }
            ProjectState child = candidates.get(childName);
            if (child != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top