- Sort Score
- Num 10 results
- Language All
Results 541 - 550 of 4,154 for inst (0.02 seconds)
-
docs/ru/docs/deployment/concepts.md
Это будет **сильно зависеть** от того, как вы **развёртываете систему**, как запускаете программы, обрабатываете перезапуски и т.д. Некоторые возможные идеи: * «Init Container» в Kubernetes, который запускается перед контейнером с приложением * Bash‑скрипт, который выполняет предварительные шаги, а затем запускает приложение
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 29.5K bytes - Click Count (0) -
docs/uk/docs/deployment/concepts.md
Це **значною мірою залежить** від способу **розгортання вашої системи** і, ймовірно, буде пов'язано зі способом запуску програм, обробки перезапусків тощо. Ось кілька можливих ідей: - «Init Container» у Kubernetes, який виконується перед вашим контейнером застосунку - bash-скрипт, який виконує попередні кроки, а потім запускає ваш застосунок
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 29.6K bytes - Click Count (0) -
src/packaging/common/scripts/prerm
elif [ -x /etc/init.d/fess ]; then if command -v invoke-rc.d >/dev/null; then invoke-rc.d fess stop || true else /etc/init.d/fess stop || true fi # older suse linux distributions do not ship with systemd # but do not have an /etc/init.d/ directory # this tries to start the fess service on theseCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 29 07:34:32 GMT 2018 - 1.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PublishRelease.kt
history(days = 180) } this.init() } } class PublishFinalRelease( branch: VersionedSettingsBranch, ) : PublishRelease( promotedBranch = branch.branchName, prepTask = "prepFinalRelease", promoteTask = branch.promoteFinalReleaseTaskName(), requiredConfirmationCode = "final", init = { id(FINAL_RELEASE_BUILD_CONFIGURATION_ID)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jul 24 03:08:48 GMT 2025 - 4K bytes - Click Count (0) -
.teamcity/src/test/kotlin/PromotionProjectTests.kt
import org.junit.jupiter.params.provider.CsvSource import promotion.PromotionProject import common.PLUGINS_PORTAL_URL_OVERRIDE as pluginPortalUrlOverride class PromotionProjectTests { init { DslContext.initForTest() } @Test fun `promotion project has expected build types for master branch`() { val model = setupModelFor("master")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:41:54 GMT 2025 - 15.3K bytes - Click Count (1) -
cmd/erasure-multipart.go
return nil, err } partQuorumMap := make(map[int]int) for _, driveParts := range objectParts { partsWithMetaCount := make(map[int]int, len(driveParts)) // part files can be either part.N or part.N.meta for _, partPath := range driveParts { var partNum int if _, err := fmt.Sscanf(partPath, "part.%d", &partNum); err == nil { partsWithMetaCount[partNum]++
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 24 04:05:31 GMT 2025 - 47.1K bytes - Click Count (0) -
docs/zh-hant/docs/deployment/docker.md
如果你有「多個容器」,且每個容器大概都只執行「單一行程」(例如在一個 Kubernetes 叢集中),那你可能會想要一個「獨立的容器」來完成「前置步驟」的工作,並只在單一容器、單一行程中執行,接著才啟動多個複本的工作容器。 /// info | 資訊 如果你使用 Kubernetes,這大概會是一個 [Init Container](https://kubernetes.io/docs/concepts/workloads/pods/init-containers/)。 /// 如果你的情境中,讓那些前置步驟「平行重複執行多次」沒有問題(例如不是在跑資料庫遷移,而只是檢查資料庫是否就緒),那也可以把這些步驟放在每個容器中、在啟動主要行程前執行。 ### 單一容器 { #single-container }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) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
private var keyPair: KeyPair? = null private var signedBy: HeldCertificate? = null private var maxIntermediateCas = -1 private var keyAlgorithm: String? = null private var keySize: Int = 0 init { ecdsa256() } /** * Sets the certificate to be valid in ```[notBefore..notAfter]```. Both endpoints are specifiedCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 21.6K bytes - Click Count (0) -
.ci/jobs.t/elastic+elasticsearch+multijob+packaging-tests-windows.yml
RUNTIME_JAVA_HOME=$USERPROFILE\\.java\\$ES_RUNTIME_JAVA - batch: | del /f /s /q %USERPROFILE%\.gradle\init.d\*.* mkdir %USERPROFILE%\.gradle\init.d copy .ci\init.gradle %USERPROFILE%\.gradle\init.d\ ( echo powershell.exe .\.ci\scripts\packaging-test.ps1 ^|^| exit /b 1Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 15 22:00:26 GMT 2021 - 1.1K bytes - Click Count (0) -
tests/upsert_test.go
} DB.Where(&User{Name: "find or init"}).Assign("age", 44).FirstOrInit(&user4) if user4.Name != "find or init" || user4.ID != 0 || user4.Age != 44 { t.Errorf("user should be initialized with search value and assign attrs") } DB.Save(&User{Name: "find or init", Age: 33}) DB.Where(&User{Name: "find or init"}).Attrs("age", 44).FirstOrInit(&user5) if user5.Name != "find or init" || user5.ID == 0 || user5.Age != 33 {
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Tue Jul 29 11:06:13 GMT 2025 - 13.1K bytes - Click Count (0)