Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 154 for original2 (0.03 sec)

  1. android/guava/src/com/google/common/collect/Tables.java

            ? ((TransposeTable<R, C, V>) table).original
            : new TransposeTable<C, R, V>(table);
      }
    
      private static final class TransposeTable<
              C extends @Nullable Object, R extends @Nullable Object, V extends @Nullable Object>
          extends AbstractTable<C, R, V> {
        final Table<R, C, V> original;
    
        TransposeTable(Table<R, C, V> original) {
          this.original = checkNotNull(original);
        }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedMapTest.java

        assertSame(Ordering.natural(), copy.comparator());
      }
    
      public void testCopyOf() {
        Map<String, Integer> original = new LinkedHashMap<>();
        original.put("one", 1);
        original.put("two", 2);
        original.put("three", 3);
    
        ImmutableSortedMap<String, Integer> copy = ImmutableSortedMap.copyOf(original);
        assertMapEquals(copy, "one", 1, "three", 3, "two", 2);
        assertSame(copy, ImmutableSortedMap.copyOf(copy));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            try {
                String result = SystemUtil.getSearchEngineHttpAddress();
                assertNull(result);
            } finally {
                // Restore original value if it existed
                if (originalValue != null) {
                    System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, originalValue);
                }
            }
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt

      }
    
      companion object {
        fun uppercase(original: ResponseBody): ResponseBody =
          object : ResponseBody() {
            override fun contentType() = original.contentType()
    
            override fun contentLength() = original.contentLength()
    
            override fun source() = uppercase(original.source()).buffer()
          }
    
        private fun uppercase(original: Source): Source {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jun 20 11:46:46 UTC 2025
    - 28.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

        }
    
        public void test_toLineString() {
            // Test toLineString method
            StopwordsItem item = new StopwordsItem(1, "original");
            assertEquals("original", item.toLineString());
    
            // When updated, should return newInput
            item.setNewInput("updated");
            assertEquals("updated", item.toLineString());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/api/WebApiRequestTest.java

        }
    
        // Test getServletPath method with SAStruts.method in query string
        public void test_getServletPath_withSAStrutsMethodAtBeginning_returnsSuperPath() {
            final String originalPath = "/original/path";
            final String customPath = "/api/v1/search";
            mockRequest.setServletPath(originalPath);
            mockRequest.setQueryString("SAStruts.method=execute&query=test");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  7. okhttp/src/jvmTest/kotlin/okhttp3/OkHttpClientTest.kt

            chain.proceed(chain.request())
          }
        val original = clientTestRule.newClient()
        original
          .newBuilder()
          .addInterceptor(interceptor)
          .addNetworkInterceptor(interceptor)
          .build()
        assertThat(original.interceptors.size).isEqualTo(0)
        assertThat(original.networkInterceptors.size).isEqualTo(0)
      }
    
      /**
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java

            assertEquals(123, newParams.get("key2"));
    
            // Verify that modifications to new instance don't affect original
            newParams.put("key3", "value3");
            assertTrue(newParams.containsKey("key3"));
            assertFalse(dataStoreParams.containsKey("key3"));
    
            // Verify that modifications to original don't affect new instance
            dataStoreParams.put("key4", "value4");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java

         *
         * @param dataMap the data map to modify
         * @param key the key to store the processed value under
         * @param value the original value to process
         * @param template the template script to evaluate
         * @param scriptType the type of script engine to use
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

                  "estimated size of spliterator after trySplit (%s) is larger than original size (%s)",
                  spliterator.estimateSize(), originalSize));
        }
        if (trySplit != null) {
          if (trySplit.estimateSize() > originalSize) {
            fail(
                format(
                    "estimated size of trySplit result (%s) is larger than original size (%s)",
                    trySplit.estimateSize(), originalSize));
          }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:07:06 UTC 2025
    - 12.5K bytes
    - Viewed (0)
Back to top