Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 652 for child3 (0.21 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/ClassLoaderScopeIdentifierTest.groovy

        }
    
        def "creates child"() {
            def child = root.child(root.name)
    
            expect:
            child.localId() == child.localId()
            child.localId() != child.exportId()
            child.exportId() != child.localId()
            child.exportId() == child.exportId()
        }
    
        def "children with same name are equivalent"() {
            def child1 = root.child(root.name)
            def child2 = root.child(root.name)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 05 18:43:41 UTC 2019
    - 2.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/plugins/ide/internal/tooling/DefaultGradleProjectTest.groovy

            def child21 = new DefaultGradleProject().setProjectIdentifier(new DefaultProjectIdentifier(new File("."), ":child2:child21"))
    
            root.children = [child1, child2]
            child1.children = [child11, child12]
            child2.children = [child21]
    
            expect:
            root.findByPath(':') == root
            root.findByPath('') == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/dag_object_graph.py

        super(TestModule, self).__init__()
        self.child1 = Child()
        self.child2 = self.child1
    
      # CHECK: tf_saved_model.global_tensor
      # CHECK-SAME: tf_saved_model.exported_names = ["child1.my_variable", "child2.my_variable"]
    
    
    if __name__ == '__main__':
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. 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>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r72/CompositeBuildCrossVersionSpec.groovy

            model.projectDirectory == file("buildSrc")
        }
    
        def buildsWithBuildSrc() {
            buildSrc(projectDir)
            def child = "child"
            settingsFile << """
                includeBuild("$child")
            """
    
    
            def childBuild = file(child)
            buildSrc(childBuild)
            def nested = "nested"
            childBuild.file("settings.gradle") << """
                includeBuild("$nested")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/inheritance/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)
  7. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/CompositeOperationTest.groovy

    class CompositeOperationTest extends Specification {
    
        def "execution time is sum of execution time of child operations"() {
            given:
            Operation child1 = operation(12)
            Operation child2 = operation(10)
            def operation = new CompositeOperation<Operation>([child1, child2])
    
            expect:
            operation.elapsedTime == 22
        }
    
        def operation(long elapsedTime) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 12:58:53 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/plugin-configuration-child.xml

            <configuration>
              <defaults>
                <parent>child</parent>
                <child>child</child>
              </defaults>
              <appends combine.children="append">
                <parent>child</parent>
                <child>child</child>
              </appends>
              <overrides combine.self="override">
                <parent>child</parent>
                <child>child</child>
              </overrides>
            </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. src/net/http/cgi/child.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements CGI from the perspective of a child
    // process.
    
    package cgi
    
    import (
    	"bufio"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/url"
    	"os"
    	"strconv"
    	"strings"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/graph_builder_test.go

    	"reflect"
    	"testing"
    )
    
    func TestGetAlternateOwnerIdentity(t *testing.T) {
    	ns1child1 := makeID("v1", "Child", "ns1", "child1", "childuid11")
    	ns1child2 := makeID("v1", "Child", "ns1", "child2", "childuid12")
    
    	ns2child1 := makeID("v1", "Child", "ns2", "child1", "childuid21")
    
    	clusterchild1 := makeID("v1", "Child", "", "child1", "childuidc1")
    
    	var (
    		nsabsentparentns1 = makeID("v1", "NSParent", "ns1", "parentname", "parentuid")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 17 15:49:32 UTC 2020
    - 7.6K bytes
    - Viewed (0)
Back to top