Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 40 for SetOutput (0.42 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/util/InputStreamThread.java

            }
        }
    
        /**
         * Returns all buffered lines as a single string, separated by newlines.
         *
         * @return the concatenated output of all buffered lines
         */
        public String getOutput() {
            final StringBuilder buf = new StringBuilder(100);
            for (final String value : list) {
                buf.append(value).append("\n");
            }
            return buf.toString();
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.6K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsTasks.java

            setDescription("Tests various testing conventions");
            // Run only after everything is compiled
            GradleUtils.getJavaSourceSets(getProject()).all(sourceSet -> dependsOn(sourceSet.getOutput().getClassesDirs()));
            naming = getProject().container(TestingConventionRule.class);
        }
    
        @Input
        public Map<String, Set<File>> getClassFilesPerEnabledTask() {
            return getProject().getTasks()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 17.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/auth/chain/CommandChain.java

                    logger.info("Command execution completed for user: username={}, exitCode={}", username, exitValue);
                }
                if (logger.isDebugEnabled()) {
                    logger.debug("Process output:\n{}", it.getOutput());
                }
                if (exitValue == 143 && mt.isTeminated()) {
                    if (logger.isDebugEnabled()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 14.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

            return String.join("\n", inputs);
        }
    
        /**
         * Returns the output character sequence that inputs are mapped to.
         *
         * @return the output sequence
         */
        public String getOutput() {
            return output;
        }
    
        /**
         * Checks whether this mapping item has pending updates.
         *
         * @return true if both newInputs and newOutput are not null, indicating pending updates
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 07:09:00 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/job/SuggestJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("SuggestCreator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  6. src/main/java/jcifs/SmbPipeHandle.java

        /**
         * Gets the output stream for writing to this pipe.
         *
         * @return this pipe's output stream
         * @throws CIFSException if an error occurs getting the output stream
         */
        OutputStream getOutput() throws CIFSException;
    
        /**
         * {@inheritDoc}
         *
         * @throws CIFSException if an error occurs closing the handle
         *
         * @see java.lang.AutoCloseable#close()
         */
        @Override
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 2.4K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/StandaloneRestTestPlugin.java

            final SourceSet testSourceSet = sourceSets.create("test");
    
            project.getTasks().withType(Test.class).configureEach(test -> {
                test.setTestClassesDirs(testSourceSet.getOutput().getClassesDirs());
                test.setClasspath(testSourceSet.getRuntimeClasspath());
            });
    
            // create a compileOnly configuration as others might expect it
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jul 05 08:34:36 GMT 2021
    - 3.4K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/TestWithDependenciesPlugin.java

            Map<String, Object> map = Map.of("builtBy", taskName);
            SourceSetContainer sourceSetContainer = project.getExtensions().getByType(SourceSetContainer.class);
            sourceSetContainer.getByName("test").getOutput().dir(map, outputDir);
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 3.2K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestTestUtil.java

                project.getPlugins().withType(JavaPlugin.class, t ->
                    testTask.mustRunAfter(project.getTasks().named("test"))
                );
    
                testTask.setTestClassesDirs(sourceSet.getOutput().getClassesDirs());
                testTask.setClasspath(sourceSet.getRuntimeClasspath());
                // if this a module or plugin, it may have an associated zip file with it's contents, add that to the test cluster
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("ThumbnailGenerator: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 11.7K bytes
    - Click Count (0)
Back to Top