Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for cgoOff (0.21 sec)

  1. src/cmd/link/internal/arm64/asm.go

    			ldr.Errorf(s, "invalid relocation: %v %s+0x%x", rt, ldr.SymName(rs), r.Xadd)
    			return false
    		}
    		rs = label
    	}
    	symdynid := ldr.SymDynid(rs)
    	if symdynid < 0 {
    		ldr.Errorf(s, "reloc %d (%s) to non-coff symbol %s type=%d (%s)", rt, sym.RelocName(arch, rt), ldr.SymName(rs), ldr.SymType(rs), ldr.SymType(rs))
    		return false
    	}
    
    	switch rt {
    	default:
    		return false
    
    	case objabi.R_DWARFSECREF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    //
    // The world must be stopped.
    //
    //go:systemstack
    func gcSweep(mode gcMode) bool {
    	assertWorldStopped()
    
    	if gcphase != _GCoff {
    		throw("gcSweep being done but phase is not GCoff")
    	}
    
    	lock(&mheap_.lock)
    	mheap_.sweepgen += 2
    	sweep.active.reset()
    	mheap_.pagesSwept.Store(0)
    	mheap_.sweepArenas = mheap_.allArenas
    	mheap_.reclaimIndex.Store(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    };
    
    LogicalResult HoistCwiseUnaryOutOfUnpack::matchAndRewrite(
        UnpackOp op, PatternRewriter &rewriter) const {
      auto loc = op.getLoc();
    
      // First unpack user must be coeff-wise unary operation.
      Operation *first_user = *op->getUsers().begin();
      if (!first_user->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All unpack users must be defined by the op of same kind.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*PrivateKey).Size", Method, 11},
    		{"(*PrivateKey).Validate", Method, 0},
    		{"(*PublicKey).Equal", Method, 15},
    		{"(*PublicKey).Size", Method, 11},
    		{"CRTValue", Type, 0},
    		{"CRTValue.Coeff", Field, 0},
    		{"CRTValue.Exp", Field, 0},
    		{"CRTValue.R", Field, 0},
    		{"DecryptOAEP", Func, 0},
    		{"DecryptPKCS1v15", Func, 0},
    		{"DecryptPKCS1v15SessionKey", Func, 0},
    		{"EncryptOAEP", Func, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top