- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 553 for commando (0.14 sec)
-
cmd/storagemetric_string.go
package cmd import "strconv" func _() { // An "invalid array index" compiler error signifies that the constant values have changed. // Re-run the stringer command to generate them again. var x [1]struct{} _ = x[storageMetricMakeVolBulk-0] _ = x[storageMetricMakeVol-1] _ = x[storageMetricListVols-2] _ = x[storageMetricStatVol-3] _ = x[storageMetricDeleteVol-4]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.2K bytes - Viewed (0) -
.github/workflows/codeql-analysis.yml
# If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild uses: github/codeql-action/autobuild@v1 # âšī¸ Command-line programs to run using the OS shell. # đ https://git.io/JvXDl # âī¸ If the Autobuild fails above, remove it and uncomment the following three lines
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Oct 02 13:22:07 UTC 2020 - 2.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileActivationContext.java
/** * Gets the user properties to use for interpolation and profile activation. The user properties have been * configured directly by the user on his discretion, e.g. via the {@code -Dkey=value} parameter on the command * line. * * @return The user properties, never {@code null}. */ Map<String, String> getUserProperties(); /** * Gets the base directory of the current project (if any). *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvn/forked/ForkedMavenParser.java
import org.apache.maven.api.cli.ParserException; import org.apache.maven.api.cli.ParserRequest; import org.apache.maven.api.cli.mvn.MavenParser; /** * Defines the contract for parsing command-line arguments specific to forked Maven executions. * This interface extends the {@link MavenParser}, specializing it for creating {@link ForkedMavenInvokerRequest} objects. * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptParser.java
import org.apache.maven.api.cli.Parser; import org.apache.maven.api.cli.ParserException; import org.apache.maven.api.cli.ParserRequest; /** * Defines the contract for parsing encryption-related command-line arguments and creating an EncryptInvokerRequest. * This interface extends the general {@link Parser} interface, specializing it for encryption operations. * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 03 16:03:55 UTC 2024 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtAddress.java
* Microsoft Windows platform. A NetBIOS name can be 15 characters long * and hosts usually registers several names on the network. From a * Windows command prompt you can see * what names a host registers with the nbtstat command. * <p> * <blockquote> * * <pre> * C:\>nbtstat -a 192.168.1.15 * * NetBIOS Remote Machine Name Table * * Name Type Status
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindNext2.java
private String filename; Trans2FindNext2( int sid, int resumeKey, String filename ) { this.sid = sid; this.resumeKey = resumeKey; this.filename = filename; command = SMB_COM_TRANSACTION2; subCommand = TRANS2_FIND_NEXT2; informationLevel = Trans2FindFirst2.SMB_FILE_BOTH_DIRECTORY_INFO; flags = 0x00; maxParameterCount = 8;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 3.2K bytes - Viewed (0) -
ci/official/containers/linux_arm64/build.sh
export DOCKER_BUILDKIT=1 for target in jax tf; do AR_IMAGE="$AR_IMAGE_PATH:$target-$TAG" docker pull "$AR_IMAGE" || true # Due to some flakiness of resources pulled in the build, allow the docker # command to reattempt build a few times in the case of failure (b/302558736) set +e for i in $(seq 1 5) do docker build \ --build-arg REQUIREMENTS_FILE=jax.requirements.txt \ --target=$target \
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Aug 01 15:44:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformation.java
private int informationLevel; Trans2QueryPathInformation( String filename, int informationLevel ) { path = filename; this.informationLevel = informationLevel; command = SMB_COM_TRANSACTION2; subCommand = TRANS2_QUERY_PATH_INFORMATION; totalDataCount = 0; maxParameterCount = 2; maxDataCount = 40; maxSetupCount = (byte)0x00; }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/SequentialExecutorTest.java
private static class FakeExecutor implements Executor { Queue<Runnable> tasks = Queues.newArrayDeque(); @Override public void execute(Runnable command) { tasks.add(command); } boolean hasNext() { return !tasks.isEmpty(); } void runNext() { assertTrue("expected at least one task to run", hasNext()); tasks.remove().run();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 11.4K bytes - Viewed (0)