Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,232 for child7 (0.13 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/ValuedVfsHierarchy.java

                    child.visitValuesRelatedTo(pathInChild, visitor);
                    return "";
                }
    
                @Override
                public String handleAsAncestorOfChild(String childPathFromAncestor, ValuedVfsHierarchy<T> child) {
                    visitor.visitChildren(
                        child.getValues(),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 17:23:29 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. pkg/api/pod/warnings.go

    		}
    		if v.CephFS != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("cephfs")))
    		}
    		if v.RBD != nil {
    			warnings = append(warnings, fmt.Sprintf("%s: deprecated in v1.28, non-functional in v1.31+", fieldPath.Child("spec", "volumes").Index(i).Child("rbd")))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-expected.xml

      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
      <!-- 5 inherited urls with ../${project.artifactId} added to parent -->
      <url>http://www.apache.org/path/to/parent/../child-artifact-id/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/cryptobyte/builder.go

    	if b.child == nil {
    		return
    	}
    	b.child.flushChild()
    	child := b.child
    	b.child = nil
    
    	if child.err != nil {
    		b.err = child.err
    		return
    	}
    
    	length := len(child.result) - child.pendingLenLen - child.offset
    
    	if length < 0 {
    		panic("cryptobyte: internal error") // result unexpectedly shrunk
    	}
    
    	if child.pendingIsASN1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. test/torture.go

    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U).
    		Child(0).(*U)
    }
    
    func ChainUNoAssert(u *U) *U {
    	return u.Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    		Child(0).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 01 07:20:51 UTC 2014
    - 7.7K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/projects/child-which-inherits-from-super-model.xml

    Michael Osipov <******@****.***> 1416744059 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Nov 23 12:04:30 UTC 2014
    - 954 bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectoryNodeTest.groovy

            interaction { noMoreInteractions() }
    
            where:
            vfsSpec << onlyDirectChildren(NO_COMMON_PREFIX)
        }
    
        def "invalidate a single child creates a partial directory node without the child (#vfsSpec)"() {
            setupTest(vfsSpec)
    
            when:
            def resultRoot = initialRoot.invalidate(searchedPath, CASE_SENSITIVE, diffListener).get()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultComponentSpecIdentifierTest.groovy

        }
    
        def "construct child"() {
            expect:
            def id = new DefaultComponentSpecIdentifier(":project", "name")
            def child = id.child("child")
            def grandchild = child.child("grandchild")
    
            child.parent == id
            child.path == Path.path("name:child")
            child.projectScopedName == "nameChild"
    
            grandchild.parent == child
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. maven-model-builder/src/test/resources/poms/inheritance/urls-expected.xml

      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Most classical case: child in direct subdirectory with directory name == child artifactId</description>
    
      <!-- 5 inherited urls with ${project.artifactId} added to parent -->
      <url>http://www.apache.org/path/to/parent/child-artifact-id/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
Back to top