- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 26 for nativeOs (0.44 sec)
-
src/main/java/jcifs/config/PropertyConfiguration.java
} value = props.getProperty("jcifs.native.os"); if (value != null) { this.nativeOs = value; } // Also support the alternative property name used in tests value = props.getProperty("jcifs.smb.client.nativeOs"); if (value != null) { this.nativeOs = value; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13.3K bytes - Viewed (0) -
src/main/java/jcifs/config/BaseConfiguration.java
/** Buffer size for SMB notification operations */ protected int smbNotifyBufferSize = SmbConstants.DEFAULT_NOTIFY_BUF_SIZE; /** Native operating system name to report */ protected String nativeOs; /** Native LAN Manager string to report */ protected String nativeLanMan = "jCIFS"; /** Virtual circuit number for SMB sessions */ protected int vcNumber = 1;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 36.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbConstants.java
/** Connection timeout in milliseconds */ int CONN_TIMEOUT = Config.getInt("jcifs.smb1.smb.client.connTimeout", DEFAULT_CONN_TIMEOUT); /** Native operating system name */ String NATIVE_OS = Config.getProperty("jcifs.smb1.smb.client.nativeOs", System.getProperty("os.name")); /** Native LAN manager name */ String NATIVE_LANMAN = Config.getProperty("jcifs.smb1.smb.client.nativeLanMan", "jCIFS"); /** Virtual circuit number */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/config/BaseConfigurationTest.java
} @Test @DisplayName("Test initDefaults with pre-set native OS") void testInitDefaultsWithPresetNativeOs() throws CIFSException { BaseConfiguration testConfig = new BaseConfiguration(false); testConfig.nativeOs = "CustomOS"; testConfig.initDefaults(); assertEquals("CustomOS", testConfig.getNativeOs()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/Configuration.java
* * @return whether to enable support for SMB1 AndX command batching */ boolean isUseBatching(); /** * * Property {@code jcifs.smb.client.nativeOs} (string, default {@code os.name}) * * @return OS string to report */ String getNativeOs(); /** *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 25.4K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
/** * Similar to load64, but allows offset + 8 > input.length, padding the result with zeroes. This * has to explicitly reverse the order of the bytes as it packs them into the result which makes * it slower than the native version. * * @param input the input bytes * @param offset the offset into the array at which to start reading * @param length the number of bytes from the input to read
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/SplitterTest.java
Iterable<String> letters = Splitter.on(literalDotPattern()).omitEmptyStrings().split(doubled); assertThat(letters).containsExactly("a", "b", "c").inOrder(); } @J2ktIncompatible // Kotlin Native's regex is based on Apache Harmony, like old Android @GwtIncompatible // java.util.regex.Pattern @AndroidIncompatible // Bug in older versions of Android we test against, since fixed.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.5K bytes - Viewed (0) -
apache-maven/pom.xml
<artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-jline-native</id> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <includeArtifactIds>jline-native</includeArtifactIds> <includes>org/jline/nativ/**</includes> </configuration> </execution>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sat Sep 06 21:30:13 UTC 2025 - 12.7K bytes - Viewed (0) -
docs/en/docs/contributing.md
* Create a new discussion following the template. * Get a few native speakers to comment on the discussion and commit to help review translations for that language. Once there are several people in the discussion, the FastAPI team can evaluate it and can make it an official translation. Then the docs will be automatically translated using AI, and the team of native speakers can review the translation, and help tweak the AI prompts.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jul 26 11:35:42 UTC 2025 - 14.9K bytes - Viewed (0) -
build.gradle.kts
} val javaVersionSetting = if (testJavaVersion > 8 && (project.name == "okcurl" || project.name == "native-image-tests")) { // Depends on native-image-tools which is 17+, but avoids on Java 8 tests "17" } else { "1.8" } val projectJvmTarget = JvmTarget.fromTarget(javaVersionSetting)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0)