Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 245 for nohost (0.04 sec)

  1. 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)
  2. 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)
  3. src/main/resources/fess_label_it.properties

    labels.dict_stopwords_file = File stopwords
    labels.boost_document_rule_configuration=Regola di boost documento
    labels.boost_document_rule_title_details=Regola di boost documento
    labels.boost_document_rule_list_url_expr=Condizione
    labels.boost_document_rule_url_expr=Condizione
    labels.boost_document_rule_boost_expr=Espressione di boost
    labels.boost_document_rule_sort_order=Ordine di ordinamento
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                            .build());
        }
    
        /**
         * Returns a query map for the specified virtual host.
         *
         * @param key The virtual host key.
         * @return A map of terms and boost information.
         */
        protected Map<String, List<Tuple3<String, QueryBuilder, ScoreFunctionBuilder<?>>>> getQueryMap(final String key) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  5. src/main/resources/fess_label_en.properties

    labels.dict_stopwords_button_upload = Upload
    labels.dict_stopwords_file = Stopwords File
    labels.boost_document_rule_configuration=Document Boost
    labels.boost_document_rule_title_details=Document Boost
    labels.boost_document_rule_list_url_expr=Condition
    labels.boost_document_rule_url_expr=Condition
    labels.boost_document_rule_boost_expr=Boost Expression
    labels.boost_document_rule_sort_order=Sort Order
    labels.access_token_configuration=Access Token
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  6. 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)
  7. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            configParameters = "field.script.title=doc.title\nfield.script.boost=2.0";
            result = ParameterUtil.createConfigParameterMap(configParameters);
            assertEquals(2, result.get(ConfigName.SCRIPT).size());
            assertEquals("doc.title", result.get(ConfigName.SCRIPT).get("title"));
            assertEquals("2.0", result.get(ConfigName.SCRIPT).get("boost"));
    
            // Test with field config parameters
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  8. 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)
  9. src/main/resources/fess_label.properties

    labels.dict_stopwords_button_upload = Upload
    labels.dict_stopwords_file = Stopwords File
    labels.boost_document_rule_configuration=Document Boost
    labels.boost_document_rule_title_details=Document Boost
    labels.boost_document_rule_list_url_expr=Condition
    labels.boost_document_rule_url_expr=Condition
    labels.boost_document_rule_boost_expr=Boost Expression
    labels.boost_document_rule_sort_order=Sort Order
    labels.access_token_configuration=Access Token
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/QueryHelper.java

        }
    
        /**
         * Builds virtual host query filters to restrict search results to the current virtual host.
         * This method adds filters based on the virtual host key, except for admin searches.
         *
         * @param queryContext the query context to modify
         * @param searchRequestType the type of search request to determine if virtual host filtering should be applied
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 19.9K bytes
    - Viewed (0)
Back to top