Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,161 for scouse (0.38 sec)

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

    func NewScope(parent *Scope, pos, end syntax.Pos, comment string) *Scope {
    	s := &Scope{parent, nil, 0, nil, pos, end, comment, false}
    	// don't add children to Universe scope!
    	if parent != nil && parent != Universe {
    		parent.children = append(parent.children, s)
    		s.number = len(parent.children)
    	}
    	return s
    }
    
    // Parent returns the scope's containing (parent) scope.
    func (s *Scope) Parent() *Scope { return s.parent }
    
    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

    // and looked up by name. The zero value for Scope is a ready-to-use
    // empty scope.
    type Scope struct {
    	parent   *Scope
    	children []*Scope
    	number   int               // parent.children[number-1] is this scope; 0 if there is no parent
    	elems    map[string]Object // lazily allocated
    	pos, end token.Pos         // scope extent; may be invalid
    	comment  string            // for debugging only
    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. tensorflow/cc/framework/scope.h

      // scopes, or scopes derived from an existing scope object.
    
      /// Return a new scope.
      /// This creates a new graph and all operations constructed in this graph
      /// should use the returned object as the "root" scope.
      static Scope NewRootScope();
    
      /// Return a new scope. Ops created with this scope will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. src/go/ast/scope.go

    }
    
    // NewScope creates a new scope nested in the outer scope.
    func NewScope(outer *Scope) *Scope {
    	const n = 4 // initial scope capacity
    	return &Scope{outer, make(map[string]*Object, n)}
    }
    
    // Lookup returns the object with the given name if it is
    // found in scope s, otherwise it returns nil. Outer scopes
    // are ignored.
    func (s *Scope) Lookup(name string) *Object {
    	return s.Objects[name]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. docs/en/docs/img/sponsors/ines-course.jpg

    ines-course.jpg...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Apr 17 21:00:49 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

     * limitations under the License.
     */
    
    package org.gradle.internal.service.scopes;
    
    /**
     * @see ServiceScope
     */
    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/scopes.dlv-dbg.nexts

      ./testdata/scopes.go
    22:	func test() {
    23:		x := id(0)
    24:		y := id(0)
    25:		fmt.Println(x)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/testdata/scopes.gdb-opt.nexts

      src/cmd/compile/internal/ssa/testdata/scopes.go
    22:	func test() {
    23:		x := id(0)
    24:		y := id(0)
    25:		fmt.Println(x)
    0:
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 0
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 1
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 4
    y = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/testdata/scopes.dlv-opt.nexts

      ./testdata/scopes.go
    22:	func test() {
    23:		x := id(0)
    24:		y := id(0)
    25:		fmt.Println(x)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    26:		for i := x; i < 3; i++ {
    31:		fmt.Println(x, y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 22:18:10 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/testdata/scopes.gdb-dbg.nexts

      src/cmd/compile/internal/ssa/testdata/scopes.go
    22:	func test() {
    23:		x := id(0)
    24:		y := id(0)
    25:		fmt.Println(x)
    0:
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 0
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 1
    y = 0
    26:		for i := x; i < 3; i++ {
    27:			x := i * i
    28:			y += id(x) //gdb-dbg=(x,y)//gdb-opt=(x,y)
    x = 4
    y = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.3K bytes
    - Viewed (0)
Back to top