Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Us (0.03 sec)

  1. tensorflow/BUILD

        visibility = ["//visibility:public"],
    )
    
    # By default, XLA GPU is compiled into tensorflow when building with
    # --config=cuda even when `with_xla_support` is false. The config setting
    # here allows us to override the behavior if needed.
    config_setting(
        name = "no_xla_deps_in_cuda",
        define_values = {"no_xla_deps_in_cuda": "true"},
        visibility = ["//visibility:public"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    #    or using escape characters.
    #  - Use "approved verbs":
    #    https://docs.microsoft.com/en-us/powershell/developer/cmdlet/approved-verbs-for-windows-powershell-commands
    #  - Document functions using proper syntax:
    #    https://technet.microsoft.com/en-us/library/hh847834(v=wps.620).aspx
    
    $GCE_METADATA_SERVER = "169.254.169.254"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    With the `mc` tool, the configuration is very simple to add. Let us say that the MinIO server is aliased as `myminio` in our mc configuration. Execute the following:
    
    ```
    mc mb myminio/images
    mc event add  myminio/images arn:minio:sqs::1:elasticsearch --suffix .jpg
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. .bazelrc

    build:windows --host_copt=-DWIN32_LEAN_AND_MEAN
    build:windows --copt=-DNOGDI
    build:windows --host_copt=-DNOGDI
    
    # MSVC (Windows): Standards-conformant preprocessor mode
    # See https://docs.microsoft.com/en-us/cpp/preprocessor/preprocessor-experimental-overview
    build:windows --copt=/Zc:preprocessor
    build:windows --host_copt=/Zc:preprocessor
    
    # Misc build options we need for windows.
    build:windows --linkopt=/DEBUG
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        assertArrayEquals("fghi".toByteArray(), data2.data)
      }
    
      /**
       * Confirm that we account for discarded data frames. It's possible that data frames are in-flight
       * just prior to us canceling a stream.
       */
      @Test fun discardedDataFramesAreCounted() {
        // Write the mocking script.
        peer.sendFrame().settings(Settings())
        peer.acceptFrame() // ACK
        peer.acceptFrame() // SYN_STREAM 3
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (BTLconst [c] (SHLLconst [d] x)) && c>d      => (BTLconst [c-d] x)
    (BTLconst [0] s:(SHR(L|XL) x y)) => (BTL y x)
    
    // Rewrite a & 1 != 1 into a & 1 == 0.
    // Among other things, this lets us turn (a>>b)&1 != 1 into a bit test.
    (SET(NE|EQ) (CMPLconst [1] s:(ANDLconst [1] _))) => (SET(EQ|NE) (CMPLconst [0] s))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top