Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 974 for biggest (0.17 sec)

  1. src/main/java/org/codelibs/fess/suggest/Suggester.java

    import org.codelibs.fess.suggest.analysis.SuggestAnalyzer;
    import org.codelibs.fess.suggest.constants.FieldNames;
    import org.codelibs.fess.suggest.converter.ReadingConverter;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.index.SuggestIndexer;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    import org.codelibs.fess.suggest.request.popularwords.PopularWordsRequestBuilder;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. test-site/app/models/SuggestIndex.java

    import components.*;
    import org.codelibs.fess.suggest.Suggester;
    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.index.contents.document.DocumentReader;
    import org.codelibs.fess.suggest.index.contents.document.ESSourceReader;
    import org.codelibs.fess.suggest.request.suggest.SuggestResponse;
    
    public class SuggestIndex {
        public SuggestResponse suggest(String query) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 06 08:48:32 UTC 2015
    - 964 bytes
    - Viewed (0)
  3. src/encoding/base64/base64_test.go

    		buf := make([]byte, len(bigtest.decoded)+12)
    		var total int
    		var n int
    		var err error
    		for total = 0; total < len(bigtest.decoded) && err == nil; {
    			n, err = decoder.Read(buf[total : total+bs])
    			total += n
    		}
    		if err != nil && err != io.EOF {
    			t.Errorf("Read from %q at pos %d = %d, unexpected error %v", bigtest.encoded, total, n, err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. test-site/app/Global.java

            esRun();
            Logger.info("Setup suggest... wait 1min");
            createComponents();
            Logger.info("Create content index.");
            Suggest.createContent();
            Logger.info("Create suggest index.");
            Suggest.createSuggestFromContent();
            Logger.info("Finished setup suggest.");
        }
    
        @Override
        public void onStop(Application var1) {
            ComponentsUtil.runner.close();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Sat Feb 23 14:02:03 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

     */
    package org.codelibs.fess.suggest.index.contents;
    
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.suggest.analysis.SuggestAnalyzer;
    import org.codelibs.fess.suggest.converter.ReadingConverter;
    import org.codelibs.fess.suggest.entity.SuggestItem;
    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/internal/notsha256/sha256.go

    		panic("d.nx != 0")
    	}
    
    	var digest [Size]byte
    
    	binary.BigEndian.PutUint32(digest[0:], d.h[0]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[4:], d.h[1]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[8:], d.h[2]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[12:], d.h[3]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[16:], d.h[4]^0xFFFFFFFF)
    	binary.BigEndian.PutUint32(digest[20:], d.h[5]^0xFFFFFFFF)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:17 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java

        }
    
        // DELETE /api/admin/suggest/all
        @Execute
        public JsonResponse<ApiResult> delete$all() {
            if (!suggestHelper.deleteAllWords()) {
                throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL));
            }
            return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
        }
    
        // DELETE /api/admin/suggest/document
        @Execute
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    is the Business of experimental Philosophy to find them out. Now the smallest Particles of Matter may cohere by the strongest Attractions, and compose bigger Particles of weaker Virtue; and many of these may cohere and compose bigger Particles whose Virtue is still weaker, and so on for divers Successions, until the Progression end in the biggest Particles on which the Operations in Chymistry, and the Colours of natural Bodies depend, and which by cohering compose Bodies of a sensible Magnitude....
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. test-site/build.sbt

    libraryDependencies += "org.codelibs" % "elasticsearch-cluster-runner" % "2.1.2.0"
    
    libraryDependencies += "org.codelibs" % "elasticsearch-fess-suggest" % "2.1.2"
    
    libraryDependencies += "org.codelibs" % "elasticsearch-analysis-kuromoji-neologd" % "2.1.1"
    
    libraryDependencies += "org.codelibs.fess" % "fess-suggest" % "2.1.4-SNAPSHOT"
    
    libraryDependencies += "org.apache.httpcomponents" % "httpclient" % "4.3.1"
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Apr 01 05:40:58 UTC 2016
    - 968 bytes
    - Viewed (0)
  10. pkg/util/parsers/parsers_test.go

    			t.Errorf("Expected repo: %q, tag: %q and digest: %q, got %q, %q and %q", testCase.Repo, testCase.Tag, testCase.Digest,
    				repo, tag, digest)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 01:53:43 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top