Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 424 for loadOps (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    // address of the symbol containing the target, if any; otherwise it returns "", 0.
    // The reader r should read from the text segment using text addresses
    // as offsets; it is used to display pc-relative loads as constant loads.
    func GoSyntax(inst Inst, pc uint64, symname func(uint64) (string, uint64), text io.ReaderAt) string {
    	if symname == nil {
    		symname = func(uint64) (string, uint64) { return "", 0 }
    	}
    
    	var args []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. src/net/http/main_test.go

    	// We shouldn't be running the leak check for parallel tests, because we might
    	// report the goroutines from a test that is still running as a leak from a
    	// completely separate test that has just finished. So we use non-atomic loads
    	// and stores for the leakReported variable, and store every time we start a
    	// leak check so that the race detector will flag concurrent leak checks as a
    	// race even if we don't detect any leaks.
    	leakReported = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/python/mlir.h

    // Writes the input textual MLIR as bytecode to output file.
    void ExperimentalWriteBytecode(const std::string &filename,
                                   const std::string &mlir_txt, TF_Status *status);
    
    // Loads a TFLite flatbuffer, convert to TOSA for backend compilation and
    // produce an MLIR bytecode file as output.
    // TODO(jpienaar): Refactor this when we use more implicit module passing
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. src/internal/runtime/atomic/atomic_mipsx.s

    	JMP	·Cas(SB)
    
    TEXT ·CasRel(SB),NOSPLIT,$0-13
    	JMP	·Cas(SB)
    
    TEXT ·Loaduintptr(SB),NOSPLIT,$0-8
    	JMP	·Load(SB)
    
    TEXT ·Loaduint(SB),NOSPLIT,$0-8
    	JMP	·Load(SB)
    
    TEXT ·Loadp(SB),NOSPLIT,$-0-8
    	JMP	·Load(SB)
    
    TEXT ·Storeint32(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    TEXT ·Storeint64(SB),NOSPLIT,$0-12
    	JMP	·Store64(SB)
    
    TEXT ·Storeuintptr(SB),NOSPLIT,$0-8
    	JMP	·Store(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_list_retract.txt

    # 'go list -m -retracted -versions' shows retracted versions.
    go list -m -retracted -versions example.com/retract
    stdout '^example.com/retract v1.0.0-bad v1.0.0-good v1.0.0-unused v1.1.0$'
    
    # 'go list -m -u -versions' loads retractions and does not show retracted versions.
    go list -m -u -versions example.com/retract
    stdout '^example.com/retract v1.0.0-good v1.1.0$'
    go list -m -u -versions -f '{{with .Retracted}}retracted{{end}}' example.com/retract
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 13 00:19:50 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    }
    
    def IfrtLoadVariableOp: TensorflowMlrt_Op<"ifrt_load_variable", [Pure]> {
      let summary = "Loads a variable tensor as an IFRT array for mlrt";
    
      let description = [{
        This op loads a restored variable tensor as a tensor future. It is a
        replacement of `tf.ReadVariableOp`.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    // the slot doesn't concurrently change color without the mutator
    // noticing seems prohibitive.
    //
    // Consider the following example where the mutator writes into
    // a slot and then loads the slot's mark bit while the GC thread
    // writes to the slot's mark bit and then as part of scanning reads
    // the slot.
    //
    // Initially both [slot] and [slotmark] are 0 (nil)
    // Mutator thread          GC thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/type_casters.h

                                   tsl::protobuf::Message, ProtoT>>>
    struct SerializedProtobufCaster {
     public:
      PYBIND11_TYPE_CASTER(ProtoT, const_name<ProtoT>());
    
      // Loads an `ProtoT` instance from a python `bytes` object (`src`).
      bool load(handle src, const bool convert) {
        auto caster = make_caster<absl::string_view>();
        // Make sure the user passed a valid python string.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/initconfiguration.go

    	if err := validation.ValidateInitConfiguration(internalcfg).ToAggregate(); err != nil {
    		return nil, err
    	}
    	return internalcfg, nil
    }
    
    // LoadInitConfigurationFromFile loads a supported versioned InitConfiguration from a file, converts it into internal config, defaults it and verifies it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadxcoff/ldxcoff.go

    	ret := ((*bio.Reader)(f)).MustSeek(off, 0)
    	if ret < 0 {
    		return 0, errors.New("fail to seek")
    	}
    	n, err := f.Read(p)
    	if err != nil {
    		return 0, err
    	}
    	return n, nil
    }
    
    // loads the Xcoff file pn from f.
    // Symbols are written into loader, and a slice of the text symbols is returned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top