Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for existingValue (0.06 sec)

  1. android/guava/src/com/google/common/graph/DirectedGraphConnections.java

            N predecessor = incidentEdge.nodeU();
    
            Object existingValue = adjacentNodeValues.put(predecessor, PRED);
            if (existingValue != null) {
              adjacentNodeValues.put(predecessor, new PredAndSucc(existingValue));
            }
    
            orderedNodeConnectionsBuilder.add(new NodeConnection.Pred<>(predecessor));
            predecessorCount++;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test getAsString with default value
        public void test_getAsStringWithDefaultValue() {
            dataStoreParams.put("existingKey", "existingValue");
            assertEquals("existingValue", dataStoreParams.getAsString("existingKey", "defaultValue"));
    
            assertNull(dataStoreParams.getAsString("nonExistentKey"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/ParameterUtilTest.java

            // Test loading into existing map
            paramMap = new HashMap<>();
            paramMap.put("existing", "existingValue");
            configParam = "key1=value1\nkey2=value2";
            ParameterUtil.loadConfigParams(paramMap, configParam);
            assertEquals(3, paramMap.size());
            assertEquals("existingValue", paramMap.get("existing"));
            assertEquals("value1", paramMap.get("key1"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 22.6K bytes
    - Viewed (0)
Back to top