Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 983 for child7 (0.55 sec)

  1. platforms/core-runtime/base-services/src/integTest/groovy/org/gradle/internal/work/ProjectLockStatisticsIntegrationTest.groovy

            createDirs("child")
            settingsFile << """
                include ':child'
            """
            buildFile << """
                apply plugin: "java"
    
                task wait {
                    doLast {
                        sleep 2000
                    }
                }
    
                project(':child') {
                    configurations {
                        foo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/groovy/MatchesSignatureGeneratingSignatureTreeVisitor.java

                children.forEach((entry, child) -> {
                    if (entry.kind != VARARG) {
                        generateNormalCallChecksAndVisitSubtree(entry, child, paramIndex);
                    }
                });
                if (hasParamMatchers) {
                    result.endControlFlow();
                }
                children.forEach((entry, child) -> {
                    if (entry.kind == VARARG) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/test/groovy/org/gradle/api/plugins/HelpTasksPluginSpec.groovy

        }
    
        def "tasks description reflects whether project has sub-projects or not"() {
            given:
            def child = TestUtil.createChildProject(project, "child")
    
            when:
            project.pluginManager.apply(HelpTasksPlugin)
            child.pluginManager.apply(HelpTasksPlugin)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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