- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 165 for nohost (0.04 sec)
-
src/test/java/jcifs/smb/SmbTreeConnectionTest.java
when(transport.isDisconnected()).thenReturn(false); when(transport.getRemoteHostName()).thenReturn("host"); setTree(c, tree); SmbResourceLocatorImpl loc = new SmbResourceLocatorImpl(ctx, smbUrl("smb://host/share/")); SmbTreeHandle h = c.connect(loc); assertNotNull(h); // No host connect attempted as we're already connected verify(c, never()).connectHost(any(), anyString()); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
Thread.sleep(100); try (FileWriter writer = new FileWriter(lmhostsFile)) { writer.write("192.168.1.200 NEWHOST\n"); } // Should reload file and find new host result = lmhosts.getByName("NEWHOST", mockContext); assertNotNull(result); // Old host should not be found result = lmhosts.getByName("TESTHOST", mockContext); assertNull(result); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
cmd/admin-handlers.go
mRemote := collectRemoteMetrics(cctx, types, collectMetricsOpts{}) cancel() m.Merge(&mRemote) for idx, host := range m.Hosts { m.Hosts[idx] = anonAddr(host) } for host, metrics := range m.ByHost { m.ByHost[anonAddr(host)] = metrics delete(m.ByHost, host) } return &m } anonymizeCmdLine := func(cmdLine string) string { if anonParam != anonymizeStrict {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 99.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/MatchAllQueryCommandTest.java
logger.info("Execute method called with query: {} and boost: {}", query, boost); } public void test_execute_withHighBoost() { // Test execute with high boost value QueryContext context = new QueryContext("test", false); MatchAllDocsQuery query = new MatchAllDocsQuery(); float boost = 10.0f;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/FuzzyQueryCommandTest.java
// Test convertFuzzyQuery with boost values public void test_convertFuzzyQuery_withBoost() { QueryContext context = new QueryContext("test", false); Term term = new Term("title", "fuzzy"); FuzzyQuery fuzzyQuery = new FuzzyQuery(term); // Test with different boost values float[] boostValues = { 0.5f, 1.0f, 2.5f, 10.0f }; for (float boost : boostValues) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.7K bytes - Viewed (0) -
src/test/java/jcifs/netbios/UniAddressTest.java
when(mockInetAddress.getHostName()).thenReturn("inet-host"); UniAddress uniAddress = new UniAddress(mockInetAddress); assertEquals("inet-host", uniAddress.getHostName()); } @Test void shouldReturnNbtAddressHostnameWhenWrappedIsNbtAddress() { when(mockNbtAddress.getHostName()).thenReturn("nbt-host"); UniAddress uniAddress = new UniAddress(mockNbtAddress);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 16.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
cmd/generic-handlers.go
resource, err := getResource(r.URL.Path, r.Host, globalDomainNames) if err != nil { return nil } bucket, _ := path2BucketObject(resource) _, redirect := redirectPrefixes[path.Clean(bucket)] if redirect || resource == slashSeparator { if globalBrowserRedirectURL != nil { return globalBrowserRedirectURL } xhost, err := xnet.ParseHost(r.Host) if err != nil { return nil }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 20.7K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/query/QueryCommandTest.java
public String getIndexFieldBoost() { return "boost"; } @Override public String getIndexFieldContentLength() { return "content_length"; } @Override public String getIndexFieldHost() { return "host"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/QueryTestBase.java
public String getIndexFieldBoost() { return "boost"; } @Override public String getIndexFieldContentLength() { return "content_length"; } @Override public String getIndexFieldHost() { return "host"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0)