Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for Innermost (0.25 sec)

  1. api/go1.5.txt

    pkg go/types, method (*Scope) Child(int) *Scope
    pkg go/types, method (*Scope) Contains(token.Pos) bool
    pkg go/types, method (*Scope) End() token.Pos
    pkg go/types, method (*Scope) Innermost(token.Pos) *Scope
    pkg go/types, method (*Scope) Insert(Object) Object
    pkg go/types, method (*Scope) Len() int
    pkg go/types, method (*Scope) Lookup(string) Object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    The receiver for those members will no longer be the enclosing `Project` instance but the `dependencies` object itself, the innermost `ExtensionAware` conforming receiver.
    In order to address `Project` extra properties inside `dependencies {}` the receiver must be explicitly qualified i.e. `project.extra` instead of just `extra`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  3. src/go/types/expr.go

    		check.overflow(x, e.Pos())
    
    	case *ast.FuncLit:
    		if sig, ok := check.typ(e.Type).(*Signature); ok {
    			// Set the Scope's extent to the complete "func (...) {...}"
    			// so that Scope.Innermost works correctly.
    			sig.scope.pos = e.Pos()
    			sig.scope.end = e.End()
    			if !check.conf.IgnoreFuncBodies && e.Body != nil {
    				// Anonymous functions are considered part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  4. src/net/http/request.go

    	//
    	// For client requests, a value of 0 with a non-nil Body is
    	// also treated as unknown.
    	ContentLength int64
    
    	// TransferEncoding lists the transfer encodings from outermost to
    	// innermost. An empty list denotes the "identity" encoding.
    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    interior Bow EOF measured cross the Colours shall be 1 Degr. 45 Min. and
    the Breadth of the exterior GOH shall be 3 Degr. 10 Min. and the
    distance between them GOF shall be 8 Gr. 15 Min. the greatest
    Semi-diameter of the innermost, that is, the Angle POF being 42 Gr. 2
    Min. and the least Semi-diameter of the outermost POG, being 50 Gr. 57
    Min. These are the Measures of the Bows, as they would be were the Sun
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse.go

    	return after, nil
    }
    
    // repeatIsValid reports whether the repetition re is valid.
    // Valid means that the combination of the top-level repetition
    // and any inner repetitions does not exceed n copies of the
    // innermost thing.
    // This function rewalks the regexp tree and is called for every repetition,
    // so we have to worry about inducing quadratic behavior in the parser.
    // We avoid this by only calling repeatIsValid when min or max >= 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    	    (ShortVarDecl for short variable declarations)
    	    and ends at the end of the innermost containing block.</li>
    
    	<li>The scope of a type identifier declared inside a function
    	    begins at the identifier in the TypeSpec
    	    and ends at the end of the innermost containing block.</li>
    </ol>
    
    <p>
    An identifier declared in a block may be redeclared in an inner block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Bows. The Breadth of the interior Bow EOF measured cross the Colours shall be 1 Degr. 45 Min. and the Breadth of the exterior GOH shall be 3 Degr. 10 Min. and the distance between them GOF shall be 8 Gr. 15 Min. the greatest Semi-diameter of the innermost, that is, the Angle POF being 42 Gr. 2 Min. and the least Semi-diameter of the outermost POG, being 50 Gr. 57 Min. These are the Measures of the Bows, as they would be were the Sun but a Point; for by the Breadth of his Body, the Breadth of the Bows...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/expr.go

    		check.overflow(x, opPos(x.expr))
    
    	case *syntax.FuncLit:
    		if sig, ok := check.typ(e.Type).(*Signature); ok {
    			// Set the Scope's extent to the complete "func (...) {...}"
    			// so that Scope.Innermost works correctly.
    			sig.scope.pos = e.Pos()
    			sig.scope.end = syntax.EndPos(e)
    			if !check.conf.IgnoreFuncBodies && e.Body != nil {
    				// Anonymous functions are considered part of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // in the final tensor that will then be reshaped to form something like
    // [1 x 1 x 1 x m*n] by the outermost reshape_op.
    // problem: The inefficiency here is that the innermost reshape_op and the
    // broadcast_op are introducing unnecessary leading and trailing 1s'.
    // fix: Remove the unnecessary 1s' in the inner reshape_op and broadcast_op.
    struct SqueezeReshapesAroundBroadcastOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top