- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 70 for CMD (0.23 sec)
-
src/main/java/jcifs/internal/smb1/com/SmbComTreeConnectAndX.java
this.ctx = ctx; this.server = server; this.path = path; this.service = service; } @Override protected int getBatchLimit(final Configuration cfg, final byte cmd) { final int c = cmd & 0xFF; switch (c) { case SMB_COM_CHECK_DIRECTORY: return cfg.getBatchLimit("TreeConnectAndX.CheckDirectory"); case SMB_COM_CREATE_DIRECTORY:
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
} } else { this.openFunction = OPEN_FN_OPEN; } } @Override protected int getBatchLimit(final Configuration cfg, final byte cmd) { return cmd == SMB_COM_READ_ANDX ? cfg.getBatchLimit("OpenAndX.ReadAndX") : 0; } @Override protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
.gitignore
*~ \#*\# .\#* # Vim-related files [._]*.s[a-w][a-z] [._]s[a-w][a-z] *.un~ Session.vim .netrwhist # cscope-related files cscope.* # Go test binaries *.test /hack/.test-cmd-auth # JUnit test output from ginkgo e2e tests /junit*.xml # Mercurial files **/.hg **/.hg* # Vagrant .vagrant network_closure.sh # Local cluster env variables /cluster/env.sh
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
} } else { throw new SmbException("Unsupported"); } } @Override protected int getBatchLimit(final Configuration cfg, final byte cmd) { return cmd == SMB_COM_TREE_CONNECT_ANDX ? cfg.getBatchLimit("SessionSetupAndX.TreeConnectAndX") : 0; } @Override protected int writeParameterWordsWireFormat(final byte[] dst, int dstIndex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/fr/docs/deployment/docker.md
Dans ce cas, votre `Dockerfile` pourrait ressembler à ceci : ```Dockerfile FROM python:3.7 RUN pip install fastapi uvicorn EXPOSE 80 COPY ./app /app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] ``` ## Créer le code **FastAPI**. * Créer un répertoire `app` et y entrer. * Créez un fichier `main.py` avec : ```Python
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/pt/docs/deployment/docker.md
COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] # If running behind a proxy like Nginx or Traefik add --proxy-headers # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"] ``` </details> ## O que é um Contêiner
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 37.4K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
BaseConfiguration customConfig = new BaseConfiguration(false) { @Override protected Integer doGetBatchLimit(String cmd) { if ("CustomCommand".equals(cmd)) { return 5; } return null; } }; assertEquals(5, customConfig.getBatchLimit("CustomCommand"));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
apache-maven/src/assembly/component.xml
<include>**</include> </includes> </fileSet> <fileSet> <directory>src/assembly/maven/bin</directory> <outputDirectory>bin</outputDirectory> <includes> <include>*.cmd</include> <include>*.conf</include> </includes> <lineEnding>dos</lineEnding> </fileSet> <fileSet> <directory>target/dependency/org/jline/nativ</directory>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jun 07 06:22:47 UTC 2025 - 3.6K bytes - Viewed (0) -
docs/de/docs/deployment/docker.md
COPY ./requirements.txt /code/requirements.txt RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt COPY ./app /code/app CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80"] # Wenn Sie hinter einem Proxy wie Nginx oder Traefik sind, fügen Sie --proxy-headers hinzu # CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "80", "--proxy-headers"] ``` </details> ## Was ist ein Container?
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
} /** * {@inheritDoc} * * @see jcifs.Configuration#getBatchLimit(java.lang.String) */ @Override public int getBatchLimit(final String cmd) { return this.delegate.getBatchLimit(cmd); } /** * {@inheritDoc} * * @see jcifs.Configuration#isAllowCompound(java.lang.String) */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24.1K bytes - Viewed (0)