Search Options

Results per page
Sort
Preferred Languages
Advance

Results 321 - 330 of 2,639 for getC (0.39 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/google/MultimapAsMapGetTester.java

        Collection<V> result = multimap().asMap().get(k0());
        result.add(v3());
        assertContentsAnyOrder(multimap().get(k0()), v0(), v3());
      }
    
      @CollectionSize.Require(absent = ZERO)
      @MapFeature.Require({SUPPORTS_REMOVE, SUPPORTS_PUT})
      public void testPropagatesRemoveThenAddToMultimap() {
        int oldSize = getNumElements();
    
        Collection<V> result = multimap().asMap().get(k0());
        assertTrue(result.remove(v0()));
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/CIFSContext.java

     * {@link jcifs.context.CIFSContextWrapper} to get forward compatibility.
     *
     * @author mbechler
     *
     */
    public interface CIFSContext {
    
        /**
         * Get a resource
         *
         * @param url the URL of the SMB resource
         * @return the SMB resource at the specified location
         * @throws CIFSException if the resource cannot be accessed
         */
        SmbResource get(String url) throws CIFSException;
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            activityHelper.login(createUser("testuser", new String[0]));
            assertEquals("action:LOGIN\tuser:testuser\tpermissions:-", localLogMsg.get());
    
            activityHelper.login(createUser("testuser", new String[] { "111", "222" }));
            assertEquals("action:LOGIN\tuser:testuser\tpermissions:111|222", localLogMsg.get());
        }
    
        public void test_loginFailure() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

        }
    
        // Test put and get operations
        public void test_putAndGet() {
            dataStoreParams.put("key1", "value1");
            assertEquals("value1", dataStoreParams.get("key1"));
    
            dataStoreParams.put("key2", 123);
            assertEquals(123, dataStoreParams.get("key2"));
    
            dataStoreParams.put("key3", null);
            assertNull(dataStoreParams.get("key3"));
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/CurlHelperTest.java

                return (NodeManager) field.get(curlHelper);
            } catch (Exception e) {
                return null;
            }
        }
    
        private SSLSocketFactory getSSLSocketFactory(CurlHelper curlHelper) {
            try {
                Field field = CurlHelper.class.getDeclaredField("sslSocketFactory");
                field.setAccessible(true);
                return (SSLSocketFactory) field.get(curlHelper);
            } catch (Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            assertEquals(3, executionOrder.size());
            assertEquals(Integer.valueOf(3), executionOrder.get(0));
            assertEquals(Integer.valueOf(2), executionOrder.get(1));
            assertEquals(Integer.valueOf(1), executionOrder.get(2));
        }
    
        // Test addScoreBooster with same priorities
        public void test_addScoreBooster_samePriority() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderException.java

            this.result = result;
        }
    
        /**
         * Gets the interim result of the model building up to the point where it failed.
         *
         * @return The interim model building result or {@code null} if not available.
         */
        public ModelBuilderResult getResult() {
            return result;
        }
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Dec 19 14:50:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

            this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION);
        }
    
        /**
         * Gets the information level that was queried.
         *
         * @return the informationLevel
         */
        public int getInformationLevel() {
            return this.informationLevel;
        }
    
        /**
         * Gets the file system information from the response.
         *
         * @return the filesystem info
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

            newOutput = newOutputs;
        }
    
        /**
         * Gets the original input word.
         *
         * @return The original input word.
         */
        public String getInput() {
            return input;
        }
    
        /**
         * Gets the original output stem.
         *
         * @return The original output stem.
         */
        public String getOutput() {
            return output;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java

            assertEquals("value1", result.get("test_key"));
            assertEquals("value2", result.get("another_test_key"));
    
            @SuppressWarnings("unchecked")
            Map<String, Object> nestedResult = (Map<String, Object>) result.get("nested_map");
            assertEquals("nestedValue", nestedResult.get("nested_key"));
        }
    
        public void test_toLowerHyphen_emptyMap() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top