Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for dataKey (0.31 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/sockcmsg_unix.go

    // structure, taking into account any necessary alignment.
    func CmsgLen(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + datalen
    }
    
    // CmsgSpace returns the number of bytes an ancillary element with
    // payload of the passed data length occupies.
    func CmsgSpace(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + cmsgAlignOf(datalen)
    }
    
    func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/syscall/sockcmsg_unix.go

    // structure, taking into account any necessary alignment.
    func CmsgLen(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + datalen
    }
    
    // CmsgSpace returns the number of bytes an ancillary element with
    // payload of the passed data length occupies.
    func CmsgSpace(datalen int) int {
    	return cmsgAlignOf(SizeofCmsghdr) + cmsgAlignOf(datalen)
    }
    
    func (h *Cmsghdr) data(offset uintptr) unsafe.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/internal/zstd/window.go

    func (w *window) appendTo(buf []byte, from, to uint32) []byte {
    	dataLen := uint32(len(w.data))
    	from += uint32(w.off)
    	to += uint32(w.off)
    
    	wrap := false
    	if from > dataLen {
    		from -= dataLen
    		wrap = !wrap
    	}
    	if to > dataLen {
    		to -= dataLen
    		wrap = !wrap
    	}
    
    	if wrap {
    		buf = append(buf, w.data[from:]...)
    		return append(buf, w.data[:to]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:49:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .add(SHORT_NAME, 13.0f)
                .add(LONG_NAME, 14.0f)
                .addValue(15.0f);
          }
        };
    
        void addEntries(MoreObjects.ToStringHelper helper) {}
      }
    
      @Param Dataset dataset;
    
      private static final String SHORT_NAME = "userId";
      private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile";
    
      private MoreObjects.ToStringHelper newHelper() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .add(SHORT_NAME, 13.0f)
                .add(LONG_NAME, 14.0f)
                .addValue(15.0f);
          }
        };
    
        void addEntries(MoreObjects.ToStringHelper helper) {}
      }
    
      @Param Dataset dataset;
    
      private static final String SHORT_NAME = "userId";
      private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile";
    
      private MoreObjects.ToStringHelper newHelper() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics.proto

        // global maximum of all sample datasets.
        float global_max = 2;
      }
    
      message AverageMinMaxStatistics {
        // sum of batch's minimum in each sample dataset.
        float min_sum = 1;
    
        // sum of batch's maximum in each sample dataset.
        float max_sum = 2;
    
        // number of sample datasets
        int32 num_samples = 3;
      }
    
      message HistogramStatistics {
        // width of bin
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 16 04:33:52 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/validation_test.go

    )
    
    type testData string
    
    func (t testData) load() (string, error) {
    	by, err := validation.FS.ReadFile(path.Join("dataset", string(t)))
    	if err != nil {
    		return "", err
    	}
    
    	return string(by), nil
    }
    
    func loadTestData(t framework.TestContext) []testData {
    	entries, err := validation.FS.ReadDir("dataset")
    	if err != nil {
    		t.Fatalf("Error loading test data: %v", err)
    	}
    
    	var result []testData
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/telemetrycmd/telemetry.go

    and periodically sent to https://telemetry.go.dev/. Uploaded data is used to
    help improve the Go toolchain and related tools, and it will be published as
    part of a public dataset.
    
    For more details, see https://telemetry.go.dev/privacy.
    This data is collected in accordance with the Google Privacy Policy
    (https://policies.google.com/privacy).
    
    To view the current telemetry mode, run "go telemetry".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

      // `tags`, `signature_def_map`, and `signature_keys` are required to properly
      // save and load the module_op to and from SavedModel.
      // `representative_dataset_file_map` contains information about the
      // calibration dataset.
      CalibrationComponent(
          absl::Nonnull<MLIRContext*> ctx,
          absl::Nonnull<const tensorflow::quantization::PyFunctionLibrary*>
              py_function_lib,
          absl::string_view src_saved_model_path,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Flags   int32
    	Index   uint16
    	Data    IfData
    }
    
    type ifData struct {
    	Type       uint8
    	Physical   uint8
    	Addrlen    uint8
    	Hdrlen     uint8
    	Link_state uint8
    	Vhid       uint8
    	Datalen    uint16
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint64
    	Ipackets   uint64
    	Ierrors    uint64
    	Opackets   uint64
    	Oerrors    uint64
    	Collisions uint64
    	Ibytes     uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top