Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 241 for OutputT (0.03 sec)

  1. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

         */
        @Override
        public void destroy() {
            destoryTimer.cancel();
            destoryTimer = null;
        }
    
        /**
         * Generates a thumbnail for the given ID and saves it to the output file.
         * @param thumbnailId The ID of the thumbnail to generate.
         * @param outputFile The file where the thumbnail will be saved.
         * @return True if thumbnail generation was successful, false otherwise.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jul 18 14:34:06 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

            return task;
        }
    
        /**
         * Generates a thumbnail image and saves it to the specified output file.
         *
         * <p>This method processes the image content associated with the thumbnail ID,
         * validates the image format, applies scaling and cropping transformations,
         * and writes the resulting thumbnail to the output file.</p>
         *
         * @param thumbnailId the unique identifier for the thumbnail
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            assertEquals(1, item.getInputs().length);
            assertEquals("", item.getInputs()[0]);
            assertEquals("output", item.getOutput());
        }
    
        // Test reload with multiple inputs
        public void test_reload_multipleInputs() throws Exception {
            writeTestFile("a,b,c,d,e => output\n");
    
            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
            assertEquals(1, result.size());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  4. dbflute_fess/_readme.txt

    and before other tasks(e.g. Generate, Document task).
    
    manage.bat(sh) => 22 (doc):
    A execution command of Document task
    which creates documents, for example, SchemaHTML, HistoryHTML
    to the "output/doc" directory.
    
    manage.bat(sh) => 23 (generate):
    A execution command of Generate task
    which generates classes corresponding your tables,
    for example, entities, condition-beans to specified
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 04 22:46:31 UTC 2015
    - 2.5K bytes
    - Viewed (0)
  5. okhttp/build.gradle.kts

        }
      }
    
      sourceSets {
        val commonJvmAndroid = create("commonJvmAndroid") {
          dependsOn(commonMain.get())
    
          kotlin.srcDir(copyKotlinTemplates.map { it.outputs })
          kotlin.srcDir(generateIdnaMappingTable.map { it.outputs })
    
          dependencies {
            api(libs.squareup.okio)
            api(libs.kotlin.stdlib)
    
            compileOnly(libs.animalsniffer.annotations)
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. regression-test/README.md

    11:55:40 V/InstrumentationResultParser:
    11:55:40 V/InstrumentationResultParser: OK (12 tests)
    ...
    11:55:40 I/XmlResultReporter: XML test result file generated at /Users/myusername/workspace/okhttp/regression-test/build/outputs/regression-results/connected/TEST-pixel3a-Q(AVD) - 10-android-test-.xml. Total tests 13, passed 11, assumption_failure 1, ignored 1,
    ...
    BUILD SUCCESSFUL in 1m 30s
    63 actionable tasks: 61 executed, 2 up-to-date
    
    ```
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Nov 13 07:09:56 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AsyncFunction.java

     *
     * @author Chris Povirk
     * @since 11.0
     */
    @GwtCompatible
    public interface AsyncFunction<I extends @Nullable Object, O extends @Nullable Object> {
      /**
       * Returns an output {@code Future} to use in place of the given {@code input}. The output {@code
       * Future} need not be {@linkplain Future#isDone done}, making {@code AsyncFunction} suitable for
       * asynchronous derivations.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/InetAddresses.java

       * addresses, the output follows <a href="http://tools.ietf.org/html/rfc5952">RFC 5952</a> section
       * 4. The main difference is that this method uses "::" for zero compression, while Java's version
       * uses the uncompressed form (except on Android, where the zero compression is also done). The
       * other difference is that this method outputs any scope ID in the format that it was provided at
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

        public void test_generate_withNullOutputFile() {
            // Test generation with null output file
            String thumbnailId = "test-thumbnail-002";
            assertFalse(thumbnailGenerator.generate(thumbnailId, null));
        }
    
        public void test_generate_withInvalidOutputPath() throws IOException {
            // Test generation with non-writable output file
            File readOnlyDir = Files.createTempDirectory(tempDir, "readonly").toFile();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         * The script data or code that was executed.
         * This field contains the actual script content that was run.
         */
        public String scriptData;
    
        /**
         * The result or output from the script execution.
         * This field contains any output or result data from the script.
         */
        public String scriptResult;
    
        /**
         * The timestamp when the job started execution.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
Back to top