Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for getNoOutput (0.11 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

                start = longestMatchEndOffset;
            }
        }
    
        BytesRef getLongestMatchOutput(final char[] src, final int start) throws IOException {
            BytesRef pendingOutput = fst.outputs.getNoOutput();
            fst.getFirstArc(scratchArc);
            BytesRef matchOutput = null;
    
            int index = 0;
            while (start + index < src.length) {
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbPipeHandleImpl.java

            }
            return this.input;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbPipeHandle#getOutput()
         */
        @Override
        public SmbPipeOutputStream getOutput () throws CIFSException {
            if ( !this.open ) {
                throw new SmbException("Already closed");
            }
    
            if ( this.output != null ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Apr 13 17:05:22 UTC 2020
    - 10.3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/ReadWriteTest.java

                withTestNTLMCredentials(getContext())) ) {
                try ( SmbPipeHandle p = f.openPipe() ) {
                    try ( OutputStream os = p.getOutput() ) {
                        writeRandom(1024, 1024, os);
                        try ( InputStream is = p.getInput() ) {
                            verifyRandom(1024, 1024, is);
                        }
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

        }
    
        public void setDoOutput(boolean doOutput) {
            connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
        public boolean getDoOutput() {
            return connection.getDoOutput();
        }
    
        public void setAllowUserInteraction(boolean allowUserInteraction) {
            connection.setAllowUserInteraction(allowUserInteraction);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                    if (standardOutput) {
                        logger.info("Exit Code: {}", exitValue);
                    } else {
                        logger.info("Exit Code: {} - Process Output:\n{}", exitValue, it.getOutput());
                    }
                }
                if (exitValue == 143 && mt.isTeminated()) {
                    throw new ExecutionTimeoutException("The command execution is timeout: " + cmdList);
                }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmHttpURLConnection.java

        public void setDoOutput ( boolean doOutput ) {
            this.connection.setDoOutput(doOutput);
            this.doOutput = doOutput;
        }
    
    
        @Override
        public boolean getDoOutput () {
            return this.connection.getDoOutput();
        }
    
    
        @Override
        public void setAllowUserInteraction ( boolean allowUserInteraction ) {
            this.connection.setAllowUserInteraction(allowUserInteraction);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  7. 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) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. 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) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jun 23 04:13:47 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

            charMappingService.getCharMappingItem(form.dictId, form.id).ifPresent(entity -> {
                form.inputs = entity.getInputsValue();
                form.output = entity.getOutput();
            }).orElse(() -> {
                throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, form.getDisplayId()),
                        () -> asListHtml(form.dictId));
            });
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/CrawlJob.java

                final int exitValue = currentProcess.exitValue();
    
                if (logger.isInfoEnabled()) {
                    logger.info("Crawler: Exit Code={} - Process Output:\n{}", exitValue, it.getOutput());
                }
                if (exitValue != 0) {
                    final StringBuilder out = new StringBuilder();
                    if (processTimeout) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sun Jun 23 04:13:47 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top