Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 562 for search_ (0.16 sec)

  1. src/syscall/dll_windows.go

    type LazyProc struct {
    	mu   sync.Mutex
    	Name string
    	l    *LazyDLL
    	proc *Proc
    }
    
    // Find searches [DLL] for procedure named p.Name. It returns
    // an error if search fails. Find will not search procedure,
    // if it is already found and loaded into memory.
    func (p *LazyProc) Find() error {
    	// Non-racy version of:
    	// if p.proc == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt

        return when {
          offset >= 0 -> offset * 4 // This section was found by binary search.
          else -> (-offset - 2) * 4 // Not found? Use the preceding element.
        }
      }
    
      /**
       * Binary search [ranges] for [codePoint], looking at its bottom 7 bits.
       *
       * This binary searches over 4-byte entries, and so it needs to adjust binary search indices
       * in (by dividing by 4) and out (by multiplying by 4).
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:39:58 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/score/LtrQueryRescorer.java

    import org.codelibs.fess.es.query.StoredLtrQueryBuilder;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.util.ComponentUtil;
    import org.opensearch.search.rescore.QueryRescorerBuilder;
    import org.opensearch.search.rescore.RescorerBuilder;
    
    public class LtrQueryRescorer implements QueryRescorer {
    
        @Override
        public RescorerBuilder<?> evaluate(final Map<String, Object> params) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/service/impl/EsDataService.java

    import org.opensearch.action.DocWriteRequest.OpType;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.common.unit.TimeValue;
    import org.opensearch.index.query.QueryBuilders;
    import org.opensearch.search.SearchHit;
    import org.opensearch.search.SearchHits;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_query_params_str_validations/test_tutorial010_an_py39.py

                        "operationId": "read_items_items__get",
                        "parameters": [
                            {
                                "description": "Query string for the items to search in the database that have a good match",
                                "required": False,
                                "deprecated": True,
                                "schema": IsDict(
                                    {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/tag/tag.go

    // Only the first len(key) bytes from the start of the 4-byte entries will be
    // considered for the search and the first match in Index will be returned.
    func (s Index) Index(key []byte) int {
    	n := len(key)
    	// search the index of the first entry with an equal or higher value than
    	// key in s.
    	index := sort.Search(len(s)/4, func(i int) bool {
    		return cmp(s[i*4:i*4+n], key) != -1
    	})
    	i := index * 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/main/assemblies/extension/kibana/README.md

    kibana 7 settings for fess
    =====
    
    Providing example of kibana settings file for monitoring search logs of fess.
    
    ## Install
    
    1. Install and launch Fess.
    1. Install and launch kibana.
    1. Go to kibana home [http://localhost:5601/](http://localhost:5601/).
    1. Click **Management**.
    1. Click **Index Patterns**.
    1. Click **Create index pattern** button
    1. Input "fess\_log\*" to the textbox of **index pattern**.
    1. Click **Next step**.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/query/MatchAllQueryCommand.java

     */
    package org.codelibs.fess.query;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.search.MatchAllDocsQuery;
    import org.apache.lucene.search.Query;
    import org.codelibs.fess.entity.QueryContext;
    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/sync/example_pool_test.go

    	b.WriteByte(' ')
    	b.WriteString(key)
    	b.WriteByte('=')
    	b.WriteString(val)
    	w.Write(b.Bytes())
    	bufPool.Put(b)
    }
    
    func ExamplePool() {
    	Log(os.Stdout, "path", "/search?q=flowers")
    	// Output: 2006-01-02T15:04:05Z path=/search?q=flowers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1017 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/resource/local/PathNormalisingKeyFileStore.java

            return delegate.add(normalizePath(key), addAction);
        }
    
        @Override
        public Set<? extends LocallyAvailableResource> search(String key) {
            return delegate.search(normalizeSearchPath(key));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 06 12:56:56 UTC 2019
    - 1.8K bytes
    - Viewed (0)
Back to top