- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 493 for setLong (1.17 sec)
-
src/test/java/jcifs/dcerpc/DcerpcHandleTest.java
@DisplayName("Configuration Tests") class ConfigurationTests { @Test @DisplayName("Should set security provider") void testSetDcerpcSecurityProvider() { // When: Setting security provider handle.setDcerpcSecurityProvider(mockSecurityProvider); // Then: Should not throw exception (private field, no direct verification)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.3K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
# This Dockerfile creates an image that has: # - the correct MTU setting for networking from inside the container to work. # - Visual Studio 2022 Build Tools # - MSVC 14.39 # - LLVM/Clang 18.1.4 # - MSYS2 + curl, git, patch, vim, unzip, zip # - Python 3.9 - 3.13 # - Bazelisk 1.22.1 # - JDK 21 (Azul Zulu) FROM mcr.microsoft.com/windows/servercore:ltsc2022 SHELL ["powershell.exe", "-ExecutionPolicy", "Bypass", "-Command", \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
// so more than (maximumSize / #segments) keys could get assigned to the same segment, which // would cause one to be evicted. return new CacheBuilderFactory() .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK)) .withValueStrengths(ImmutableSet.copyOf(Strength.values())) .withConcurrencyLevels(ImmutableSet.of(1, 4, 16, 64)) .withMaximumSizes(ImmutableSet.of(400, 1000))
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 15.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
void testUnicodeStringBasicFields() { // Given: A unicode string rpc.unicode_string unicodeString = new rpc.unicode_string(); // When: Setting values unicodeString.length = (short) 10; unicodeString.maximum_length = (short) 20; unicodeString.buffer = new short[] { 65, 66, 67 }; // A, B, C
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
docs/en/docs/advanced/settings.md
``` </div> /// tip To set multiple env vars for a single command just separate them with a space, and put them all before the command. /// And then the `admin_email` setting would be set to `"******@****.***"`. The `app_name` would be `"ChimichangApp"`. And the `items_per_user` would keep its default value of `50`. ## Settings in another module { #settings-in-another-module }
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlNode.java
*/ static Builder newBuilder() { return new Builder(); } /** * Builder class for creating XmlNode instances. * <p> * This builder provides a fluent API for setting the various properties of an XML node. * All properties are optional except for the node name, which must be set before calling * {@link #build()}. */ class Builder { private String name;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Jul 19 11:09:56 UTC 2025 - 18.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
*/ if (preq.getPath() != null && preq.getPath().length() > 0) { if (log.isDebugEnabled()) { log.debug(String.format("Setting DFS request path from %s to %s", preq.getPath(), preq.getFullUNCPath())); } preq.setResolveInDfs(true); preq.setPath(preq.getFullUNCPath()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params-str-validations.md
/// This is how you would use `Query()` as the default value of your function parameter, setting the parameter `max_length` to 50: {* ../../docs_src/query_params_str_validations/tutorial002_py310.py hl[7] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.2K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
But you might want to still keep the return type annotation in the function to get the support from tools like editors and type checkers (e.g. mypy). In this case, you can disable the response model generation by setting `response_model=None`: {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 16K bytes - Viewed (0)