- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 85 for macos (0.68 sec)
-
.github/workflows/maven.yml
name: Java CI with Maven on: push: branches: - master - "*.x" pull_request: branches: - master - "*.x" workflow_dispatch: jobs: build: runs-on: macos-14 env: PARENT_BRANCH: main timeout-minutes: 15 steps: - uses: actions/checkout@v4 - name: Set up JDK 21 uses: actions/setup-java@v4 with: java-version: '21'
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:07:19 UTC 2025 - 1.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/StageTriggers.kt
mapOf( StageName.PULL_REQUEST_FEEDBACK to listOf(Os.LINUX, Os.WINDOWS), StageName.READY_FOR_NIGHTLY to listOf(Os.LINUX, Os.WINDOWS, Os.MACOS), StageName.READY_FOR_RELEASE to listOf(Os.LINUX, Os.WINDOWS, Os.MACOS), ) class StageTriggers( model: CIBuildModel, stage: Stage, prevStage: Stage?, stageProject: StageProject, ) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Jun 11 10:33:45 UTC 2025 - 6.8K bytes - Viewed (0) -
.github/workflows/tests.yml
postgres: strategy: matrix: dbversion: ['postgres:latest', 'postgres:15', 'postgres:14', 'postgres:13'] go: ['1.23', '1.24'] 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
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Mon Jul 21 02:46:58 UTC 2025 - 8.9K bytes - Viewed (0) -
tensorflow/c/README.md
- [Linux GPU](https://storage.googleapis.com/tensorflow-nightly/github/tensorflow/lib_package/libtensorflow-gpu-linux-x86_64.tar.gz)
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Oct 23 01:38:30 UTC 2018 - 539 bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt
testCoverage: TestCoverage, subprojectName: String, ): Boolean = 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 {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu Apr 10 15:09:32 UTC 2025 - 7.3K bytes - Viewed (0) -
docs/ko/docs/virtual-environments.md
/// 가상 환경을 활성화하면, 가상 환경의 경로인 `.venv/bin` (Linux와 macOS) 또는 `.venv\Scripts`(Windows)를 `PATH` 환경 변수에 추가됩니다. 예를 들어, 가상 환경을 활성화하기 전의 `PATH` 변수는 다음과 같았다고 가정해봅시다: //// tab | Linux, macOS ```plaintext /usr/bin:/bin:/usr/sbin:/sbin ``` 시스템은 다음 경로들에서 프로그램을 찾게 됩니다: * `/usr/bin` * `/bin` * `/usr/sbin`
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
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
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Feb 02 21:57:40 UTC 2024 - 976 bytes - Viewed (0) -
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
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 8K bytes - Viewed (0) -
ci/official/envs/public_cache
# limitations under the License. # ============================================================================== # Sourcing this enables Bazel remote cache (public, read-only) # The cache configs are different for MacOS and Linux if [[ $(uname -s) == "Darwin" ]]; then TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_macos_cache" else TFCI_BAZEL_COMMON_ARGS="$TFCI_BAZEL_COMMON_ARGS --config tf_public_cache"
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1011 bytes - Viewed (0) -
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
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Feb 01 03:21:19 UTC 2024 - 1023 bytes - Viewed (0)