Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 399 for Child (0.26 sec)

  1. tests/integration/pilot/common/traffic.go

    			t.Fatal("TrafficTestCase: must not specify both call and children")
    		}
    
    		if c.call != nil {
    			c.call(t, c.opts)
    		}
    
    		for _, child := range c.children {
    			t.NewSubTest(child.name).Run(func(t framework.TestContext) {
    				child.call(t, child.opts)
    			})
    		}
    	}
    	if c.name != "" {
    		t.NewSubTest(c.name).Run(job)
    	} else {
    		job(t)
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/context/context.go

    // Context (the parent) and return a derived Context (the child) and a
    // [CancelFunc]. Calling the CancelFunc cancels the child and its
    // children, removes the parent's reference to the child, and stops
    // any associated timers. Failing to call the CancelFunc leaks the
    // child and its children until the parent is canceled or the timer
    // fires. The go vet tool checks that CancelFuncs are used on all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                children = new ArrayList<>();
    
                for (ProjectBuildingResult result : results) {
                    ExceptionSummary child = handle(result);
                    if (child != null) {
                        children.add(child);
                    }
                }
    
                message = "The build could not read " + children.size() + " project" + (children.size() == 1 ? "" : "s");
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/dwarfgen/dwinl.go

    // transitively include all of the ranges for its child inlines.
    func unifyCallRanges(inlcalls dwarf.InlCalls, idx int) {
    	ic := &inlcalls.Calls[idx]
    	for _, childIdx := range ic.Children {
    		// First make sure child ranges are unified.
    		unifyCallRanges(inlcalls, childIdx)
    
    		// Then merge child ranges into ranges for this inline.
    		cic := inlcalls.Calls[childIdx]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    			mainIdx := ex.IdxFromOffset(maindie.Offset)
    			childDies := ex.Children(mainIdx)
    			var iEntry *dwarf.Entry
    			for _, child := range childDies {
    				if child.Tag == dwarf.TagVariable && child.Val(dwarf.AttrName).(string) == "i" {
    					iEntry = child
    					break
    				}
    			}
    			if iEntry == nil {
    				t.Fatalf("didn't find DW_TAG_variable for i in main.main")
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. src/slices/zsortanyfunc.go

    	root := lo
    	for {
    		child := 2*root + 1
    		if child >= hi {
    			break
    		}
    		if child+1 < hi && (cmp(data[first+child], data[first+child+1]) < 0) {
    			child++
    		}
    		if !(cmp(data[first+root], data[first+child]) < 0) {
    			return
    		}
    		data[first+root], data[first+child] = data[first+child], data[first+root]
    		root = child
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

            for (AnnotationExpr child : node.getAnnotations()) {
                if (child instanceof SingleMemberAnnotationExpr && child.getNameAsString().endsWith("ReplacedBy")) {
                    currentElement.setReplacement(((SingleMemberAnnotationExpr) child).getMemberValue().asLiteralStringValueExpr().getValue());
                }
                currentElement.addAnnotationTypeName(child.getNameAsString());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginRegistryTest.groovy

            e.cause instanceof ClassNotFoundException
        }
    
        def "child delegates to parent registry to locate implementation from an id"() throws Exception {
            def lookupScope = Mock(ClassLoaderScope)
            def url = writePluginProperties(TestPlugin1)
    
            given:
            PluginRegistry child = pluginRegistry.createChild(lookupScope)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 13K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ModuleDependencyExcludeResolveIntegrationTest.groovy

            'non-matching group'     | [group: 'other']  | []
            'child name of sibling'  | [module: 'e']     | []
            'child group of sibling' | [group: 'e']      | []
            'all child modules'      | [module: '*']     | ['d']
            'all child groups'       | [group: '*']      | ['d']
            'name child module'      | [module: 'd']     | ['d']
            'name child group'       | [group: 'd']      | ['d']
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. src/encoding/xml/read_test.go

    	Bs       []bool
    	BPtrs    []*bool
    	Bytes    []byte
    	BytesPtr *[]byte
    	S        string
    	SPtr     *string
    	Ss       []string
    	SPtrs    []*string
    	MyI      MyInt
    	Child    Child
    	Children []Child
    	ChildPtr *Child
    	ChildToEmbed
    }
    
    const (
    	emptyXML = `
    <Parent>
        <I></I>
        <IPtr></IPtr>
        <Is></Is>
        <IPtrs></IPtrs>
        <F></F>
        <FPtr></FPtr>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
Back to top