Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for dataref (0.19 sec)

  1. docs/lambda/README.md

    MinIO's Object Lambda implementation allows for transforming your data to serve unique data format requirements for each application. For example, a dataset created by an ecommerce application might include personally identifiable information (PII). When the same data is processed for analytics, PII should be redacted. However, if the same dataset is used for a marketing campaign, you might need to enrich the data with additional details, such as information from the customer loyalty database.
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 04 19:15:28 GMT 2023
    - 7.6K bytes
    - Viewed (0)
  2. docs/select/README.md

            print(statsDetails['BytesScanned'])
            print("Stats details bytesProcessed: ")
            print(statsDetails['BytesProcessed'])
    ```
    
    ## 4. Run the Program
    
    Upload a sample dataset to MinIO using the following commands.
    
    ```sh
    curl "https://population.un.org/wpp/Download/Files/1_Indicators%20(Standard)/CSV_FILES/WPP2019_TotalPopulationBySex.csv" > TotalPopulation.csv
    mc mb myminio/mycsvbucket
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 6.5K bytes
    - Viewed (0)
  3. RELEASE.md

    *   `tf.data`
    
        *   `tf.data.Dataset.zip` now supports Python-style zipping, i.e. `Dataset.zip(a, b, c)`.
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  4. api/go1.14.txt

    pkg syscall (freebsd-arm64), method (*Msghdr) SetControllen(int)
    pkg syscall (freebsd-arm64), type BpfHdr struct
    pkg syscall (freebsd-arm64), type BpfHdr struct, Caplen uint32
    pkg syscall (freebsd-arm64), type BpfHdr struct, Datalen uint32
    pkg syscall (freebsd-arm64), type BpfHdr struct, Hdrlen uint16
    pkg syscall (freebsd-arm64), type BpfHdr struct, Pad_cgo_0 [6]uint8
    pkg syscall (freebsd-arm64), type BpfHdr struct, Tstamp Timeval
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (darwin-386), method (*Msghdr) SetControllen(int)
    pkg syscall (darwin-386), type BpfHdr struct
    pkg syscall (darwin-386), type BpfHdr struct, Caplen uint32
    pkg syscall (darwin-386), type BpfHdr struct, Datalen uint32
    pkg syscall (darwin-386), type BpfHdr struct, Hdrlen uint16
    pkg syscall (darwin-386), type BpfHdr struct, Pad_cgo_0 [2]uint8
    pkg syscall (darwin-386), type BpfHdr struct, Tstamp Timeval
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  6. api/go1.16.txt

    pkg syscall (darwin-arm64), method (*Msghdr) SetControllen(int)
    pkg syscall (darwin-arm64), type BpfHdr struct
    pkg syscall (darwin-arm64), type BpfHdr struct, Caplen uint32
    pkg syscall (darwin-arm64), type BpfHdr struct, Datalen uint32
    pkg syscall (darwin-arm64), type BpfHdr struct, Hdrlen uint16
    pkg syscall (darwin-arm64), type BpfHdr struct, Pad_cgo_0 [2]uint8
    pkg syscall (darwin-arm64), type BpfHdr struct, Tstamp Timeval32
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  7. tensorflow/BUILD

            "//tensorflow/core/grappler:grappler_item",
            "//tensorflow/core/grappler:grappler_item_builder",
            "//tensorflow/core/kernels:data_service_ops",
            "//tensorflow/core/kernels:dataset_ops",
            "//tensorflow/core/platform:logging",
            "//tensorflow/core/platform:path",
            "//tensorflow/core/platform:stacktrace_handler",
            "//tensorflow/core/platform:statusor",
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  8. api/go1.13.txt

    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Caplen uint32
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Datalen uint32
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Hdrlen uint16
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Pad_cgo_0 [6]uint8
    pkg syscall (netbsd-arm64-cgo), type BpfHdr struct, Tstamp BpfTimeval
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

     *
     * Mappings Data (4,719 bytes)
     * ===========================
     *
     * This is UTF-8 character data. It is indexed into by b2b3 in the ranges dataset.
     *
     * Mappings may overlap.
     *
     * ASCII-Only
     * ==========
     *
     * Neither the section index nor the ranges data use bit 0x80 anywhere. That means the data is
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Apr 02 11:39:58 GMT 2024
    - 9K bytes
    - Viewed (0)
  10. docs/bigdata/README.md

    ### **4.2 WordCount**
    
    WordCount is a simple program that counts how often a word occurs in a text file. The code builds a dataset of (String, Int) pairs called counts, and saves the dataset to a file.
    
    The following example submits WordCount code to the Scala shell. Select an input file for the Spark WordCount example. We can use any text file as input.
    
    - Login as user **‘spark’**.
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
Back to top