Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,232 for child7 (0.11 sec)

  1. maven-model-builder/src/site/apt/index.apt

      property is not inherited from a POM to its child: child's POM will use child artifact id if property is not
      set.
    
      ** since Maven 3.6.1, inheritance can avoid appending any path to parent value by setting model attribute value to
      <<<false>>> for each url:
      <<<project/@child.project.url.inherit.append.path>>>,
      <<<project/distributionManagement/site/@child.site.url.inherit.append.path>>>,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/projects/base-directory-alignment/project-which-needs-directory-alignment-child.xml

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 1.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/base-directory-alignment/subproject/project-which-needs-directory-alignment-child.xml

    Britton Isbell <******@****.***> 1240982438 +0000
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 1011 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DefaultCopySpecResolutionTest.groovy

            DefaultCopySpec child = copySpec()
            child.include('child-include')
            child.exclude('child-exclude')
            child.include(childInclude)
            child.exclude(childExclude)
    
            PatternSet patterns = child.buildResolverRelativeToParent(parentSpec.buildRootResolver()).patternSet
    
            then:
            patterns.includes == ['parent-include', 'child-include'] as Set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 28 12:39:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. pkg/util/iptree/iptree.go

    	if n.child[0] == nil &&
    		n.child[1] == nil {
    		return
    	}
    	// find the child and merge it
    	var child *node[T]
    	if n.child[0] != nil {
    		child = n.child[0]
    	} else if n.child[1] != nil {
    		child = n.child[1]
    	}
    	n.prefix = child.prefix
    	n.public = child.public
    	n.val = child.val
    	n.child = child.child
    	// remove any references from the deleted node
    	// to avoid memory leak
    	child.child[0] = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  6. pkg/apis/flowcontrol/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("priorityLevelConfiguration").Child("name"), spec.PriorityLevelConfiguration.Name, msg))
    		}
    	} else {
    		allErrs = append(allErrs, field.Required(fldPath.Child("priorityLevelConfiguration").Child("name"), "must reference a priority level"))
    	}
    	for i, rule := range spec.Rules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  7. 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>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/ValuedVfsHierarchyTest.groovy

            "some/location/intermediate/child"              | ['intermediate/child': [1]]
            "some/location/intermediate/child/sub1/leaf1"   | ['intermediate/child/sub1/leaf1': [1], 'sub1/leaf1': [4, 3]]
            "some/location/intermediate/child/sub1/leaf2"   | ['intermediate/child/sub1/leaf2': [1], 'sub1/leaf2': [4, 3]]
            "some/location/intermediate/child/sub3/leaf"    | ['sub3/leaf': [4, 3], 'intermediate/child/sub3/leaf': [1]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:21:57 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. pkg/apis/networking/validation/validation.go

    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), port.Port.IntVal, "must be greater than or equal to `port`"))
    				}
    				for _, msg := range validation.IsValidPortNum(int(*port.EndPort)) {
    					allErrs = append(allErrs, field.Invalid(portPath.Child("endPort"), *port.EndPort, msg))
    				}
    			}
    		} else {
    			if port.EndPort != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. tensorflow/cc/framework/scope_test.cc

      Scope root = Scope::NewRootScope();
      Scope child = root.NewSubScope("child");
      EXPECT_EQ(child.GetUniqueNameForOp("add"), "child/add");
      EXPECT_EQ(child.GetUniqueNameForOp("add"), "child/add_1");
      EXPECT_EQ(child.GetUniqueNameForOp("mul"), "child/mul");
    
      Scope child_1 = root.NewSubScope("child");
      EXPECT_EQ(child_1.GetUniqueNameForOp("add"), "child_1/add");
      EXPECT_EQ(child_1.GetUniqueNameForOp("add"), "child_1/add_1");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
Back to top