- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 143 for CD (0.4 seconds)
-
ci/official/bisect.sh
# export TF_BISECT_GOOD=a_good_commit_sha # export TF_BISECT_BAD=a_failing_commit_sha # export TF_ANY_TARGETS="quoted list of targets, like on the command line" # export TF_ANY_MODE=test set -exo pipefail cd "$(dirname "$0")/../../" # tensorflow/ export TFCI="$(echo $TFCI | sed 's/,nightly_upload/,public_cache,disk_cache/')" git bisect start "$TF_BISECT_BAD" "$TF_BISECT_GOOD"
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Jan 09 18:37:25 GMT 2025 - 1.8K bytes - Click Count (0) -
docs/en/docs/project-generation.md
- 🚢 Deployment instructions using Docker Compose, including how to set up a frontend Traefik proxy to handle automatic HTTPS certificates.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 1.9K bytes - Click Count (0) -
compat/maven-plugin-api/src/test/java/org/apache/maven/plugin/descriptor/PluginDescriptorBuilderTest.java
assertEquals("jarArchiver", cr.getFieldName()); ComponentDependency cd = pd.getDependencies().get(0); assertEquals("org.apache.maven", cd.getGroupId()); assertEquals("maven-plugin-api", cd.getArtifactId()); assertEquals("2.0.6", cd.getVersion()); assertEquals("jar", cd.getType()); md = pd.getMojos().get(1); assertEquals("war", md.getGoal());
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 6K bytes - Click Count (0) -
README.md
The following commands show how to use the zip download: $ unzip fess-15.5.x.zip $ cd fess-15.5.x $ ./bin/fess For more details, see the [Installation Guide](https://fess.codelibs.org/15.5/install/index.html). ### DockerCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 14 03:19:23 GMT 2026 - 7.8K bytes - Click Count (2) -
README.md
Refer to the Javadoc for full API details. ## Building and Testing ```bash git clone https://github.com/codelibs/curl4j.git cd curl4j mvn clean test ``` ## License
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 2.5K bytes - Click Count (0) -
ci/official/any.sh
# ... # ./any.sh # or # export TF_ANY_EXTRA_ENV=ci/official/envs/local_rbe # ./any.sh # ... set -exo pipefail cd "$(dirname "$0")/../../" # tensorflow/ # Any request that includes "nightly_upload" should just use the # local multi-cache (public read-only cache + disk cache) instead.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Jan 09 18:37:25 GMT 2025 - 2.1K bytes - Click Count (0) -
src/buildall.bash
sete=false if [ "$1" = "-e" ]; then sete=true shift fi if [ "$sete" = true ]; then set -e fi pattern="$1" if [ "$pattern" = "" ]; then pattern=. fi ./make.bash || exit 1 GOROOT="$(cd .. && pwd)" gettargets() { ../bin/go tool dist list | sed -e 's|/|-|' | grep -E -v '^(android|ios)' # need C toolchain even for cross-compiling echo linux-arm-arm5 } selectedtargets() {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Apr 23 17:45:23 GMT 2024 - 2.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/FlakyTestQuarantine.kt
name = "MAKE_SURE_NO_@FLAKY_IN_DISTRIBUTIONS_INTEG_TESTS" executionMode = BuildStep.ExecutionMode.ALWAYS scriptContent = "cd testing/distributions-integ-tests/src && ! grep 'org.gradle.test.fixtures.Flaky' -r ." } } } val extraParameters = functionalTestExtraParameters(Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jan 07 10:42:35 GMT 2026 - 5.6K bytes - Click Count (0) -
buildscripts/resolve-right-versions.sh
MC_BUILD_DIR="mc-$RANDOM" if ! git clone --quiet https://github.com/minio/mc "$MC_BUILD_DIR"; then echo "failed to download https://github.com/minio/mc" purge "${MC_BUILD_DIR}" exit 1 fi (cd "${MC_BUILD_DIR}" && go build -o "$WORK_DIR/mc") # remove mc source. purge "${MC_BUILD_DIR}" "${WORK_DIR}/mc" cp --quiet -r "buildscripts/cicd-corpus/" "${WORK_DIR}/cicd-corpus/"
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Wed Aug 16 14:51:33 GMT 2023 - 1.5K bytes - Click Count (0) -
docs/zh/docs/virtual-environments.md
首先,为你的工程创建一个目录。 我通常会在我的主目录下创建一个名为 `code` 的目录。 在这个目录下,我再为每个工程创建一个目录。 <div class="termy"> ```console // 进入主目录 $ cd // 创建一个用于存放所有代码工程的目录 $ mkdir code // 进入 code 目录 $ cd code // 创建一个用于存放这个工程的目录 $ mkdir awesome-project // 进入这个工程的目录 $ cd awesome-project ``` </div> ## 创建一个虚拟环境 { #create-a-virtual-environment }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 21.4K bytes - Click Count (0)