Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 77 for Umacob (0.26 sec)

  1. .idea/dictionaries/dmitriy_dolovov.xml

          <w>commonizer</w>
          <w>commonizers</w>
          <w>commonizes</w>
          <w>commonizing</w>
          <w>interop</w>
          <w>jetbrains</w>
          <w>konan</w>
          <w>kotlinx</w>
          <w>macos</w>
        </words>
      </dictionary>
    XML
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 26 07:57:16 GMT 2020
    - 456 bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

        if: github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork )
    
        strategy:
          matrix:
            os: [ubuntu-latest, windows-latest, macOS-latest]
          fail-fast: false
    
        runs-on: ${{ matrix.os }}
    
        steps:
          - uses: actions/checkout@v4
            with:
              persist-credentials: false
    
          - uses: actions/setup-java@v4
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                    ) {
                        eachFile {
                            // Remove top folder when unzipping, that way we get rid of Android Studio.app folder that can cause issues on Mac
                            // where MacOS would kill the Android Studio process right after start, issue: https://github.com/gradle/gradle-profiler/issues/469
                            relativePath = RelativePath(true, *relativePath.segments.drop(1).toTypedArray())
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Dec 22 13:46:27 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  4. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

      val safari12iOS = sslLabsClients.first { it.userAgent == "Safari" && it.platform == "iOS 12.3.1" }
      val safari12Osx =
        sslLabsClients.first { it.userAgent == "Safari" && it.platform == "MacOS 10.14.6 Beta" }
    
      val okhttp = currentOkHttp(ianaSuitesNew)
    
      val okHttp_4_10 = historicOkHttp("4.10")
      val okHttp_3_14 = historicOkHttp("3.14")
      val okHttp_3_13 = historicOkHttp("3.13")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/Os.kt

        ),
        WINDOWS(
            "Windows",
            androidHome = """C:\Program Files\android\sdk""",
            jprofilerHome = """C:\Program Files\jprofiler\jprofiler11.1.4""",
            perfTestWorkingDir = "P:/",
        ),
        MACOS(
            "Mac",
            androidHome = "/opt/android/sdk",
            jprofilerHome = "/Applications/JProfiler11.1.4.app",
            defaultArch = Arch.AARCH64
        );
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Sep 24 06:56:47 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/settings.md

    You can create and use environment variables in the shell, without needing Python:
    
    === "Linux, macOS, Windows Bash"
    
        <div class="termy">
    
        ```console
        // You could create an env var MY_NAME with
        $ export MY_NAME="Wade Wilson"
    
        // Then you could use it with other programs, like
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/posix/BUILD

    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        default_visibility = ["//visibility:private"],
        licenses = ["notice"],
    )
    
    # Filesystem implementation for POSIX environments: Linux, MacOS, Android, etc.
    tf_cc_shared_object(
        name = "libposix_filesystem.so",
        framework_so = [],
        linkstatic = False,
        visibility = ["//visibility:public"],
        deps = [":posix_filesystem_impl"],
    )
    
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  8. docs/zh/docs/advanced/settings.md

    因此,通常会将它们提供为由应用程序读取的环境变量。
    
    ## 环境变量
    
    !!! tip
        如果您已经知道什么是"环境变量"以及如何使用它们,请随意跳到下面的下一节。
    
    环境变量(也称为"env var")是一种存在于 Python 代码之外、存在于操作系统中的变量,可以被您的 Python 代码(或其他程序)读取。
    
    您可以在 shell 中创建和使用环境变量,而无需使用 Python:
    
    === "Linux、macOS、Windows Bash"
    
        <div class="termy">
    
        ```console
        // 您可以创建一个名为 MY_NAME 的环境变量
        $ export MY_NAME="Wade Wilson"
    
        // 然后您可以与其他程序一起使用它,例如
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 13.9K bytes
    - Viewed (0)
  9. docs/pt/docs/contributing.md

    ```
    
    </div>
    
    Isso criará o diretório `./env/` com os binários Python e então você será capaz de instalar pacotes nesse ambiente isolado.
    
    ### Ativar o ambiente
    
    Ative o novo ambiente com:
    
    === "Linux, macOS"
    
        <div class="termy">
    
        ```console
        $ source ./env/bin/activate
        ```
    
        </div>
    
    === "Windows PowerShell"
    
        <div class="termy">
    
        ```console
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sun Jun 11 21:38:15 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/bootstrap.min.js.map

    yC,KACjEE,GAAwB,CAAC,WAAY,YAAa,cAElDtV,GAAc,CAClBuV,UAAoB,UACpBC,SAAoB,SACpBC,MAAoB,4BACpBpc,QAAoB,SACpBqc,MAAoB,kBACpBC,KAAoB,UACpBtd,SAAoB,mBACpB0T,UAAoB,oBACpB7B,OAAoB,2BACpB0L,UAAoB,2BACpBC,kBAAoB,iBACpBzL,SAAoB,mBACpB0L,SAAoB,UACpBhC,WAAoB,kBACpBD,UAAoB,UAGhB5J,GAAgB,CACpB8L,KAAS,OACTC,IAAS,MACTC,MAAS,QACTC,OAAS,SACTC,KAAS,QAGL1W,GAAU,CACd8V,WAAoB,EACpBC,SAAoB,uGAGpBnc,QAAoB,cACpBoc,MAAoB,GACpBC,MAAoB,EACpBC,MAAoB,EACpBtd,UAAoB,EACpB0T,UAAoB,MACpB7B,OAAoB,EACpB0L,WAAoB,EACpBC,kBAAoB,OACpBzL...
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 185.8K bytes
    - Viewed (0)
Back to top