Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Clauss (0.17 sec)

  1. tensorflow/c/experimental/ops/gen/README.md

    framework does not impose any design on the language-specific generators, but
    provides some utilities, and the C++ generator is a complete example.
    
    ### C++ Generator
    
    The `CppGenerator` class is the interface to the `cpp/` language directory.
    Given a config, it can generate source code for a .cc or .h file as a string or
    write it to a target file.
    
    Plain Text
    - Registered: Tue Jan 23 12:39:08 GMT 2024
    - Last Modified: Mon Jun 21 18:51:25 GMT 2021
    - 5.7K bytes
    - Viewed (2)
  2. docs/bucket/versioning/README.md

    import io.minio.MinioClient;
    import io.minio.errors.MinioException;
    import java.io.IOException;
    import java.security.InvalidKeyException;
    import java.security.NoSuchAlgorithmException;
    
    public class EnableVersioning {
      /** MinioClient.enableVersioning() example. */
      public static void main(String[] args)
          throws IOException, NoSuchAlgorithmException, InvalidKeyException {
        try {
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu May 04 21:43:52 GMT 2023
    - 11.9K bytes
    - Viewed (1)
  3. docs/bucket/lifecycle/README.md

    ```
    
    - List the current settings
    
    ```
    $ mc ilm ls play/testbucket
         ID     |  Prefix  |  Enabled   | Expiry |  Date/Days   |  Transition  |    Date/Days     |  Storage-Class   |       Tags
    ------------|----------|------------|--------|--------------|--------------|------------------|------------------|------------------
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Sat Aug 26 07:33:25 GMT 2023
    - 9K bytes
    - Viewed (1)
  4. README.md

    -   [guava-discuss: For open-ended questions and discussion](https://groups.google.com/group/guava-discuss)
    
    ## IMPORTANT WARNINGS
    
    1.  APIs marked with the `@Beta` annotation at the class or method level are
        subject to change. They can be modified in any way, or even removed, at any
        time. If your code is a library itself (i.e., it is used on the CLASSPATH of
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Mar 13 18:17:09 GMT 2024
    - 5.9K bytes
    - Viewed (0)
  5. docs/bucket/replication/README.md

    mc replicate add myminio/srcbucket/Tax --priority 1 --remote-bucket destbucket --remote-bucket "arn:minio:replication:us-east-1:c5be6b16-769d-432a-9ef1-4567081f3566:destbucket" --tags "Year=2019&Company=AcmeCorp" --storage-class "STANDARD" --replicate "delete,delete-marker"
    Replication configuration applied successfully to myminio/srcbucket.
    ```
    
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Jan 24 23:46:33 GMT 2023
    - 18.2K bytes
    - Viewed (0)
  6. docs/bigdata/README.md

    ```
    cd /usr/hdp/current/spark2-client
    su spark
    ```
    
    - Run the Apache Spark Pi job in yarn-client mode, using code from **org.apache.spark**:
    
    ```
    ./bin/spark-submit --class org.apache.spark.examples.SparkPi \
        --master yarn-client \
        --num-executors 1 \
        --driver-memory 512m \
        --executor-memory 512m \
        --executor-cores 1 \
        examples/jars/spark-examples*.jar 10
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Sep 29 04:28:45 GMT 2022
    - 14.7K bytes
    - Viewed (0)
  7. operator/README.md

    - [container environment variables](https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
    - [ImagePullPolicy](https://kubernetes.io/docs/concepts/containers/images/)
    - [priority class name](https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass)
    - [node selector](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector)
    Plain Text
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Sun Sep 17 08:27:52 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  8. mockwebserver-junit5/README.md

    method parameter. It will be shut down automatically after the test runs.
    
    ```
    class MyTest {
      @Test
      void test(MockWebServer server) {
        ...
      }
    }
    ```
    
    Alternately you may add the [MockWebServer] as a constructor parameter:
    
    ```
    class MyTest {
      private final MockWebServer server;
    
      MyTest(MockWebServer server) {
        this.server = server;
      }
    
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Sun Jan 14 10:20:09 GMT 2024
    - 1.3K bytes
    - Viewed (0)
  9. docs/config/README.md

    minio server /data
    ```
    
    ### Storage Class
    
    By default, parity for objects with standard storage class is set to `N/2`, and parity for objects with reduced redundancy storage class objects is set to `2`. Read more about storage class support in MinIO server [here](https://github.com/minio/minio/blob/master/docs/erasure/storage-class/README.md).
    
    ```
    KEY:
    storage_class  define object level redundancy
    
    ARGS:
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Mon Sep 11 21:48:54 GMT 2023
    - 17.7K bytes
    - Viewed (0)
  10. docs/erasure/storage-class/README.md

    `MINIO_STORAGE_CLASS_STANDARD=EC:parity`
    `MINIO_STORAGE_CLASS_RRS=EC:parity`
    
    For example, set `MINIO_STORAGE_CLASS_RRS` parity 2 and `MINIO_STORAGE_CLASS_STANDARD` parity 3
    
    ```sh
    export MINIO_STORAGE_CLASS_STANDARD=EC:3
    export MINIO_STORAGE_CLASS_RRS=EC:2
    ```
    
    Plain Text
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 5.8K bytes
    - Viewed (1)
Back to top