Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for xoffset (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ProblemProgressEventCrossVersionTest.groovy

                }
            """
    
            when:
            def problems = runTask()
    
            then:
            problems.size() == 0
        }
    
        def "Problems expose file locations with offset and length"() {
            given:
            withReportProblemTask """
                getProblems().forNamespace("org.example.plugin").reporting {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 11:36:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/plugin/plugin.go

    	// Open opens the named object file. If the object is a shared
    	// library, start/limit/offset are the addresses where it is mapped
    	// into memory in the address space being inspected. If the object
    	// is a linux kernel, relocationSymbol is the name of the symbol
    	// corresponding to the start address.
    	Open(file string, start, limit, offset uint64, relocationSymbol string) (ObjFile, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/sparsity/sparsify_model.cc

                                                  /*propagate=*/true);
    
      // Import input_model to a MLIR module
      flatbuffers::FlatBufferBuilder input_builder;
      flatbuffers::Offset<tflite::Model> input_model_location =
          tflite::Model::Pack(input_builder, &input_model);
      tflite::FinishModelBuffer(input_builder, input_model_location);
    
      std::string serialized_model(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:16:40 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    namespace tflite {
    
    std::string CreateRuntimeMetadata() {
      flatbuffers::FlatBufferBuilder fb_builder;
    
      std::vector<flatbuffers::Offset<flatbuffers::String>> device_names = {
          fb_builder.CreateString("GPU"), fb_builder.CreateString("CPU")};
    
      const auto hardwares =
          CreateHardwareMetadata(fb_builder, fb_builder.CreateVector(device_names));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/os/dir_unix.go

    	}
    
    	if n > 0 && len(names)+len(dirents)+len(infos) == 0 {
    		return nil, nil, nil, io.EOF
    	}
    	return names, dirents, infos, nil
    }
    
    // readInt returns the size-bytes unsigned integer in native byte order at offset off.
    func readInt(b []byte, off, size uintptr) (u uint64, ok bool) {
    	if len(b) < int(off+size) {
    		return 0, false
    	}
    	if goarch.BigEndian {
    		return readIntBE(b[off:], size), true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights.cc

                                                  /*propagate=*/true);
    
      // Import input_model to a MLIR module
      flatbuffers::FlatBufferBuilder input_builder;
      flatbuffers::Offset<tflite::Model> input_model_location = tflite::Model::Pack(
          input_builder, CreateMutableModelFromFile(input_model).get());
      tflite::FinishModelBuffer(input_builder, input_model_location);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/internal/chacha8rand/chacha8.go

    		// Normally this is done immediately after computing a block,
    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    		// (you can reconstruct the recent past given a memory dump),
    		// which we deem acceptable in exchange for the reduced size.
    		s.seed[0] = s.buf[len(s.buf)-reseed+0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/x86/seh.go

    		return
    	}
    	if !(movbp.As == AMOVQ && movbp.From.Type == obj.TYPE_REG && movbp.From.Reg == REG_SP &&
    		movbp.To.Type == obj.TYPE_REG && movbp.To.Reg == REG_BP && movbp.From.Offset == 0) {
    		ctxt.Diag("unexpected frame pointer instruction\n%v", movbp)
    		return
    	}
    	if movbp.Link.Pc > math.MaxUint8 {
    		// SEH unwind information don't support prologues that are more than 255 bytes long.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

      auto maybe_module =
          mlir::InjectStatsToFullyConnected(buffer->getBuffer().str());
      if (!maybe_module.has_value()) {
        return 1;
      }
      flatbuffers::FlatBufferBuilder builder;
      flatbuffers::Offset<tflite::Model> output_model_location =
          tflite::Model::Pack(builder, maybe_module.value().get());
      tflite::FinishModelBuffer(builder, output_model_location);
      std::string output_model_content(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  10. src/runtime/traceback_system_test.go

    	}
    	return pcs, nil
    }
    
    // The sentinel function returns its address. The difference between
    // this value as observed by calls in two different processes of the
    // same executable tells us the relative offset of their text segments.
    //
    // It would be nice if SetCrashOutput took care of this as it's fiddly
    // and likely to confuse every user at first.
    func sentinel() uint64 {
    	return uint64(reflect.ValueOf(sentinel).Pointer())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top