Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Combining (0.04 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicLongMap.java

              holder.set(oldValue);
              return updaterFunction.applyAsLong(oldValue);
            });
        return holder.get();
      }
    
      /**
       * Updates the value currently associated with {@code key} by combining it with {@code x} via the
       * specified accumulator function, returning the new value. The previous value associated with
       * {@code key} (or zero, if there is none) is passed as the first argument to {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 11.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/job/PythonJobTest.java

        public void test_args_empty() {
            PythonJob result = pythonJob.args();
    
            assertSame(pythonJob, result);
            assertTrue(pythonJob.argList.isEmpty());
        }
    
        // Test combining arg and args methods
        public void test_arg_and_args_combination() {
            pythonJob.arg("single1").args("multi1", "multi2").arg("single2").args("multi3");
    
            assertEquals(5, pythonJob.argList.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
Back to top