Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 399 for Child (0.09 sec)

  1. src/cmd/compile/internal/types2/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/go/types/scope.go

    		i++
    	}
    	sort.Strings(names)
    	return names
    }
    
    // NumChildren returns the number of scopes nested in s.
    func (s *Scope) NumChildren() int { return len(s.children) }
    
    // Child returns the i'th child scope for 0 <= i < NumChildren().
    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/runtime/tracestack.go

    		w.varint(frame.funcID)
    		w.varint(frame.fileID)
    		w.varint(frame.line)
    	}
    
    	// Recursively walk all child nodes.
    	for i := range node.children {
    		child := node.children[i].Load()
    		if child == nil {
    			continue
    		}
    		w = dumpStacksRec((*traceMapNode)(child), w, stackBuf)
    	}
    	return w
    }
    
    // makeTraceFrames returns the frames corresponding to pcs. It may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            settingsFile << "include 'child'"
            buildFile << """
            wrapper { distributionUrl = '${otherVersion.binDistribution.toURI()}' }
            allprojects {
                task check { doLast { assert gradle.gradleVersion == '${otherVersion.version.version}' } }
            }
            """
            projectDir.file('child').createDir()
            otherVersion.binDistribution.makeReadable()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelMapIntegrationTest.groovy

                @Managed
                interface Parent {
                    String getName();
                    void setName(String string)
    
                    ModelMap<Child> getChildren();
                }
    
                @Managed
                interface Child extends Named {
                    ModelSet<GrandChild> getChildren();
                }
    
                @Managed
                interface GrandChild {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

        }
    
        /**
         * Makes the parent directory of the file, and any non existent parents.
         *
         * @param child The file to create the parent dir for
         * @return The parent dir file
         * @see #mkdirs(java.io.File)
         */
        public static File parentMkdirs(File child) {
            File parent = child.getParentFile();
            mkdirs(parent);
            return parent;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                .withModuleMetadata()
            a.getArtifact("file1.jar").file << "file 1"
            a.getArtifact("file2.jar").file << "file 2"
            a.getArtifact("../sibling/file3.jar").file << "file 3"
            a.getArtifact("child/file4.jar").file << "file 4"
            a.publish()
            a.moduleMetadata.file.text = """
    {
        "formatVersion": "${FORMAT_VERSION}",
        "variants": [
            {
                "name": "lot-o-files",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            _ * childTaskDescriptor.getId() >> 2
            _ * childTaskDescriptor.getName() >> 'some child'
            _ * childTaskDescriptor.getParentId() >> 1
    
            def childEvent = Mock(InternalOperationStartedProgressEvent)
            _ * childEvent.getDisplayName() >> 'child event'
            _ * childEvent.getEventTime() >> 999
            _ * childEvent.getDescriptor() >> childTaskDescriptor
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_riscv64.s

    	// Copy mp, gp, fn off parent stack for use by child.
    	MOV	mp+16(FP), T0
    	MOV	gp+24(FP), T1
    	MOV	fn+32(FP), T2
    
    	MOV	T0, -8(A1)
    	MOV	T1, -16(A1)
    	MOV	T2, -24(A1)
    	MOV	$1234, T0
    	MOV	T0, -32(A1)
    
    	MOV	$SYS_clone, A7
    	ECALL
    
    	// In parent, return.
    	BEQ	ZERO, A0, child
    	MOVW	ZERO, ret+40(FP)
    	RET
    
    child:
    	// In child, on new stack.
    	MOV	-32(X2), T0
    	MOV	$1234, A0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/os/exec/exec_test.go

    		cmd.Process.Kill()
    	}()
    
    	go func() {
    		defer wg.Done()
    		// Send the wrong string, so that the child fails even
    		// if the other goroutine doesn't manage to kill it first.
    		// This test is to check that the race detector does not
    		// falsely report an error, so it doesn't matter how the
    		// child process fails.
    		io.Copy(stdin, strings.NewReader("unexpected string"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top