Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 835 for locabs (0.24 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/locator/ModelLocator.java

     * under the License.
     */
    package org.apache.maven.model.locator;
    
    import java.io.File;
    import java.nio.file.Path;
    
    /**
     * Locates a POM file within a project base directory.
     *
     */
    public interface ModelLocator {
    
        /**
         * Locates the POM file within the specified project directory. In case the given project directory does not exist
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java

         */
        String STRICT = "strict";
    
        /**
         * Locates the pom in the given directory.
         *
         * @param dir the directory to locate the pom for, never {@code null}
         * @return a {@code Source} pointing to the located pom or an empty {@code Optional} if none was found by this parser
         */
        @Nonnull
        Optional<Source> locate(@Nonnull Path dir);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/api/internal/classpath/DefaultModuleRegistryTest.groovy

            when:
            registry.getModule("gradle-other-module")
    
            then:
            UnknownModuleException e = thrown()
            e.message == "Cannot locate JAR for module 'gradle-other-module' in distribution directory '$distDir'."
        }
    
        def "locates an external module as a JAR on the classpath"() {
            given:
            def cl = classLoaderFor([runtimeDep])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/local.txt

    Yan Zhulanow <******@****.***> 1687193210 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Aug 07 16:22:01 UTC 2023
    - 147 bytes
    - Viewed (0)
  5. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/ModuleRegistry.java

    public interface ModuleRegistry {
        /**
         * Locates an external module by name. An external module is one for which there is no meta-data available. Assumed to be packaged as a single jar file, and to have no runtime dependencies.
         *
         * @return the module. Does not return null.
         */
        Module getExternalModule(String name) throws UnknownModuleException;
    
        /**
         * Locates a module by name.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

        }
    
        @Test
        void testLocaleIndependent() {
            Locale orig = Locale.getDefault();
            Locale[] locales = {Locale.ENGLISH, new Locale("tr"), Locale.getDefault()};
            try {
                for (Locale locale : locales) {
                    Locale.setDefault(locale);
                    checkVersionsEqual("1-abcdefghijklmnopqrstuvwxyz", "1-ABCDEFGHIJKLMNOPQRSTUVWXYZ");
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/BuildEnvironmentIntegrationTest.groovy

        @Unroll("default locale for gradle build switched to #locale")
        def "builds can be executed with different default locales"() {
            given:
            executer.withDefaultLocale(locale)
    
            and:
            buildFile.setText("""
    task check {
        doLast {
            assert Locale.getDefault().toString() == "${locale}"
        }
    }
    """, "UTF-8")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                final Set<String> langSet = new HashSet<>();
                final Enumeration<Locale> locales = request.getLocales();
                if (locales != null) {
                    while (locales.hasMoreElements()) {
                        final Locale locale = locales.nextElement();
                        final String normalizeLang = systemHelper.normalizeLang(locale.toString());
                        if (normalizeLang != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/gover/local.go

    // go command's idea of its own version as returned by Local.
    var TestVersion string
    
    // Local returns the local Go version, the one implemented by this go command.
    func Local() string {
    	v, _ := local()
    	return v
    }
    
    // LocalToolchain returns the local toolchain name, the one implemented by this go command.
    func LocalToolchain() string {
    	_, t := local()
    	return t
    }
    
    func local() (goVers, toolVers string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/Locks.kt

    import okhttp3.Dispatcher
    import okhttp3.internal.http2.Http2Connection
    import okhttp3.internal.http2.Http2Stream
    import okhttp3.internal.http2.Http2Writer
    
    /**
     * Centralisation of central locks according to docs/contribute/concurrency.md
     */
    internal object Locks {
      inline fun <T> Dispatcher.withLock(action: () -> T): T {
        contract { callsInPlace(action, InvocationKind.EXACTLY_ONCE) }
        return lock.withLock(action)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top