- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 65 for precedence (0.06 seconds)
-
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
assertEquals("processed_site1", result); // Still site1 due to header precedence // Test with custom header request.addHeader("Custom-Header", "custom.value"); result = virtualHostHelper.processVirtualHost(s -> "processed_" + s, "default"); assertEquals("processed_site1", result); // Still site1 due to header precedence } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Session.java
* defined precedence onto each other to achieve proper precedence. Precedence is defined as: * <ul> * <li>System properties (lowest precedence)</li> * <li>Project properties (optional)</li> * <li>User properties (highest precedence)</li> * </ul>Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Jul 03 14:18:26 GMT 2025 - 36.5K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
*/ enum RepositoryMerging { /** * The repositories declared in the POM have precedence over the repositories specified in the request. */ POM_DOMINANT, /** * The repositories specified in the request have precedence over the repositories declared in the POM. */ REQUEST_DOMINANT, } @NonnullCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 16.3K bytes - Click Count (0) -
src/test/java/jcifs/config/PropertyConfigurationTest.java
// When PropertyConfiguration testConfig = new PropertyConfiguration(props); // Then // System properties should take precedence (if implemented) String domain = testConfig.getDefaultDomain(); assertTrue(domain.equals("systemdomain") || domain.equals("propsdomain")); } finally { // CleanupCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
@Override public String getSystemProperty(final String key) { return systemPropMap.get(key); } }; // Test that new key takes precedence over legacy key systemPropMap.put("entraid.permission.fields", "newField"); systemPropMap.put("aad.permission.fields", "legacyField"); String[] fields = fessConfig.getEntraIdPermissionFields();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25.4K bytes - Click Count (0) -
MODULE.bazel
) use_repo(pybind11_internal_configure, "pybind11") python = use_extension("@rules_python//python/extensions:python.bzl", "python") python.defaults( # The environment variable takes precedence if set. python_version = "3.11", python_version_env = "HERMETIC_PYTHON_VERSION", ) python.toolchain(python_version = "3.10") python.toolchain(python_version = "3.11")
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Thu Apr 02 01:32:13 GMT 2026 - 11K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
assertFalse(tag.matches(wrongTag)); } @Test public void test_matches_complexCombinations() { // Test tag with both id and css (id takes precedence) PrunedTag tagWithIdAndCss = new PrunedTag("div"); tagWithIdAndCss.setId("main"); tagWithIdAndCss.setCss("container"); MockNode nodeWithBothIdAndClass = new MockNode("div");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigImplTest.java
String systemValue = "system-value"; System.setProperty(Constants.FESS_CONFIG_PREFIX + testKey, systemValue); try { // Test that system property takes precedence String value = fessConfig.get(testKey); assertEquals(systemValue, value); } finally { // Clean up system propertyCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 12.9K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/AbstractUpgradeGoalTest.java
String result = upgradeGoal.testDoUpgradeLogic(context, "4.0.0"); assertEquals("4.0.0", result, "Explicit model should take precedence over --all"); } } @Nested @DisplayName("Plugin Options Handling") class PluginOptionsTests { @ParameterizedTest
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 13.7K bytes - Click Count (0) -
fastapi/openapi/utils.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 25.6K bytes - Click Count (0)