- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 553 for commando (0.17 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComDeleteDirectory.java
*/ package jcifs.smb1.smb1; class SmbComDeleteDirectory extends ServerMessageBlock { SmbComDeleteDirectory( String directoryName ) { this.path = directoryName; command = SMB_COM_DELETE_DIRECTORY; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) { int start = dstIndex;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.7K bytes - Viewed (0) -
ci/official/upload.sh
if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then tfrun python3 tensorflow/tools/ci_build/update_version.py --nightly fi source ci/official/utilities/get_versions.sh # Note on gsutil commands: # "gsutil cp" always "copies into". It cannot act on the contents of a directory # and it does not seem possible to e.g. copy "gs://foo/bar" as anything other than
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jan 24 20:52:12 UTC 2024 - 2.8K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.15.md
### CLI Improvements - Added `kubeadm upgrade node`. This command can be used to upgrade both secondary control-plane nodes and worker nodes. The `kubeadm upgrade node config` and `kubeadm upgrade node experimental-control-plane` commands are now deprecated. ([#78408](https://github.com/kubernetes/kubernetes/pull/78408), [@fabriziopandini](https://github.com/fabriziopandini))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 278.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNegotiate.java
import java.io.UnsupportedEncodingException; class SmbComNegotiate extends ServerMessageBlock { private static final String DIALECTS = "\u0002NT LM 0.12\u0000"; SmbComNegotiate() { command = SMB_COM_NEGOTIATE; flags2 = DEFAULT_FLAGS2; } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 1.9K bytes - Viewed (0) -
helm/minio/templates/NOTES.txt
{{ template "minio.fullname" . }}.{{ .Release.Namespace }}.{{ .Values.clusterDomain }} To access MinIO from localhost, run the below commands: 1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") 2. kubectl port-forward $POD_NAME 9000 --namespace {{ .Release.Namespace }}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 15:48:31 UTC 2024 - 2.7K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
<span style="color: green;">INFO</span>: Waiting for application startup. <span style="color: green;">INFO</span>: Application startup complete. ``` </div> /// note La commande `uvicorn main:app` fait référence à : * `main` : le fichier `main.py` (le module Python). * `app` : l'objet créé dans `main.py` via la ligne `app = FastAPI()`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferral.java
*/ package jcifs.smb1.smb1; class Trans2GetDfsReferral extends SmbComTransaction { private int maxReferralLevel = 3; Trans2GetDfsReferral( String filename ) { path = filename; command = SMB_COM_TRANSACTION2; subCommand = TRANS2_GET_DFS_REFERRAL; totalDataCount = 0; maxParameterCount = 0; maxDataCount = 4096; maxSetupCount = (byte)0x00; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TransPeekNamedPipe.java
package jcifs.smb1.smb1; class TransPeekNamedPipe extends SmbComTransaction { private int fid; TransPeekNamedPipe( String pipeName, int fid ) { name = pipeName; this.fid = fid; command = SMB_COM_TRANSACTION; subCommand = TRANS_PEEK_NAMED_PIPE; timeout = 0xFFFFFFFF; maxParameterCount = 6; maxDataCount = 1; maxSetupCount = (byte)0x00; setupCount = 2;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.1K bytes - Viewed (0) -
compat/maven-embedder/src/site/apt/index.apt.vm
per project settings can be defined by files in <<<.mvn/>>> directory: * <<<.mvn/jvm.config>>> containing jvm options, * <<<.mvn/maven.config>>> containing Maven command-line parameter, * <<<.mvn/extensions.xml>>> containing {{{./core-extensions.html}a list of extensions}}, * since 3.5.0, output is colorized by default, with color disabled in batch mode: see
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerException.java
import org.apache.maven.api.annotations.Nullable; import org.apache.maven.api.services.MavenException; /** * Represents an exception that occurs during the invocation of a Maven build or command. * This exception is typically thrown when there are errors during the execution of a Maven * process, such as build failures, plugin errors, or other runtime issues. * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2K bytes - Viewed (0)