Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 207 for Example (0.16 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      // value.
      //
      // In the following simple example, A, B, ..., E are nodes in the original
      // graph. The group attributes g are each shown as either 0 or empty.
      //
      //  A  -->  B  -->  C  -->  D  -->  E
      //  g:      g:0     g:0     g:0     g:
      //
      // The example is rewritten to two graphs; one on the host and one to be
      // compiled. The host graph is as follows.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     * add configuration to the derived client for a specific purpose.
     *
     * This example shows the single instance with default configurations.
     *
     * ```java
     * public final OkHttpClient client = new OkHttpClient.Builder()
     *     .readTimeout(1000, TimeUnit.MILLISECONDS)
     *     .writeTimeout(1000, TimeUnit.MILLISECONDS)
     *     .build();
     * ```
     *
     * This example shows a call with a short 500 millisecond read timeout and a 1000 millisecond
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // a population count for each individual byte. For inputs larger than
    // a single byte we therefore need to sum the individual bytes produced
    // by the POPCNT instruction. For example, the following instruction
    // sequence could be used to calculate the population count of a 4-byte
    // value:
    //
    //     MOVD   $0x12345678, R1 // R1=0x12345678 <-- input
    //     POPCNT R1, R2          // R2=0x02030404
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Use this annotation at the end of a struct/class definition to
    // prevent the compiler from optimizing away instances that are never
    // used.  This is useful when all interesting logic happens inside the
    // c'tor and / or d'tor.  Example:
    //
    //   struct Foo {
    //     Foo() { ... }
    //   } GTEST_ATTRIBUTE_UNUSED_;
    //
    // Also use it after a variable or parameter declaration to tell the
    // compiler the variable/parameter does not have to be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Use this annotation at the end of a struct/class definition to
    // prevent the compiler from optimizing away instances that are never
    // used.  This is useful when all interesting logic happens inside the
    // c'tor and / or d'tor.  Example:
    //
    //   struct Foo {
    //     Foo() { ... }
    //   } GTEST_ATTRIBUTE_UNUSED_;
    //
    // Also use it after a variable or parameter declaration to tell the
    // compiler the variable/parameter does not have to be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // created operations are in the TensorFlow dialect if the operation can be
    // represented using a TensorFlow op.  Otherwise, TensorFlow Lite dialect op is
    // used.  For example, Conv2D in TFLite which uses OHWI data format for filters
    // is not supported in TensorFlow because TensorFlow requires filters in the
    // HWIO data format.
    //
    // Motivation to prepare for the TFLite legalization before the actual
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    // Today, this is just Gateway and Mesh.
    type parentInfo struct {
    	// InternalName refers to the internal name we can reference it by. For example, "mesh" or "my-ns/my-gateway"
    	InternalName string
    	// AllowedKinds indicates which kinds can be admitted by this parent
    	AllowedKinds []k8s.RouteGroupKind
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    	// likely all fail with the same error. For example a project with a
    	// low quota that attempts to create a large number of pods will be
    	// prevented from spamming the API service with the pod create requests
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      // tail of the other operand and the intermediate result isn't used by other
      // ops.
      // $rhs is required to be the tail shape of $lhs, so after transformation the
      // shape of the binary op result is valid. For example, assume the shapes of
      // $input, $lhs and $rhs are [1600], [1,40,40] and [40x1]. After the
      // transformation, the shape of the binary op result is [40x1600], which
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	// We need the load's memory arg to still be alive at target. That
    	// can't be the case if one of target's args depends on a memory
    	// state that is a successor of load's memory arg.
    	//
    	// For example, it would be invalid to merge load into target in
    	// the following situation because newmem has killed oldmem
    	// before target is reached:
    	//     load = read ... oldmem
    	//   newmem = write ... oldmem
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top