Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for total_bytes (0.23 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

          size_t bytes_to_copy = end - begin;
          memcpy(&buffer[total_bytes_transferred], &*begin, bytes_to_copy);
          total_bytes_transferred += bytes_to_copy;
        }
        if (data.size() < block_size_) {
          // The block was a partial block and thus signals EOF at its upper bound.
          break;
        }
      }
      TF_SetStatus(status, TF_OK, "");
      return total_bytes_transferred;
    }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  2. cmd/metrics-v3-cluster-usage.go

    		m.Set(usageVersionCountDistribution, float64(v), "range", k)
    	}
    
    	return nil
    }
    
    const (
    	usageBucketQuotaTotalBytes = "quota_total_bytes"
    
    	usageBucketTotalBytes                     = "total_bytes"
    	usageBucketObjectsCount                   = "objects_count"
    	usageBucketVersionsCount                  = "versions_count"
    	usageBucketDeleteMarkersCount             = "delete_markers_count"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cluster-health.go

    	m.Set(healthNodesOnlineCount, float64(nodesUpDown.Online))
    
    	return nil
    }
    
    const (
    	healthCapacityRawTotalBytes    = "capacity_raw_total_bytes"
    	healthCapacityRawFreeBytes     = "capacity_raw_free_bytes"
    	healthCapacityUsableTotalBytes = "capacity_usable_total_bytes"
    	healthCapacityUsableFreeBytes  = "capacity_usable_free_bytes"
    )
    
    var (
    	healthCapacityRawTotalBytesMD = NewGaugeMD(healthCapacityRawTotalBytes,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  4. docs/metrics/v3.md

    | `minio_cluster_health_capacity_raw_total_bytes`    | `gauge` | Total cluster raw storage capacity in bytes    |        |
    | `minio_cluster_health_capacity_raw_free_bytes`     | `gauge` | Total cluster raw storage free in bytes        |        |
    | `minio_cluster_health_capacity_usable_total_bytes` | `gauge` | Total cluster usable storage capacity in bytes |        |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 16:07:23 GMT 2024
    - 26K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    | `minio_cluster_capacity_raw_total_bytes`     | Total capacity online in the cluster.                          |
    | `minio_cluster_capacity_usable_free_bytes`   | Total free usable capacity online in the cluster.              |
    | `minio_cluster_capacity_usable_total_bytes`  | Total usable capacity online in the cluster.                   |
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 43.4K bytes
    - Viewed (2)
  6. tensorflow/c/eager/dlpack.cc

            "Unsupported byte_offset (", dl_tensor->byte_offset,
            ") from DLPack, must be zero");
        return nullptr;
      }
    
      size_t total_bytes = dl_tensor->dtype.bits / 8;
      for (int i = 0; i < num_dims; i++) {
        total_bytes *= dims[i];
      }
    
      if (dl_tensor->strides != nullptr &&
          !IsValidStrideCompactRowMajorData(dl_tensor->shape, dl_tensor->strides,
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Feb 15 09:49:45 GMT 2024
    - 12.8K bytes
    - Viewed (0)
  7. cmd/metrics-v3-system-drive.go

    )
    
    var allDriveLabels = []string{driveL, poolIndexL, setIndexL, driveIndexL}
    
    const (
    	driveUsedBytes               = "used_bytes"
    	driveFreeBytes               = "free_bytes"
    	driveTotalBytes              = "total_bytes"
    	driveUsedInodes              = "used_inodes"
    	driveFreeInodes              = "free_inodes"
    	driveTotalInodes             = "total_inodes"
    	driveTimeoutErrorsTotal      = "timeout_errors_total"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 7.8K bytes
    - Viewed (0)
  8. docs/metrics/prometheus/grafana/node/minio-node.json

          "targets": [
            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "minio_node_drive_total_bytes{job=~\"$scrape_jobs\",server=\"$server\"}",
              "interval": "",
              "legendFormat": "Total [{{drive}}]",
              "refId": "A"
            },
            {
              "datasource": {
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 15:14:26 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  9. docs/metrics/prometheus/grafana/minio-dashboard.json

            {
              "datasource": {
                "type": "prometheus",
                "uid": "${DS_PROMETHEUS}"
              },
              "exemplar": true,
              "expr": "topk(1, sum(minio_cluster_capacity_usable_total_bytes{job=~\"$scrape_jobs\"}) by (instance)) - topk(1, sum(minio_cluster_capacity_usable_free_bytes{job=~\"$scrape_jobs\"}) by (instance))",
              "format": "time_series",
              "instant": false,
              "interval": "1m",
    Json
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 15 10:03:01 GMT 2024
    - 93K bytes
    - Viewed (2)
  10. cmd/metrics-v2.go

    	rcharBytes      MetricName = "rchar_bytes"
    	receivedBytes   MetricName = "received_bytes"
    	latencyMilliSec MetricName = "latency_ms"
    	sentBytes       MetricName = "sent_bytes"
    	totalBytes      MetricName = "total_bytes"
    	usedBytes       MetricName = "used_bytes"
    	writeBytes      MetricName = "write_bytes"
    	wcharBytes      MetricName = "wchar_bytes"
    
    	latencyMicroSec MetricName = "latency_us"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 22:01:31 GMT 2024
    - 132.6K bytes
    - Viewed (0)
Back to top