Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,283 for search_ (0.26 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/os/exec/lp_wasm.go

    //go:build wasm
    
    package exec
    
    import (
    	"errors"
    )
    
    // 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")
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/ChildMapFactory.java

        /**
         * If a node has fewer children, we use a linear search for the child.
         * We use this limit since {@link VfsRelativePath#compareToFirstSegment(String, CaseSensitivity)}
         * is about twice as slow as {@link VfsRelativePath#hasPrefix(String, CaseSensitivity)},
         * so comparing the searched path to all of the children is actually faster than doing a binary search.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/go/internal/gccgoimporter/gccgoinstallation.go

    		if err != nil || !fi.IsDir() {
    			continue
    		}
    		paths = append(paths, spath)
    	}
    
    	paths = append(paths, inst.LibPaths...)
    
    	return
    }
    
    // Return an importer that searches incpaths followed by the gcc installation's
    // built-in search paths and the current directory.
    func (inst *GccgoInstallation) GetImporter(incpaths []string, initmap map[*types.Package]InitData) Importer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelper.java

        /**
         * Searches the specified class path for a Scala Jar file (scala-compiler, scala-library,
         * scala-jdbc, etc.) with the specified appendix (compiler, library, jdbc, etc.).
         * If no such file is found, {@code null} is returned.
         *
         * @param classpath the class path to search
         * @param appendix the appendix to search for
         * @return a Scala Jar file with the specified appendix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/JavaMethod.java

        /**
         * Locates the given method. Searches all methods, including private methods.
         */
        public static <T, R> JavaMethod<T, R> of(Class<T> target, Class<R> returnType, String name, Class<?>... paramTypes) throws NoSuchMethodException {
            return new JavaMethod<T, R>(target, returnType, name, paramTypes);
        }
    
        /**
         * Locates the given static method. Searches all methods, including private methods.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 11:07:38 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. 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)
  9. .github/DISCUSSION_TEMPLATE/questions.yml

            - label: I added a very descriptive title here.
              required: true
            - label: I used the GitHub search to find a similar question and didn't find it.
              required: true
            - label: I searched the FastAPI documentation, with the integrated search.
              required: true
            - label: I already searched in Google "How to X in FastAPI" and didn't find any information.
              required: true
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/resolution/ModelResolver.java

         * repositories that were added first should also be searched first. When multiple repositories with the same
         * identifier are added, only the first repository being added will be used.
         *
         * @param repository The repository to add to the internal search chain, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top