Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 504 for exemplo (0.23 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java

            dataMap1.put("url", "http://example.com/test1");
            indexUpdateCallback.store(paramMap, dataMap1);
            assertEquals(1, indexingHelper.sendDocumentsCalled);
    
            // Add second document - should trigger indexing again
            Map<String, Object> dataMap2 = new HashMap<>();
            dataMap2.put("url", "http://example.com/test2");
            indexUpdateCallback.store(paramMap, dataMap2);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

            boolean result2 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/private/data.html");
            boolean result3 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/temp/cache.html");
            boolean result4 = indexUpdateCallback.isUrlCrawlable(paramMap, "http://example.com/public/index.html");
    
            assertFalse(result1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 23:31:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

                return true;
            }
    
            @Override
            public String getNotificationTo() {
                return "admin@example.com,test@example.com";
            }
    
            @Override
            public String getMailFromAddress() {
                return "fess@example.com";
            }
    
            @Override
            public String getMailFromName() {
                return "Fess System";
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

        }
    
        // Test with different origin formats
        public void test_doFilter_differentOrigins() throws Exception {
            String[] origins = { "http://localhost:8080", "https://example.com", "http://subdomain.example.com", "https://example.com:3000" };
    
            for (String origin : origins) {
                setUp(); // Reset for each test
                mockRequest.setHeader("Origin", origin);
                mockRequest.setMethod("GET");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java

            host1.setRegularName("www.example.com");
            host1.setDuplicateHostName("example.com");
            helper.duplicateHostList.add(host1);
    
            DuplicateHost host2 = new DuplicateHost();
            host2.setRegularName("secure.example.com");
            host2.setDuplicateHostName("www.example.com");
            helper.duplicateHostList.add(host2);
    
            String url = "http://example.com/test";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. okhttp-zstd/src/test/java/okhttp3/zstd/ZstdInterceptorTest.kt

      val zstdInterceptor = CompressionInterceptor(Zstd, Gzip)
    
      @Test
      fun testDecompressZstd() {
        val s = "hello zstd world".encodeUtf8().zstdCompress()
    
        val response =
          response("https://example.com/", s) {
            header("Content-Encoding", "zstd")
          }
    
        val decompressed = zstdInterceptor.decompress(response)
        assertThat(decompressed.header("Content-Encoding")).isNull()
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 06:04:22 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  7. mockwebserver/src/test/java/mockwebserver3/RecordedRequestTest.kt

              localPort = 80,
            ),
          )
        val requestLine = decodeRequestLine("CONNECT example.com:8080 HTTP/1.1")
        val request = RecordedRequest(requestLine, headers, emptyList(), 0, ByteString.EMPTY, 0, 0, socket)
        assertThat(request.target).isEqualTo("example.com:8080")
        assertThat(request.url.toString()).isEqualTo("http://example.com:8080/")
      }
    
      @Test fun testAbsoluteForm() {
        val socket =
          MockWebServerSocket(
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 02 20:36:00 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/EventListener.kt

       * example, thread A may be executing [responseBodyStart] while thread B executes [canceled].
       * Implementations must support such concurrent calls.
       *
       * Note that cancellation is best-effort and that a call may proceed normally after it has been
       * canceled. For example, happy-path events like [requestHeadersStart] and [requestHeadersEnd] may
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 14:58:02 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/InternetDomainName.java

     * but was not itself a public suffix. However, this test is no longer accurate. There are many
     * domains which are both public suffixes and addressable as hosts; {@code "uk.com"} is one example.
     * Using the subset of public suffixes that are {@linkplain #isRegistrySuffix() registry suffixes},
     * one can get a better result, as only a few registry suffixes are addressable. However, the most
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

        }
    
        public void test_logout_withNullUser() {
            // Setup
            authenticator.setLogoutUrl("https://example.com/logout");
    
            // Execute
            String result = authenticator.logout(null);
    
            // Verify
            assertNotNull(result);
            assertEquals("https://example.com/logout", result);
            assertNull(authenticator.getLastLogoutUser());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
Back to top