Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ComponentNotFound (0.12 sec)

  1. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ComponentNotFound.java

    import java.util.Collection;
    import java.util.Collections;
    
    public class ComponentNotFound<T> implements SearchResult<T> {
        private final String message;
        private final Collection<String> locations;
    
        public ComponentNotFound(String message) {
            this.message = message;
            this.locations = Collections.emptyList();
        }
    
        public ComponentNotFound(String message, Collection<String> locations) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

    import org.gradle.api.Action;
    import org.gradle.internal.Pair;
    import org.gradle.internal.io.StreamByteBuffer;
    import org.gradle.platform.base.internal.toolchain.ComponentFound;
    import org.gradle.platform.base.internal.toolchain.ComponentNotFound;
    import org.gradle.platform.base.internal.toolchain.SearchResult;
    import org.gradle.process.ExecResult;
    import org.gradle.process.internal.ExecAction;
    import org.gradle.process.internal.ExecActionFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

                return new ComponentFound<T>(selected);
            }
            if (brokenComponents.isEmpty()) {
                return new ComponentNotFound<T>("Could not locate a " + getDisplayName() + " installation using the Windows registry.");
            }
            return new ComponentNotFound<T>("Could not locate a " + getDisplayName() + " installation. None of the following locations contain a valid installation",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top