Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,236 for addDep (0.23 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. 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)
  8. src/cmd/link/internal/loong64/asm.go

    	//	0:	1a000004	pcalau12i	$a0, 0
    	//				0: R_LARCH_PCALA_HI20	local.moduledata
    	o(0x1a000004)
    	rel, _ := initfunc.AddRel(objabi.R_LOONG64_ADDR_HI)
    	rel.SetOff(0)
    	rel.SetSiz(4)
    	rel.SetSym(ctxt.Moduledata)
    
    	//	4:	02c00084	addi.d	$a0, $a0, 0
    	//				4: R_LARCH_PCALA_LO12	local.moduledata
    	o(0x02c00084)
    	rel2, _ := initfunc.AddRel(objabi.R_LOONG64_ADDR_LO)
    	rel2.SetOff(4)
    	rel2.SetSiz(4)
    	rel2.SetSym(ctxt.Moduledata)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_converter/transforms/outline_composites.cc

      auto add_op =
          rewriter.create<stablehlo::AddOp>(erf_op.getLoc(), erf_op, one_cst);
      auto lhs_mul_op = rewriter.create<stablehlo::MulOp>(
          half_cst.getLoc(), new_func.getArguments()[0], half_cst);
      auto output_mul_op = rewriter.create<stablehlo::MulOp>(lhs_mul_op.getLoc(),
                                                             lhs_mul_op, add_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/seh.go

    			// The SEH unwind data can contain relocations,
    			// make sure those are copied over.
    			rels := ldr.Relocs(uw)
    			for i := 0; i < rels.Count(); i++ {
    				r := rels.At(i)
    				rel, _ := xdata.AddRel(r.Type())
    				rel.SetOff(int32(off) + r.Off())
    				rel.SetSiz(r.Siz())
    				rel.SetSym(r.Sym())
    				rel.SetAdd(r.Add())
    			}
    		}
    
    		// Reference:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top