Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 113 for macos (0.15 sec)

  1. ci/official/envs/disk_cache

    # ==============================================================================
    # Sourcing this enables local disk cache
    if [[ $(uname -s) == "Darwin" ]]; then
      echo "Please note that using disk cache on macOS is not recommended because the"
      echo "cache can end up being pretty big and make the build process inefficient."
    fi
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 1023 bytes
    - Viewed (0)
  2. .gitignore

    site
    .coverage
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 19 13:11:35 GMT 2023
    - 268 bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

        testCoverage: TestCoverage,
        subprojectName: String
    ): Boolean {
        return if (testCoverage.os == Os.MACOS && testCoverage.arch == Arch.AMD64) {
            subprojectName.contains("native") ||
                // Include precondition-tester here so we understand that tests do run on macOS intel as well
                subprojectName in listOf("file-watching", "snapshots", "workers", "logging", "precondition-tester")
        } else {
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Thu Feb 15 17:04:41 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  4. .github/workflows/tests.yml

        strategy:
          matrix:
            dbversion: ['postgres:latest', 'postgres:13', 'postgres:12', 'postgres:11', 'postgres:10']
            go: ['1.21', '1.20', '1.19']
            platform: [ubuntu-latest] # can not run in macOS and Windows
        runs-on: ${{ matrix.platform }}
    
        services:
          postgres:
            image: ${{ matrix.dbversion }}
            env:
              POSTGRES_PASSWORD: gorm
              POSTGRES_USER: gorm
    Others
    - Registered: Sun Apr 28 09:35:09 GMT 2024
    - Last Modified: Mon Jan 29 02:34:20 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  5. tensorflow/c/README.md

      - [Linux GPU](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensorflow-gpu-linux-x86_64.tar.gz)
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Oct 23 01:38:30 GMT 2018
    - 539 bytes
    - Viewed (0)
  6. ci/official/envs/enable_pycpp_build

    # ==============================================================================
    #
    # Changes the behavior in pycpp.sh from "run all tests" to "verify that all
    # tests can compile." Used in some CI jobs (macOS and Linux Arm64) where test
    # execution is too expensive.
    TFCI_PYCPP_SWAP_TO_BUILD_ENABLE=1
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Feb 02 21:57:40 GMT 2024
    - 976 bytes
    - Viewed (0)
  7. ci/official/README.md

    #    build. This should also match the system you're using--you cannot build
    #    the TF MacOS package from Linux.
    #      Ex. linux_x86        -- x86_64 Linux platform
    #      Ex. linux_x86_cuda   -- x86_64 Linux platform, with Nvidia CUDA support
    #      Ex. macos_arm64      -- arm64 MacOS platform
    # 3. Add modifiers. Some modifiers for local execution are:
    #      Ex. disk_cache -- Use a local cache
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Feb 01 03:21:19 GMT 2024
    - 8K bytes
    - Viewed (0)
  8. ci/official/utilities/setup.sh

        cat "$FROM_ENV"
        source "$FROM_ENV"
        rm "$FROM_ENV"
      fi
    fi
    
    # Mac builds have some specific setup needs. See setup_macos.sh for details
    if [[ "${OSTYPE}" =~ darwin* ]]; then
      source ./ci/official/utilities/setup_macos.sh
    fi
    
    # Create and expand to the full path of TFCI_OUTPUT_DIR
    export TFCI_OUTPUT_DIR=$(realpath "$TFCI_OUTPUT_DIR")
    mkdir -p "$TFCI_OUTPUT_DIR"
    
    Shell Script
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Jan 26 00:33:34 GMT 2024
    - 5.2K bytes
    - Viewed (1)
  9. .gitignore

    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    # ------------
    *.sublime-*
    
    # jEnv
    # ----
    .java-version
    
    # macOS
    # ----
    .DS_Store
    
    # HPROF
    # -----
    *.hprof
    
    # Work dirs
    # ---------
    /incoming-distributions
    /intTestHomeDir
    
    # Logs
    # ----
    /*.log
    
    # Thread dumps for troubleshooting
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/common/extensions.kt

            param("env.GRADLE_INTERNAL_REPO_URL", "%gradle.internal.repository.url%")
            if (os == Os.MACOS) {
                // Use fewer parallel forks on macOs, since the agents are not very powerful.
                param("maxParallelForks", "2")
            }
            if (os == Os.LINUX || os == Os.MACOS) {
                param("env.LC_ALL", "en_US.UTF-8")
            }
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
Back to top