Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 301 for relation (0.07 sec)

  1. src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java

        public String term;
    
        /** Content text for filtering related content. */
        public String content;
    
        /** User who created the related content. */
        public String createdBy;
    
        /** Creation time of the related content. */
        public String createdTime;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Clears all pagination state and filter parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PluginHelper.java

            }
            return request;
        }
    
        /**
         * Deletes an installed artifact.
         *
         * @param artifact the artifact to delete
         * @throws PluginException if the artifact does not exist or deletion fails
         */
        public void deleteInstalledArtifact(final Artifact artifact) {
            final String fileName = artifact.getFileName();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/job/ExecJob.java

        }
    
        /**
         * Enables garbage collection logging for this job execution.
         * Configures JVM options for comprehensive GC logging with rotation.
         *
         * @return this ExecJob instance for method chaining
         */
        public ExecJob gcLogging() {
            final StringBuilder buf = new StringBuilder(100);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            assertTrue(true);
        }
    
        // Test FilePurgeVisitor postVisitDirectory
        public void test_FilePurgeVisitor_postVisitDirectory() throws IOException {
            // Test empty directory deletion logic
            File emptyDir = new File(tempDir, "empty");
            emptyDir.mkdirs();
            assertTrue(emptyDir.exists());
    
            // Simulate the behavior of postVisitDirectory - delete empty directories
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/job/SuggestJobTest.java

        public void test_execute_success() {
            createRequiredDirectories();
    
            // Setup successful process execution
            mockProcessHelper.setExitValue(0);
            mockProcessHelper.setOutput("Suggest creation successful");
    
            String result = suggestJob.execute();
    
            assertNotNull(result);
            assertTrue(result.contains("Session Id:"));
            assertNotNull(suggestJob.sessionId);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 31.4K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt

    http://example.com/\u202E/foo/\u202D/bar  s:http h:example.com p:/%E2%80%AE/foo/%E2%80%AD/bar
    
    # Based on http://trac.webkit.org/browser/trunk/LayoutTests/fast/url/script-tests/relative.js
    http://www.google.com/foo?bar=baz# about:blank s:http h:www.google.com p:/foo q:?bar=baz f:#
    http://www.google.com/foo?bar=baz#\s\u00BB  s:http h:www.google.com p:/foo q:?bar=baz f:#\s\u00BB
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          tag = 6L,
        ) {
          derWriter.writeObjectIdentifier("2.999.3")
        }
    
        assertThat(buffer.readByteString()).isEqualTo("0603883703".decodeHex())
      }
    
      @Test fun `decode relative object identifier`() {
        val buffer =
          Buffer()
            .write("0D04c27B0302".decodeHex())
    
        val derReader = DerReader(buffer)
    
        derReader.read("test") { header ->
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  8. docs/features/interceptors.md

    ### Choosing between application and network interceptors
    
    Each interceptor chain has relative merits.
    
    **Application interceptors**
    
     * Don't need to worry about intermediate responses like redirects and retries.
     * Are always invoked once, even if the HTTP response is served from the cache.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * test method needs to create multiple containers while retaining the ability to use {@link
       * #expectContents(Object[]) expectContents(E...)} and other convenience methods. The creation of
       * multiple containers in a single method is discouraged in most cases, but it is vital to the
       * iterator tests.
       *
       * @return the new container instance
       * @param newValue the new container instance
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

        /**
         * Traverses resources contained in the file system.
         * <p>
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
Back to top