- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 9,317 for imports (0.2 sec)
-
docs/distributed/iam-import-with-missing-entities.sh
./mc admin service restart myminio --json ./mc ready myminio ./mc admin cluster iam import myminio docs/distributed/samples/myminio-iam-info.zip sleep 10 # Verify the list of users and service accounts from the import ./mc admin user list myminio USER_COUNT=$(./mc admin user list myminio | wc -l) if [ "${USER_COUNT}" -ne 2 ]; then
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 12 15:59:00 UTC 2024 - 4.5K bytes - Viewed (0) -
doc/initial/7-ports.md
## Ports {#ports}...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jan 22 18:07:49 UTC 2024 - 19 bytes - Viewed (0) -
doc/next/7-ports.md
## Ports {#ports} ### Linux {#linux} As [announced](go1.23#linux) in the Go 1.23 release notes, Go 1.24 requires Linux kernel version 3.2 or later. ### WebAssembly {#wasm}
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 23 19:37:35 UTC 2024 - 258 bytes - Viewed (0) -
buildscripts/minio-iam-ldap-upgrade-import-test.sh
sleep 5 set -x mc alias set new-minio http://localhost:9000 minioadmin minioadmin echo "BEFORE IMPORT mappings:" mc ready new-minio mc idp ldap policy entities new-minio mc admin cluster iam import new-minio ./old-minio-iam-info.zip echo "AFTER IMPORT mappings:" mc idp ldap policy entities new-minio set +x # mc admin service stop new-minio }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 3.4K bytes - Viewed (0) -
cni/pkg/plugin/testdata/status-ports.txt.golden
* nat -N ISTIO_INBOUND -N ISTIO_REDIRECT -N ISTIO_IN_REDIRECT -N ISTIO_OUTPUT -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001 -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006 -A PREROUTING -p tcp -j ISTIO_INBOUND -A ISTIO_INBOUND -p tcp --dport 22 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15020 -j RETURN -A ISTIO_INBOUND -p tcp --dport 15021 -j RETURN
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 13 23:37:21 UTC 2021 - 1.1K bytes - Viewed (0) -
doc/go_spec.html
import m "lib/math" m.Sin import . "lib/math" Sin </pre> <p> An import declaration declares a dependency relation between the importing and imported package. It is illegal for a package to import itself, directly or indirectly, or to directly import a package without referring to any of its exported identifiers. To import a package solely for
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 00:58:01 UTC 2024 - 282.5K bytes - Viewed (0) -
cni/pkg/plugin/testdata/include-exclude-ports.txt.golden
* nat -N ISTIO_INBOUND -N ISTIO_REDIRECT -N ISTIO_IN_REDIRECT -N ISTIO_OUTPUT -A ISTIO_INBOUND -p tcp --dport 15008 -j RETURN -A ISTIO_REDIRECT -p tcp -j REDIRECT --to-ports 15001 -A ISTIO_IN_REDIRECT -p tcp -j REDIRECT --to-ports 15006 -A PREROUTING -p tcp -j ISTIO_INBOUND -A ISTIO_INBOUND -p tcp --dport 1111 -j ISTIO_IN_REDIRECT -A ISTIO_INBOUND -p tcp --dport 2222 -j ISTIO_IN_REDIRECT -A OUTPUT -p tcp -j ISTIO_OUTPUT
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 16 22:54:20 UTC 2023 - 1.1K bytes - Viewed (0) -
api/go1.txt
pkg go/build, type Package struct, Goroot bool pkg go/build, type Package struct, HFiles []string pkg go/build, type Package struct, ImportPath string pkg go/build, type Package struct, ImportPos map[string][]token.Position pkg go/build, type Package struct, Imports []string pkg go/build, type Package struct, Name string pkg go/build, type Package struct, PkgObj string pkg go/build, type Package struct, PkgRoot string
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
docs/pt/docs/tutorial/bigger-applications.md
Também poderíamos importá-los como: ```Python from app.routers import items, users ``` /// info | "Informação" A primeira versão é uma "importação relativa": ```Python from .routers import items, users ``` A segunda versão é uma "importação absoluta": ```Python from app.routers import items, users ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 19.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/debugging.md
Então, a seção: ```Python uvicorn.run(app, host="0.0.0.0", port=8000) ``` vai executar. --- Isso não acontecerá se você importar esse módulo (arquivo). Então, se você tiver outro arquivo `importer.py` com: ```Python from myapp import app # Mais um pouco de código ``` nesse caso, a variável criada automaticamente dentro de `myapp.py` não terá a variável `__name__` com o valor `"__main__"`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.6K bytes - Viewed (0)