- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 147 for lockers (0.05 seconds)
-
docs/ru/docs/deployment/server-workers.md
* **Запуск при старте** * ***Перезапуски*** * Репликация (количество запущенных процессов) * **Память** * **Предварительные шаги перед запуском** ## Контейнеры и Docker { #containers-and-docker } В следующей главе о [FastAPI в контейнерах — Docker](docker.md){.internal-link target=_blank} я объясню стратегии, которые можно использовать для решения остальных **концепций деплоя**.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Sep 30 11:37:11 GMT 2025 - 10.6K bytes - Click Count (0) -
.github/workflows/multipart/docker-compose-site2.yaml
x-minio-common: &minio-common image: quay.io/minio/minio:${RELEASE} command: server http://site2-minio{1...4}/data{1...2} environment: - MINIO_PROMETHEUS_AUTH_TYPE=public - CI=true # starts 4 docker containers running minio server instances. # using nginx reverse proxy, load balancing, you can access # it through port 9000. services: site2-minio1: <<: *minio-common hostname: site2-minio1 volumes:Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Sep 30 10:13:56 GMT 2023 - 1.5K bytes - Click Count (0) -
internal/logger/targets.go
} func (tl *targetsList) set(tgts []Target) { tl.mu.Lock() defer tl.mu.Unlock() tl.list = tgts } var ( // systemTargets is the set of enabled loggers. systemTargets = newTargetsList() // auditTargets is the list of enabled audit loggers auditTargets = newTargetsList() // This is always set represent /dev/console target consoleTgt Target ) // SystemTargets returns active targets.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 6K bytes - Click Count (0) -
internal/lsync/lrwmutex.go
lm.ref = 1 lm.isWriteLock = true locked = true } } else { if !lm.isWriteLock { lm.ref++ locked = true } } return locked } const ( lockRetryInterval = 50 * time.Millisecond ) // lockLoop will acquire either a read or a write lock // // The call will block until the lock is granted using a built-in // timing randomized back-off algorithm to try again until successfulCreated: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Jan 02 17:15:06 GMT 2022 - 4.8K bytes - Click Count (0) -
internal/stmt_store/stmt_store.go
// locker: A synchronization lock that is unlocked after initialization to avoid deadlocks. // Returns: // *Stmt: A newly created statement object for executing SQL operations. // error: An error if the statement preparation fails. New(ctx context.Context, key string, isTransaction bool, connPool ConnPool, locker sync.Locker) (*Stmt, error)
Created: Sun Dec 28 09:35:17 GMT 2025 - Last Modified: Sun Apr 27 06:05:16 GMT 2025 - 6K bytes - Click Count (0) -
cmd/metrics-v3-types.go
// JoinLoaders - joins multiple loaders into a single loader. The returned // loader will call each of the given loaders in order. If any of the loaders // return an error, the returned loader will return that error. func JoinLoaders(loaders ...MetricsLoaderFn) MetricsLoaderFn { return func(ctx context.Context, m MetricValues, c *metricsCache) error { for _, loader := range loaders { if err := loader(ctx, m, c); err != nil {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Feb 28 19:33:08 GMT 2025 - 15.6K bytes - Click Count (0) -
cmd/postpolicyform.go
if len(mustFindInPolicy) != 0 { logKeys := make([]string, 0, len(mustFindInPolicy)) for key := range mustFindInPolicy { logKeys = append(logKeys, key) } return fmt.Errorf("Each form field that you specify in a form must appear in the list of policy conditions. %q not specified in the policy.", strings.Join(logKeys, ", ")) } return nil
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Oct 23 15:10:12 GMT 2025 - 12.1K bytes - Click Count (0) -
dockerscripts/docker-entrypoint.sh
Harshavardhana <******@****.***> 1699046298 -0700
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Nov 03 21:18:18 GMT 2023 - 675 bytes - Click Count (0) -
docs/orchestration/docker-compose/docker-compose.yaml
# environment: # MINIO_ROOT_USER: minioadmin # MINIO_ROOT_PASSWORD: minioadmin healthcheck: test: ["CMD", "mc", "ready", "local"] interval: 5s timeout: 5s retries: 5 # starts 4 docker containers running minio server instances. # using nginx reverse proxy, load balancing, you can access # it through port 9000. services: minio1: <<: *minio-common hostname: minio1 volumes:Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 07 05:14:10 GMT 2025 - 1.5K bytes - Click Count (0) -
docker-buildx.sh
_build "${each_osarch}" done sudo sysctl net.ipv6.conf.all.disable_ipv6=0 docker buildx build --push --no-cache \ --build-arg RELEASE="${release}" \ -t "registry.min.dev/community/minio:latest" \ -t "registry.min.dev/community/minio:${release}" \ --platform=linux/arm64,linux/amd64,linux/ppc64le \ -f Dockerfile . docker buildx prune -f sudo sysctl net.ipv6.conf.all.disable_ipv6=0 }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Oct 19 08:22:05 GMT 2025 - 1.9K bytes - Click Count (0)