- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 840 for MAIN (0.03 sec)
-
deps.xml
<property name="webinf.dir" value="${basedir}/src/main/webapp/WEB-INF" /> <property name="crawler.dir" value="${basedir}/src/main/webapp/WEB-INF/env/crawler" /> <property name="suggest.dir" value="${basedir}/src/main/webapp/WEB-INF/env/suggest" /> <property name="thumbnail.dir" value="${basedir}/src/main/webapp/WEB-INF/env/thumbnail" /> <property name="site.dir" value="${basedir}/src/main/webapp/WEB-INF/site" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomArtifactTransformer.java
for (Artifact main : mains) { result.remove(main); result.add(new DefaultArtifact( main.getGroupId(), main.getArtifactId(), BUILD_POM_CLASSIFIER, main.getExtension(), main.getVersion(), main.getProperties(),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8K bytes - Viewed (0) -
okcurl/src/main/kotlin/okhttp3/curl/MainCommandLine.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.curl import kotlin.system.exitProcess fun main(args: Array<String>) { Main().main(args) exitProcess(0)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Fri Apr 05 03:30:42 UTC 2024 - 728 bytes - Viewed (0) -
docs/pt/docs/advanced/settings.md
{!> ../../docs_src/settings/app02_an_py39/main.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="17 19-21" {!> ../../docs_src/settings/app02_an/main.py!} ``` //// //// tab | Python 3.8+ non-Annotated /// dica Utilize a versão com `Annotated` se possível. /// ```Python hl_lines="16 18-20" {!> ../../docs_src/settings/app02/main.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 17K bytes - Viewed (0) -
docs/zh/docs/tutorial/bigger-applications.md
因此,为了能够在同一个文件中使用它们,我们直接导入子模块: ```Python hl_lines="5" title="app/main.py" {!../../docs_src/bigger_applications/app/main.py!} ``` ### 包含 `users` 和 `items` 的 `APIRouter` 现在,让我们来包含来自 `users` 和 `items` 子模块的 `router`。 ```Python hl_lines="10-11" title="app/main.py" {!../../docs_src/bigger_applications/app/main.py!} ``` /// info `users.router` 包含了 `app/routers/users.py` 文件中的 `APIRouter`。
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
pom.xml
<exclude>META-INF/**</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/netdfs.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/srvsvc.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/samr.java</exclude> <exclude>src/main/java/jcifs/dcerpc/msrpc/lsarpc.java</exclude> <exclude>src/main/java/jcifs/dcerpc/rpc.java</exclude> <exclude>src/main/java/jcifs/smb1/**</exclude> </excludes>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Sep 26 04:40:32 UTC 2024 - 9.3K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
### The main app file Now we create a dependency that returns a new `config.Settings()`. //// tab | Python 3.9+ ```Python hl_lines="6 12-13" {!> ../../docs_src/settings/app02_an_py39/main.py!} ``` //// //// tab | Python 3.8+ ```Python hl_lines="6 12-13" {!> ../../docs_src/settings/app02_an/main.py!} ``` ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 12.9K bytes - Viewed (0) -
buildscripts/upgrade-tests/nginx.conf
include /etc/nginx/mime.types; default_type application/octet-stream; log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" "$http_x_forwarded_for"'; access_log /var/log/nginx/access.log main; sendfile on; #tcp_nopush on; keepalive_timeout 65;
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Nov 21 18:41:30 UTC 2021 - 1.7K bytes - Viewed (0) -
docs/nl/docs/environment-variables.md
```console // Hier stellen we de omgevingsvariabelen nog niet in $ python main.py // Omdat we de omgevingsvariabelen niet hebben ingesteld, krijgen we de standaardwaarde Hello World from Python // Maar als we eerst een omgevingsvariabele aanmaken $ export MY_NAME="Wade Wilson" // en het programma dan opnieuw aanroepen $ python main.py // kan het de omgevingsvariabele nu wel uitlezen
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 20 11:13:32 UTC 2024 - 8.6K bytes - Viewed (0) -
docs/en/docs/environment-variables.md
<div class="termy"> ```console // Here we don't set the env var yet $ python main.py // As we didn't set the env var, we get the default value Hello World from Python // But if we create an environment variable first $ export MY_NAME="Wade Wilson" // And then call the program again $ python main.py // Now it can read the environment variable Hello Wade Wilson from Python ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Sep 08 20:36:53 UTC 2024 - 7.9K bytes - Viewed (0)