Search Options

Results per page
Sort
Preferred Languages
Advance

Results 491 - 500 of 2,177 for projectId (0.12 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

    import org.codelibs.fess.util.FacetResponse;
    
    public class SearchResult {
    
        protected final List<Map<String, Object>> documentList;
        protected final long allRecordCount;
        protected final String allRecordCountRelation;
        protected final long queryTime;
        protected final boolean partialResults;
        protected final FacetResponse facetResponse;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

            }
            return (T) this.info;
        }
    
    
        @Override
        protected int writeSetupWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        protected int writeParametersWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        protected int writeDataWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

    import org.lastaflute.web.servlet.request.stream.WrittenStreamOut;
    
    public abstract class DictionaryFile<T extends DictionaryItem> {
        protected DictionaryManager dictionaryManager;
    
        protected String id;
    
        protected String path;
    
        protected Date timestamp;
    
        protected DictionaryFile(final String id, final String path, final Date timestamp) {
            this.id = id;
            this.path = path;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        //
        @Resource
        protected DynamicProperties systemProperties;
    
        @Resource
        protected WebConfigService webConfigService;
    
        @Resource
        protected FileConfigService fileConfigService;
    
        @Resource
        protected ProcessHelper processHelper;
    
        @Resource
        protected ScheduledJobService scheduledJobService;
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/google/ListGenerators.java

      public static class ImmutableListOfGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          return ImmutableList.copyOf(elements);
        }
      }
    
      public static class BuilderAddListGenerator extends TestStringListGenerator {
        @Override
        protected List<String> create(String[] elements) {
          ImmutableList.Builder<String> builder = ImmutableList.<String>builder();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ListenableFutureTaskTest.java

      private ExecutorService exec;
    
      protected final CountDownLatch runLatch = new CountDownLatch(1);
      protected final CountDownLatch taskLatch = new CountDownLatch(1);
      protected final CountDownLatch listenerLatch = new CountDownLatch(1);
    
      protected volatile boolean throwException = false;
    
      protected final ListenableFutureTask<Integer> task =
          ListenableFutureTask.create(
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

    public class LanguageHelper {
        private static final Logger logger = LogManager.getLogger(LanguageHelper.class);
    
        protected String[] langFields;
    
        protected String[] supportedLanguages;
    
        protected LanguageDetector detector;
    
        protected int maxTextLength;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb1/com/SmbComOpenAndXResponse.java

            return 0;
        }
    
    
        @Override
        protected int writeParameterWordsWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) {
            return 0;
        }
    
    
        @Override
        protected int readParameterWordsWireFormat ( byte[] buffer, int bufferIndex ) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableBiMapMapInterfaceTest.java

      @Override
      protected Map<String, Integer> makeEmptyMap() {
        return ImmutableBiMap.of();
      }
    
      @Override
      protected Map<String, Integer> makePopulatedMap() {
        return ImmutableBiMap.of("one", 1, "two", 2, "three", 3);
      }
    
      @Override
      protected String getKeyNotInPopulatedMap() {
        return "minus one";
      }
    
      @Override
      protected Integer getValueNotInPopulatedMap() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Mar 09 16:16:28 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/OsddHelper.java

     *
     */
    public class OsddHelper {
        private static final Logger logger = LogManager.getLogger(OsddHelper.class);
    
        protected String osddPath;
    
        protected String encoding = Constants.UTF_8;
    
        protected String contentType = "text/xml"; // "application/opensearchdescription+xml"
    
        protected File osddFile;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top