Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,863 for addDep (0.15 sec)

  1. src/database/sql/sql.go

    			// with releaseConn.
    			rows = &Rows{
    				dc:    dc,
    				rowsi: rowsi,
    				// releaseConn set below
    			}
    			// addDep must be added before initContextClose or it could attempt
    			// to removeDep before it has been added.
    			s.db.addDep(s, rows)
    
    			// releaseConn must be set before initContextClose or it could
    			// release the connection before it is set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/resolver.go

    // expression or function body.
    func (d *declInfo) hasInitializer() bool {
    	return d.init != nil || d.fdecl != nil && d.fdecl.Body != nil
    }
    
    // addDep adds obj to the set of objects d's init expression depends on.
    func (d *declInfo) addDep(obj Object) {
    	m := d.deps
    	if m == nil {
    		m = make(map[Object]bool)
    		d.deps = m
    	}
    	m[obj] = true
    }
    
    // arity checks that the lhs and rhs of a const or var decl
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. src/go/types/resolver.go

    // expression or function body.
    func (d *declInfo) hasInitializer() bool {
    	return d.init != nil || d.fdecl != nil && d.fdecl.Body != nil
    }
    
    // addDep adds obj to the set of objects d's init expression depends on.
    func (d *declInfo) addDep(obj Object) {
    	m := d.deps
    	if m == nil {
    		m = make(map[Object]bool)
    		d.deps = m
    	}
    	m[obj] = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	from := check.decl
    	if from == nil {
    		return // not in a package-level init expression
    	}
    	if _, found := check.objMap[to]; !found {
    		return // to is not a package-level object
    	}
    	from.addDep(to)
    }
    
    // Note: The following three alias-related functions are only used
    //       when Alias types are not enabled.
    
    // brokenAlias records that alias doesn't have a determined type yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/check.go

    	from := check.decl
    	if from == nil {
    		return // not in a package-level init expression
    	}
    	if _, found := check.objMap[to]; !found {
    		return // to is not a package-level object
    	}
    	from.addDep(to)
    }
    
    // Note: The following three alias-related functions are only used
    //       when Alias types are not enabled.
    
    // brokenAlias records that alias doesn't have a determined type yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-step-added.png

    teamcity-step-added.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  7. test/typeparam/adder.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 559 bytes
    - Viewed (0)
  8. test/fixedbugs/bug007.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type (
    	Point struct {
    		x, y float64
    	}
    	Polar Point
    )
    
    func main() {
    }
    
    /*
    bug7.go:5: addtyp: renaming Point to Polar
    main.go.c:14: error: redefinition of typedef ‘_T_2’
    main.go.c:13: error: previous declaration of ‘_T_2’ was here
    main.go.c:16: error: redefinition of ‘struct _T_2’
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 481 bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    struct AddRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for AddRef.
    #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. test/typeparam/setsimp.dir/a.go

    func (s Set[Elem]) Copy() Set[Elem] {
    	r := Set[Elem]{m: make(map[Elem]struct{}, len(s.m))}
    	for v := range s.m {
    		r.m[v] = struct{}{}
    	}
    	return r
    }
    
    // AddSet adds all the elements of s2 to s.
    func (s Set[Elem]) AddSet(s2 Set[Elem]) {
    	for v := range s2.m {
    		s.m[v] = struct{}{}
    	}
    }
    
    // SubSet removes all elements in s2 from s.
    // Values in s2 that are not in s are ignored.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 21:39:54 UTC 2021
    - 2.7K bytes
    - Viewed (0)
Back to top