- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 274 for names2 (0.04 sec)
-
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
public void test_methodConsistency() { // Test assistClientInvokeNames consistency String[] names1 = invokerAssistant.assistClientInvokeNames(); String[] names2 = invokerAssistant.assistClientInvokeNames(); assertSame(names1, names2); // Test assistByPassInvokeNames consistency String[] bypass1 = invokerAssistant.assistByPassInvokeNames();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
tests/query_test.go
} DB.Create(&users) var names []string if err := DB.Model(User{}).Where("name like ?", "pluck-user%").Order("name").Pluck("name", &names).Error; err != nil { t.Errorf("got error when pluck name: %v", err) } var names2 []string if err := DB.Model(User{}).Where("name like ?", "pluck-user%").Order("name desc").Pluck("name", &names2).Error; err != nil { t.Errorf("got error when pluck name: %v", err)
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Tue Jul 22 06:21:04 UTC 2025 - 51K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/lsarpc.java
final int _namesp = _src.dec_ndr_long(); if (_namesp != 0) { _src = _src.deferred; final int _namess = _src.dec_ndr_long(); final int _namesi = _src.index; _src.advance(16 * _namess); if (this.names == null) { if (_namess < 0 || _namess > 0xFFFF) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 44.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/lsarpc.java
final int _namesp = _src.dec_ndr_long(); if (_namesp != 0) { _src = _src.deferred; final int _namess = _src.dec_ndr_long(); final int _namesi = _src.index; _src.advance(16 * _namess); if (names == null) { if (_namess < 0 || _namess > 0xFFFF) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 42.5K 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/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/main/java/org/codelibs/fess/ds/DataStoreFactory.java
* Retrieves a data store instance by name. * The lookup is case-insensitive and will match both registered names * and class simple names. * * @param name the name of the data store to retrieve, may be null * @return the data store instance if found, null if not found or name is null */ public DataStore getDataStore(final String name) { if (name == null) { return null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
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/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) -
tests/generics_test.go
if len(results) != 2 { t.Errorf("expected 2 distinct names, got %d", len(results)) } var names []string for _, u := range results { names = append(names, u.Name) } sort.Strings(names) expected := []string{"GenericsDistinctDup", "GenericsDistinctUnique"} if !reflect.DeepEqual(names, expected) { t.Errorf("expected names %v, got %v", expected, names) } }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Sep 04 13:13:16 UTC 2025 - 28K bytes - Viewed (0)