Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 280 for respective (0.2 sec)

  1. src/go/types/unify.go

    		}
    		// By definition, a valid type argument must be in the type set of
    		// the respective type constraint. Therefore, the type argument's
    		// underlying type must be in the set of underlying types of that
    		// constraint. If there is a single such underlying type, it's the
    		// constraint's core type. It must match the type argument's under-
    		// lying type, irrespective of whether the actual type argument,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/unify.go

    		}
    		// By definition, a valid type argument must be in the type set of
    		// the respective type constraint. Therefore, the type argument's
    		// underlying type must be in the set of underlying types of that
    		// constraint. If there is a single such underlying type, it's the
    		// constraint's core type. It must match the type argument's under-
    		// lying type, irrespective of whether the actual type argument,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/script/cmds.go

    		})
    }
    
    // Wait waits for the completion of background commands.
    //
    // When Wait returns, the stdout and stderr buffers contain the concatenation of
    // the background commands' respective outputs in the order in which those
    // commands were started.
    func Wait() Cmd {
    	return Command(
    		CmdUsage{
    			Summary: "wait for completion of background commands",
    			Args:    "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Streams.java

       * and {@code streamB}. If one stream is longer than the other, the extra elements are silently
       * ignored. Elements passed to the consumer are guaranteed to come from the same position in their
       * respective source streams. For example:
       *
       * <pre>{@code
       * Streams.forEachPair(
       *   Stream.of("foo1", "foo2", "foo3"),
       *   Stream.of("bar1", "bar2"),
       *   (arg1, arg2) -> System.out.println(arg1 + ":" + arg2)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    func pathString(path []Object) string {
    	var s string
    	for i, p := range path {
    		if i > 0 {
    			s += "->"
    		}
    		s += p.Name()
    	}
    	return s
    }
    
    // objDecl type-checks the declaration of obj in its respective (file) environment.
    // For the meaning of def, see Checker.definedType, in typexpr.go.
    func (check *Checker) objDecl(obj Object, def *TypeName) {
    	if check.conf.Trace && obj.Type() == nil {
    		if check.indent == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/net/http/transfer.go

    	p[0] = br.b
    	return 1, io.EOF
    }
    
    // transferWriter inspects the fields of a user-supplied Request or Response,
    // sanitizes them without changing the user object and provides methods for
    // writing the respective header, body and trailer in wire format.
    type transferWriter struct {
    	Method           string
    	Body             io.Reader
    	BodyCloser       io.Closer
    	ResponseToHEAD   bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/go/types/issues_test.go

    	// The src strings (without prefix) are constructed such that the number of semicolons
    	// plus one corresponds to the number of fields expected in the respective struct.
    	for _, src := range []string{
    		`struct { x Missing }`,
    		`struct { Missing }`,
    		`struct { *Missing }`,
    		`struct { unsafe.Pointer }`,
    		`struct { P }`,
    		`struct { *I }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    func pathString(path []Object) string {
    	var s string
    	for i, p := range path {
    		if i > 0 {
    			s += "->"
    		}
    		s += p.Name()
    	}
    	return s
    }
    
    // objDecl type-checks the declaration of obj in its respective (file) environment.
    // For the meaning of def, see Checker.definedType, in typexpr.go.
    func (check *Checker) objDecl(obj Object, def *TypeName) {
    	if check.conf._Trace && obj.Type() == nil {
    		if check.indent == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/issues_test.go

    	// The src strings (without prefix) are constructed such that the number of semicolons
    	// plus one corresponds to the number of fields expected in the respective struct.
    	for _, src := range []string{
    		`struct { x Missing }`,
    		`struct { Missing }`,
    		`struct { *Missing }`,
    		`struct { unsafe.Pointer }`,
    		`struct { P }`,
    		`struct { *I }`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    // values should be used.
    func (s *cpuStats) accumulate(now int64, gcMarkPhase bool) {
    	// N.B. Mark termination and sweep termination pauses are
    	// accumulated in work.cpuStats at the end of their respective pauses.
    	var (
    		markAssistCpu     int64
    		markDedicatedCpu  int64
    		markFractionalCpu int64
    		markIdleCpu       int64
    	)
    	if gcMarkPhase {
    		// N.B. These stats may have stale values if the GC is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top