Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 783 for search_ (0.08 sec)

  1. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

         *
         * @param dir the directory in which to search
         * @param basename the base name of the script file, i.e. its file name excluding the extension
         * @return the resolved script file present on disk, or {@literal null} if none were found
         */
        @Nullable
        File resolveScriptFile(File dir, String basename);
    
        /**
         * Searches for script files in the given directory, that is, any file with a known
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java

        public String getName() {
            if (name == null) {
                name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH);
            }
            return name;
        }
    
        protected abstract SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/os/exec/lp_plan9.go

    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in $path")
    
    func findExecutable(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if m := d.Mode(); !m.IsDir() && m&0111 != 0 {
    		return nil
    	}
    	return fs.ErrPermission
    }
    
    // LookPath searches for an executable named file in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits.go

    		}
    	}
    	return packPallocSum(start, most, cur)
    }
    
    // find searches for npages contiguous free pages in pallocBits and returns
    // the index where that run starts, as well as the index of the first free page
    // it found in the search. searchIdx represents the first known free page and
    // where to begin the next search from.
    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/Constants.java

        public static final String NOTIFICATION_TO_PROPERTY = "notification.to";
    
        public static final String SLACK_WEBHOOK_URLS_PROPERTY = "slack.webhook.urls";
    
        public static final String GOOGLE_CHAT_WEBHOOK_URLS_PROPERTY = "google.chat.webhook.urls";
    
        public static final String USE_BROWSER_LOCALE_FOR_SEARCH_PROPERTY = "search.use.browser.locale";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/os/exec/lp_unix.go

    //go:build unix
    
    package exec
    
    import (
    	"errors"
    	"internal/syscall/unix"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in $PATH")
    
    func findExecutable(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray.go

    func (x *Index) lookupAll(s []byte) ints {
    	// find matching suffix index range [i:j]
    	// find the first index where s would be the prefix
    	i := sort.Search(x.sa.len(), func(i int) bool { return bytes.Compare(x.at(i), s) >= 0 })
    	// starting at i, find the first index at which s is not a prefix
    	j := i + sort.Search(x.sa.len()-i, func(j int) bool { return !bytes.HasPrefix(x.at(j+i), s) })
    	return x.sa.slice(i, j)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. internal/config/identity/ldap/ldap.go

    		l.LDAP.GetGroupSearchBaseDistNames(), nil)
    }
    
    // GetValidatedDNUnderBaseDN checks if the given DN exists in the LDAP
    // directory.
    //
    // The `NormDN` value returned here in the search result may not be equal to the
    // input DN, as LDAP equality is not a simple Golang string equality. However,
    // we assume the value returned by the LDAP server is canonical. Additionally,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  9. src/os/exec/lp_windows.go

    // license that can be found in the LICENSE file.
    
    package exec
    
    import (
    	"errors"
    	"io/fs"
    	"os"
    	"path/filepath"
    	"strings"
    	"syscall"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in %PATH%")
    
    func chkStat(file string) error {
    	d, err := os.Stat(file)
    	if err != nil {
    		return err
    	}
    	if d.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.ExtendedStatsAggregationBuilder;
    import org.opensearch.search.aggregations.metrics.MaxAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top