Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,194 for Child (0.08 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-parent.xml

      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
      <modules>
        <module>../child-artifact-id</module><!-- use child artifact id, even if different from directory -->
      </modules>
    
      <!-- 5 urls in the pom will be inherited with path added -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

        interface Iface {}
    
        class Child extends Base implements Serializable, Iface {
            @Nullable
            Object doSomething() { null }
        }
    
        def "walking type hierarchy happens breadth-first"() {
            def visitor = Mock(Types.TypeVisitor)
            when:
            Types.walkTypeHierarchy(Child, [Object, GroovyObject], visitor)
    
            then: 1 * visitor.visitType(Child) >> Types.TypeVisitResult.CONTINUE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation.go

    	allErrs = append(allErrs, validatePodInfoOnMount(spec.PodInfoOnMount, fldPath.Child("podInfoOnMount"))...)
    	allErrs = append(allErrs, validateStorageCapacity(spec.StorageCapacity, fldPath.Child("storageCapacity"))...)
    	allErrs = append(allErrs, validateFSGroupPolicy(spec.FSGroupPolicy, fldPath.Child("fsGroupPolicy"))...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_temp.txt

    # 1. /tmp/go.mod exists
    # 2. run 'go mod tidy' in /tmp or in the child directory not having go.mod.
    
    [GOOS:plan9] stop  # Plan 9 has no $TMPDIR variable to set.
    
    env GOROOT=$TESTGO_GOROOT
    env TMP=$WORK
    env TMPDIR=$WORK
    mkdir $WORK/child
    
    ! go mod tidy
    ! stdout .
    stderr 'go: go.mod file not found in current directory or any parent directory'
    
    cd $WORK/child
    ! go mod tidy
    ! stdout .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 640 bytes
    - Viewed (0)
  5. pkg/apis/rbac/validation/validation.go

    		}
    		if !isNamespaced && len(subject.Namespace) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("namespace"), ""))
    		}
    
    	case rbac.UserKind:
    		// TODO(ericchiang): What other restrictions on user name are there?
    		if subject.APIGroup != rbac.GroupName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:48:21 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/resources/org/gradle/reporting/report.js

            for (var i = 0; i < children.length; i++) {
                var child = children.item(i);
    
                if (child.nodeType === 1 && child.nodeName === name) {
                    if (targetClass && child.className.indexOf(targetClass) < 0) {
                        continue;
                    }
    
                    elements.push(child);
                }
            }
    
            return elements;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/core/saved_model_utils.cc

      for (const auto& child : root.children()) {
        if (child.local_name() == "signatures") {
          if (child.node_id() >= saved_objects.nodes().size()) {
            return errors::FailedPrecondition(
                "Signature object had child node id ", child.node_id(),
                " which exceeds the size of the set of nodes");
          }
          signatures = &saved_objects.nodes(child.node_id());
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 12 19:17:46 UTC 2023
    - 24K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/graph/nodes/InvertedRenderableModuleResult.java

            for (ResolvedDependencyResult dependent : module.getDependents()) {
                InvertedRenderableModuleResult child = new InvertedRenderableModuleResult(dependent);
                if (!children.containsKey(child.getId())) {
                    children.put(child.getId(), child);
                }
            }
            return new LinkedHashSet<>(children.values());
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 27 14:58:38 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/common/equality.go

    		if len(oldAsMap) != len(newAsMap) {
    			return false
    		}
    
    		for k := range newAsMap {
    			child := r.Key(k)
    			if child == nil {
    				// Un-correlatable child due to key change.
    				// Objects are not equal.
    				return false
    			} else if !child.CachedDeepEqual() {
    				// If one child is not equal the entire object is not equal
    				return false
    			}
    		}
    
    		return true
    
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 21:53:21 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. src/runtime/tracetype.go

    	w.varint(uint64(typ.PtrBytes))
    	w.varint(uint64(len(typName)))
    	w.stringData(typName)
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpTypesRec((*traceMapNode)(child), w)
    	}
    	return w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top