Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for summarize (0.22 sec)

  1. docs/batch-jobs/README.md

    USAGE:
      mc batch COMMAND [COMMAND FLAGS | -h] [ARGUMENTS...]
    
    COMMANDS:
      generate  generate a new batch job definition
      start     start a new batch job
      list, ls  list all current batch jobs
      status    summarize job events on MinIO server in real-time
      describe  describe job definition for a job
    ```
    
    ### Generate a job yaml
    ```
    mc batch generate alias/ replicate
    ```
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Oct 06 06:00:43 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  2. common/scripts/kind_provisioner.sh

    EOF
    }
    
    function ips_to_cidrs() {
      IP_RANGE_START="$1"
      IP_RANGE_END="$2"
      python3 - <<EOF
    from ipaddress import summarize_address_range, IPv4Address
    [ print(n.compressed) for n in summarize_address_range(IPv4Address(u'$IP_RANGE_START'), IPv4Address(u'$IP_RANGE_END')) ]
    EOF
    Shell Script
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  3. docs/security/README.md

    - `context_values`: are values like the bucket and object name and other information which should be cryptographically bound to the KEK.
    
    To summarize for any encrypted object there exists (at least) three different keys:
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Feb 12 00:51:25 GMT 2022
    - 13.8K bytes
    - Viewed (0)
  4. tensorflow/c/eager/c_api.cc

        return methods_.summarize != nullptr;
      }
    
      Status SummarizeValue(std::string& summary) const override {
        if (methods_.summarize == nullptr) {
          return tensorflow::CustomDeviceTensorHandle::SummarizeValue(summary);
        }
        TF_Status c_status;
        std::unique_ptr<TF_Buffer, decltype(&TF_DeleteBuffer)> summary_buffer(
            methods_.summarize(data_, &c_status), TF_DeleteBuffer);
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Mar 12 20:00:09 GMT 2024
    - 43.9K bytes
    - Viewed (2)
  5. tensorflow/c/eager/parallel_device/parallel_device.cc

      TFE_CustomDeviceTensorHandleMethods handle_methods;
      handle_methods.num_dims = &ParallelTensorNumDims;
      handle_methods.dim = &ParallelTensorDim;
      handle_methods.deallocator = &ParallelTensorDeallocator;
      handle_methods.summarize = &ParallelTensorSummarize;
      return TensorHandlePtr(TFE_NewCustomDeviceTensorHandle(
          context, parallel_device_name.c_str(), t_released->dtype(), t_released,
          handle_methods, status));
    }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Mar 29 22:05:31 GMT 2023
    - 18.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/math/Stats.java

     * forms of variance -- that were computed from a single set of zero or more floating-point values.
     *
     * <p>There are two ways to obtain a {@code Stats} instance:
     *
     * <ul>
     *   <li>If all the values you want to summarize are already known, use the appropriate {@code
     *       Stats.of} factory method below. Primitive arrays, iterables and iterators of any kind of
     *       {@code Number}, and primitive varargs are supported.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 22K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental.h

      // device which would be useful for debugging.
      //
      // Optional. If null, defaults to resolving the TFE_TensorHandle into a
      // TF_Tensor and summarizing that.
      TF_Buffer* (*summarize)(void* data, TF_Status* status) = nullptr;
    } TFE_CustomDeviceTensorHandle;
    
    // Creates a new TensorHandle from memory residing in a custom device. Takes
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

     */
    package org.apache.maven.execution;
    
    import java.util.Objects;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a project build in the reactor.
     *
     */
    public abstract class BuildSummary {
    
        /**
         * The project being summarized.
         */
        private final MavenProject project;
    
        /**
         * The build time of the project in milliseconds.
         */
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2K bytes
    - Viewed (0)
  9. .cm/plugins/filters/computeStatistics/index.js

     */
    function computeStatistics(groupedFiles, fileMetadatas) {
        let totalAdditions = 0;
        let totalDeletions = 0
        let totalChangedFiles = 0;
    
        let summaries = [...groupedFiles.values()];
        Object.values(summaries).forEach(summary => {
            summary.additions = 0;
            summary.deletions = 0;
    
            summary.files.forEach(file => {
                let fileMetadata = metadataFor(fileMetadatas, file);
    JavaScript
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

    package org.apache.maven.execution;
    
    import org.apache.maven.project.MavenProject;
    
    /**
     * Summarizes the result of a successful project build in the reactor.
     *
     */
    public class BuildSuccess extends BuildSummary {
    
        /**
         * Creates a new build summary for the specified project.
         *
         * @param project The project being summarized, must not be {@code null}.
         * @param time The build time of the project in milliseconds.
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
Back to top