- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 182 for execG (0.04 seconds)
-
docs/zh-hant/docs/deployment/docker.md
/// tip | 提示 點擊程式碼中的每個數字泡泡來查看每一行在做什麼。👆 /// /// warning | 警告 務必「總是」使用 `CMD` 指令的「exec 形式」,如下所述。 /// #### 使用 `CMD` 的 Exec 形式 { #use-cmd-exec-form } Docker 的 [`CMD`](https://docs.docker.com/reference/dockerfile/#cmd) 指令可以有兩種寫法: ✅ Exec 形式: ```Dockerfile # ✅ 請這樣做 CMD ["fastapi", "run", "app/main.py", "--port", "80"] ``` ⛔️ Shell 形式:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 24.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java
} /** * Creates a new build summary for the specified project. * * @param project The project being summarized, must not be {@code null}. * @param execTime The exec time of the project in milliseconds. * @param wallTime The wall time of the project in milliseconds. * @param cause The cause of the build failure, may be {@code null}. */Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 2.7K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/GitWrapper.java
.collect(Collectors.toMap(parts -> parts[0], parts -> parts[1])); } String runCommand(String... args) { final ByteArrayOutputStream stdout = new ByteArrayOutputStream(); execOperations.exec(spec -> { // The redundant cast is to silence a compiler warning. spec.setCommandLine((Object[]) args); spec.setStandardOutput(stdout); });
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 3K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/ParallelDetector.java
} else if (isMac(project.getProviders())) { // Ask macOS to count physical CPUs for us ByteArrayOutputStream stdout = new ByteArrayOutputStream(); project.exec(spec -> { spec.setExecutable("sysctl"); spec.args("-n", "hw.physicalcpu"); spec.setStandardOutput(stdout); });
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Aug 09 07:39:30 GMT 2021 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
logger.error("IndexUpdater is terminated.", t); org.codelibs.fess.exec.Crawler.addError(t.getClass().getSimpleName()); } else if (logger.isInfoEnabled()) { logger.info("IndexUpdater is terminated."); org.codelibs.fess.exec.Crawler.addError(t.getClass().getSimpleName()); } forceStop(); } finally {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
api/go1.19.txt
pkg net/url, method (*URL) JoinPath(...string) *URL #47005 pkg net/url, type URL struct, OmitHost bool #46059 pkg os/exec, method (*Cmd) Environ() []string #50599 pkg os/exec, type Cmd struct, Err error #43724 pkg os/exec, var ErrDot error #43724 pkg regexp/syntax, const ErrNestingDepth = "expression nests too deeply" #51684 pkg regexp/syntax, const ErrNestingDepth ErrorCode #51684
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Dec 02 16:29:41 GMT 2022 - 17.9K bytes - Click Count (0) -
.github/workflows/arm-ci.yml
fi docker container prune -f - name: Clean repository shell: bash run: find /home/ubuntu/actions-runner/_work/tensorflow/tensorflow/. -name . -o -prune -exec sudo rm -rf -- {} + || true - name: Checkout repository uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - name: Build binary and run python tests shell: bash run: |Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Jan 01 08:09:03 GMT 2026 - 2.2K bytes - Click Count (0) -
build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch-with-added-config.tar.gz
logging -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m elasticsearch-1.2.3/bin/elasticsearch-keystore #!/bin/sh echo elasticsearch-keystore script executed! elasticsearch-1.2.3/bin/elasticsearch #!/bin/sh exec echo "elasticsearch script executed!"...
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.2K bytes - Click Count (0) -
build-tools-internal/src/integTest/resources/org/elasticsearch/gradle/fake_elasticsearch.tar.gz
logging -Xlog:gc*,gc+age=trace,safepoint:file=logs/gc.log:utctime,pid,tags:filecount=32,filesize=64m elasticsearch-1.2.3/bin/elasticsearch-keystore #!/bin/sh echo elasticsearch-keystore script executed! elasticsearch-1.2.3/bin/elasticsearch #!/bin/sh exec echo "elasticsearch script executed!"...
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.1K bytes - Click Count (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnup/UpgradeOptions.java
*/ @Nonnull Optional<Boolean> model(); /** * Should upgrade plugins known to fail with Maven 4 to their minimum compatible versions. * This includes upgrading plugins like maven-exec-plugin, maven-enforcer-plugin, * flatten-maven-plugin, and maven-shade-plugin to versions that work with Maven 4. * * @return an {@link Optional} containing the boolean value {@code true} if specified, or emptyCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Aug 29 12:46:51 GMT 2025 - 3.6K bytes - Click Count (0)