- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,260 for name6 (0.03 sec)
-
src/main/java/jcifs/smb1/netbios/Name.java
Name() { } /** * Creates a NetBIOS name with the specified attributes. * * @param name the NetBIOS name (will be truncated to 15 characters if longer) * @param hexCode the NetBIOS name type/suffix * @param scope the NetBIOS scope identifier (uses default if null or empty) */ public Name(String name, final int hexCode, final String scope) { if (name.length() > 15) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Name.java
* * @param cfg the configuration to use * @param name the NetbiosName to copy from */ public Name(final Configuration cfg, final NetbiosName name) { this.config = cfg; this.name = name.getName(); this.hexCode = name.getNameType(); this.scope = name.getScope(); if (name instanceof Name) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
for (String name : expectedNames) { bb.put(name.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); } referral.decode(testBuffer, 0, testBuffer.length); assertArrayEquals(expectedNames, referral.getExpandedNames()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
rDataLengthField.setAccessible(true); rDataLengthField.set(response, 67); // 1 + 18 * 3 + 6 + 6 = 67 (3 names example) // Number of names src[srcIndex] = 0x03; // 3 names // First name entry (18 bytes) String name1 = "WORKSTATION "; System.arraycopy(name1.getBytes("US-ASCII"), 0, src, srcIndex + 1, 16); src[srcIndex + 16] = 0x00; // hex code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
assertEquals(engine2, retrievedByClass); // But original names should still work assertEquals(engine1, scriptEngineFactory.getScriptEngine("name1")); assertEquals(engine2, scriptEngineFactory.getScriptEngine("name2")); } // Test with engine that has very long class name public void test_add_longClassName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NameTest.java
assertFalse(name1.equals(name2)); } @Test void equals_withBothNullScope_shouldReturnTrue() { Name name1 = new Name(mockConfig, "TEST", 0x20, null); name1.scope = null; Name name2 = new Name(mockConfig, "TEST", 0x20, null); name2.scope = null; assertTrue(name1.equals(name2)); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TableCollectionTest.java
populateForRowKeySet(table, elements); return table.rowKeySet(); } }) .named("ArrayTable.rowKeySet") .withFeatures( CollectionSize.ONE, CollectionSize.SEVERAL, CollectionFeature.KNOWN_ORDER,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultisetsCollectionTest.java
CollectionFeature.ALLOWS_NULL_QUERIES) .named("Multisets.unmodifiableMultiset[TreeMultiset]") .createTestSuite()); suite.addTest( MultisetTestSuiteBuilder.using(unionGenerator()) .withFeatures(CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_VALUES) .named("Multisets.union") .createTestSuite()); suite.addTest(
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 9.7K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
import java.util.Set; import java.util.TreeSet; import org.apache.maven.api.di.Named; /** * Annotation processor that generates an index file for classes annotated with {@link Named}. * This processor scans for classes with the {@code @Named} annotation and creates a file * at {@code META-INF/maven/org.apache.maven.api.di.Inject} containing the fully qualified * names of these classes. * * @since 4.0.0 */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0) -
buildSrc/src/main/kotlin/Osgi.kt
.sourceSets .add(mainSourceSet) tasks.named { it.endsWith("ForFakeMain") }.configureEach { onlyIf { false } } val osgiApi = configurations.create("osgiApi") dependencies { osgiApi(kotlinOsgi) } // Call the convention when the task has finished, to modify the jar to contain OSGi metadata. tasks.named<Jar>("jvmJar").configure { val bundleExtension = extensions
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 5.1K bytes - Viewed (0)