Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for getThing (0.09 sec)

  1. src/reflect/value.go

    // the values returned from ctxt.fn in registers.
    func callReflect(ctxt *makeFuncImpl, frame unsafe.Pointer, retValid *bool, regs *abi.RegArgs) {
    	if callGC {
    		// Call GC upon entry during testing.
    		// Getting our stack scanned here is the biggest hazard, because
    		// our caller (makeFuncStub) could have failed to place the last
    		// pointer to a value in regs' pointer space, in which case it
    		// won't be visible to the GC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

            return list.getDictionary(context_);
          })));
    
      return absl::OkStatus();
    }
    
    mlir::Location ImporterBase::GetLocation(const Node& node) {
      DVLOG(1) << "Getting location for " << node.name() << " " << &node;
      // TODO(b/142400497): What is the semantic contract for locations?
      // Create a location for node `name` in function `function_name`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		// for details.
    		//
    		// Can not throw, because scheduler is not initialized yet.
    		writeErrStr("fatal error: cgo callback before cgo call\n")
    		exit(1)
    	}
    
    	// Save and block signals before getting an M.
    	// The signal handler may call needm itself,
    	// and we must avoid a deadlock. Also, once g is installed,
    	// any incoming signals will try to execute,
    	// but we won't have the sigaltstack settings and other data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top