- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 564 for dev (0.09 sec)
-
docs/ko/docs/project-generation.md
- π [Pydantic](https://docs.pydantic.dev): FastAPIμ μν΄ μ¬μ©λλ, λ°μ΄ν° κ²μ¦κ³Ό μ€μ κ΄λ¦¬. - πΎ [PostgreSQL](https://www.postgresql.org): SQL λ°μ΄ν°λ² μ΄μ€. - π [React](https://react.dev): νλ‘ νΈμλ. - π TypeScript, hooks, [Vite](https://vitejs.dev) λ° κΈ°ν νλμ μΈ νλ‘ νΈμλ μ€νμ μ¬μ©. - π¨ [Chakra UI](https://chakra-ui.com): νλ‘ νΈμλ μ»΄ν¬λνΈ. - π€ μλμΌλ‘ μμ±λ νλ‘ νΈμλ ν΄λΌμ΄μΈνΈ. - π§ͺ E2E ν μ€νΈλ₯Ό μν [Playwright](https://playwright.dev). - π¦ λ€ν¬ λͺ¨λ μ§μ.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 2.1K bytes - Viewed (0) -
docs/distributed/decom-encrypted-sse-s3.sh
./mc encrypt set sse-s3 myminio/versioned ./mc mirror internal myminio/versioned/ --quiet >/dev/null ## Soft delete (creates delete markers) ./mc rm -r --force myminio/versioned >/dev/null ## mirror again to create another set of version on top ./mc mirror internal myminio/versioned/ --quiet >/dev/null expected_checksum=$(./mc cat internal/dsync/drwmutex.go | md5sum)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 4.5K bytes - Viewed (0) -
docs/en/docs/project-generation.md
- π [Pydantic](https://docs.pydantic.dev), used by FastAPI, for the data validation and settings management. - πΎ [PostgreSQL](https://www.postgresql.org) as the SQL database. - π [React](https://react.dev) for the frontend. - π Using TypeScript, hooks, [Vite](https://vitejs.dev), and other parts of a modern frontend stack.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 1.9K bytes - Viewed (0) -
docs/es/docs/project-generation.md
- π [Pydantic](https://docs.pydantic.dev), utilizado por FastAPI, para la validaciΓ³n de datos y la gestiΓ³n de configuraciones. - πΎ [PostgreSQL](https://www.postgresql.org) como la base de datos SQL. - π [React](https://react.dev) para el frontend. - π Usando TypeScript, hooks, [Vite](https://vitejs.dev) y otras partes de un stack de frontend moderno.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Oct 04 11:16:34 UTC 2024 - 2K bytes - Viewed (0) -
ci/official/containers/linux_arm64/builder.packages.txt
# See https://github.com/pyenv/pyenv/wiki#suggested-build-environment build-essential curl libbz2-dev libffi-dev liblzma-dev libncurses5-dev libreadline-dev libsqlite3-dev libssl-dev libxml2-dev libxmlsec1-dev llvm make openssl tk-dev wget xz-utils zlib1g-dev git # Packages needed to build devtoolset file flex g++ make patch rpm2cpio unar wget
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 29 00:26:34 UTC 2023 - 430 bytes - Viewed (0) -
ci/official/containers/linux_arm64/devel.packages.txt
clang-format-12 lld-18 colordiff curl ffmpeg gdb git jq less libcurl3-dev libcurl4-openssl-dev libfreetype6-dev libhdf5-serial-dev libomp-18-dev libssl-dev libtool libxml2-dev libxslt1-dev libzmq3-dev mlocate moreutils openjdk-21-jdk openjdk-21-jre-headless openssl parallel patchelf pkg-config python3-dev python3-setuptools rsync software-properties-common sudo swig unzip
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 09 19:53:03 UTC 2024 - 494 bytes - Viewed (0) -
mvnw
if [ -n "$wrapperSha256Sum" ]; then wrapperSha256Result=false if command -v sha256sum >/dev/null; then if echo "$wrapperSha256Sum $wrapperJarPath" | sha256sum -c >/dev/null 2>&1; then wrapperSha256Result=true fi elif command -v shasum >/dev/null; then if echo "$wrapperSha256Sum $wrapperJarPath" | shasum -a 256 -c >/dev/null 2>&1; then wrapperSha256Result=true fi else
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 14 22:24:15 UTC 2024 - 10.9K bytes - Viewed (0) -
src/archive/tar/stat_unix.go
major := uint32((dev & 0x00000000000fff00) >> 8) major |= uint32((dev & 0xfffff00000000000) >> 32) minor := uint32((dev & 0x00000000000000ff) >> 0) minor |= uint32((dev & 0x00000ffffff00000) >> 12) h.Devmajor, h.Devminor = int64(major), int64(minor) case "darwin", "ios": // Copied from golang.org/x/sys/unix/dev_darwin.go. major := uint32((dev >> 24) & 0xff) minor := uint32(dev & 0xffffff)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Mar 15 16:01:50 UTC 2024 - 3.2K bytes - Viewed (0) -
tests/tests_all.sh
SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF SUSER_ID (N'gorm') IS NULL CREATE LOGIN gorm WITH PASSWORD = 'LoremIpsum86';" > /dev/null || true SQLCMDPASSWORD=LoremIpsum86 sqlcmd -U sa -S localhost:9930 -Q "IF USER_ID (N'gorm') IS NULL CREATE USER gorm FROM LOGIN gorm; ALTER SERVER ROLE sysadmin ADD MEMBER [gorm];" > /dev/null || true else
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Sep 30 03:21:19 UTC 2024 - 1.7K bytes - Viewed (0) -
docker/Dockerfile.distroless
# prepare a distroless source context to copy files from FROM cgr.dev/chainguard/static@sha256:d07036a3beff43183f49bce5b2a0bd945f2ffe6e76f734ebd040059a40d371bc AS distroless_source # prepare a base dev to modify file contents FROM ubuntu:noble AS ubuntu_source # Modify contents of container COPY --from=distroless_source /etc/ /home/etc COPY --from=distroless_source /home/nonroot /home/nonroot RUN echo istio-proxy:x:1337: >> /home/etc/group
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 23 15:22:31 UTC 2024 - 829 bytes - Viewed (0)