Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,778 for determin (0.54 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileActivator.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Determines whether a profile should be activated.
     *
     */
    public interface ProfileActivator {
    
        /**
         * Determines whether the specified profile is active in the given activator context.
         *
         * @param profile The profile whose activation status should be determined, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/ProfileActivator.java

    import org.apache.maven.model.profile.ProfileActivationContext;
    
    /**
     * Determines whether a profile should be activated.
     *
     */
    public interface ProfileActivator {
    
        /**
         * Determines whether the specified profile is active in the given activator context.
         *
         * @param profile The profile whose activation status should be determined, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileSelector.java

     *
     */
    public interface ProfileSelector {
    
        /**
         * Determines the profiles which are active in the specified activation context. Active profiles will eventually be
         * injected into the model.
         *
         * @param profiles The profiles whose activation status should be determined, must not be {@code null}.
         * @param context The environmental context used to determine the activation status of a profile, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Namer.java

     * @param <T> The type of object that the namer can name
     */
    public interface Namer<T> {
    
        /**
         * Determines the name of the given object.
         *
         * @param object The object to determine the name of
         * @return The object's inherent name. Never null.
         * @throws RuntimeException If the name cannot be determined or is null
         */
        String determineName(T object);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileSelector.java

     *
     */
    public interface ProfileSelector {
    
        /**
         * Determines the profiles which are active in the specified activation context. Active profiles will eventually be
         * injected into the model.
         *
         * @param profiles The profiles whose activation status should be determined, must not be {@code null}.
         * @param context The environmental context used to determine the activation status of a profile, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/VisualStudioVersionDeterminerTest.groovy

        def visualCppMetadataProvider = Mock(VisualCppMetadataProvider)
        def determiner = new VisualStudioVersionDeterminer(commandLineLocator, windowsRegistryLocator, visualCppMetadataProvider)
        List<VisualStudioInstallCandidate> vswhereInstalls = []
        List<VisualStudioInstallCandidate> windowsRegistryInstalls = []
    
        def "can determine a VS2017 version of an install from command line"() {
            def dir1 = tmpDir.createDir("dir1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/ProjectDependencyPublicationResolver.java

     * determine the coordinates which should be used in other published metadata to reference
     * the project component or its variant.
     *
     * TODO: This data should instead be exposed by dependency-management via a ResolutionResult.
     */
    public interface ProjectDependencyPublicationResolver {
        /**
         * Determines the coordinates of the given type for the root component of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScalaRuntimeHelper.java

                }
            }
            return null;
        }
    
        /**
         * Determines the version of a Scala Jar file (scala-compiler, scala-library,
         * scala-jdbc, etc.). If the version cannot be determined, or the file is not a Scala
         * Jar file, {@code null} is returned.
         *
         * <p>Implementation note: The version is determined by parsing the file name, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddressFactory.java

                throw new RuntimeException("Could not determine the local IP addresses for this machine.", e);
            }
        }
    
        public InetAddress getLocalBindingAddress() {
            try {
                synchronized (lock) {
                    init();
                    return localBindingAddress;
                }
            } catch (Exception e) {
                throw new RuntimeException("Could not determine a usable local IP for this machine.", e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/MirrorSelector.java

    /**
     * Handles the selection of mirrors for repositories.
     *
     */
    @Deprecated
    public interface MirrorSelector {
    
        /**
         * Determines the mirror for the specified repository.
         *
         * @param repository The repository to determine the mirror for, must not be {@code null}.
         * @param mirrors The available mirrors, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top