Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,038 for example2 (0.17 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        </match>
      system.input.conf: |-
        # Example:
        # Dec 21 23:17:22 gke-foo-1-1-4b5cbd14-node-4eoj startupscript: Finished running startup script /var/run/google.startup.script
        <source>
          @type tail
          format syslog
          path /var/log/startupscript.log
          pos_file /var/log/gcp-startupscript.log.pos
          tag startupscript
        </source>
    
        # Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Range.java

       * Returns the maximal range {@linkplain #encloses enclosed} by both this range and {@code
       * connectedRange}, if such a range exists.
       *
       * <p>For example, the intersection of {@code [1..5]} and {@code (3..7)} is {@code (3..5]}. The
       * resulting range may be empty; for example, {@code [1..5)} intersected with {@code [5..7)}
       * yields the empty range {@code [5..5)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In the example above, `A` would have to say it _strictly depends on 1.1_.
    
    For this reason, a good practice is that if you use _strict versions_, you should express them in terms of ranges and a preferred version within this range.
    For example, `B` might say, instead of `strictly 1.0`, that it _strictly depends_ on the `[1.0, 2.0[` range, but _prefers_ `1.0`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // give the user a chance to inspect the generated tests with Google Test
    // reflection API before RUN_ALL_TESTS() is executed.
    //
    // You can see samples/sample7_unittest.cc and samples/sample8_unittest.cc
    // for more examples.
    //
    // In the future, we plan to publish the API for defining new parameter
    // generators. But for now this interface remains part of the internal
    // implementation and is subject to change.
    //
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/security/simple-oauth2.md

    Each "scope" is just a string (without spaces).
    
    They are normally used to declare specific security permissions, for example:
    
    * `users:read` or `users:write` are common examples.
    * `instagram_basic` is used by Facebook / Instagram.
    * `https://www.googleapis.com/auth/drive` is used by Google.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/log/slog/doc.go

    method is used for logging. You can use this to control how values of the type
    appear in logs. For example, you can redact secret information like passwords,
    or gather a struct's fields in a Group. See the examples under [LogValuer] for
    details.
    
    A LogValue method may return a Value that itself implements [LogValuer]. The [Value.Resolve]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

         *
         * <p>As an example, the path {@code a:b} adds a project with path {@code :a:b}, name {@code b} and project
         * directory {@code $rootDir/a/b}. It also adds the a project with path {@code :a}, name {@code a} and project
         * directory {@code $rootDir/a}, if it does not exist already.</p>
         *
         * <p>Some common examples of using the project path are:</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

     *
     * <p>When chaining together a graph of asynchronous operations, you will often find it easier to
     * use a framework. Frameworks automate the process, often adding features like monitoring,
     * debugging, and cancellation. Examples of frameworks include:
     *
     * <ul>
     *   <li><a href="https://dagger.dev/producers.html">Dagger Producers</a>
     * </ul>
     *
     * <h4>{@link java.util.concurrent.CompletableFuture} / {@link java.util.concurrent.CompletionStage}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        If it is not possible to rewrite the operation or device assignment fails,
        a failure will be returned.
    
        Note, many parameters to the `tf_device.cluster_func` are omitted in this
        and following examples.
        For example, a non replicated `tf_device.cluster_func`:
    
        ```mlir
        func @tf_tpu_rewrite(%arg0: tensor<i8>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. doc/go_mem.html

    slices, and strings in most Go implementations,
    such races can in turn lead to arbitrary memory corruption.
    </p>
    
    <p>
    Examples of incorrect synchronization are given in the
    “Incorrect synchronization” section below.
    </p>
    
    <p>
    Examples of the limitations on implementations are given in the
    “Incorrect compilation” section below.
    </p>
    
    <h2 id="synchronization">Synchronization</h2>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
Back to top