Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for ComponentNotFound (0.25 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/msvcpp/LegacyWindowsSdkLocator.java

    import org.gradle.internal.FileUtils;
    import org.gradle.internal.os.OperatingSystem;
    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.util.internal.VersionNumber;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

            }
            if (brokenInstalls.isEmpty()) {
                return new ComponentNotFound<VisualStudioInstall>("Could not locate a Visual Studio installation, using the command line tool, Windows registry or system path.");
            }
            return new ComponentNotFound<VisualStudioInstall>("Could not locate a Visual Studio installation. None of the following locations contain a valid installation",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

    import org.gradle.nativeplatform.toolchain.internal.tools.ToolRegistry;
    import org.gradle.nativeplatform.toolchain.internal.tools.ToolSearchPath;
    import org.gradle.platform.base.internal.toolchain.ComponentNotFound;
    import org.gradle.platform.base.internal.toolchain.SearchResult;
    import org.gradle.process.internal.ExecActionFactory;
    
    import java.util.Collections;
    import java.util.List;
    import java.util.Map;
    
    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. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.platform.base.internal.toolchain.ComponentNotFound> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (ComponentNotFound.java:0)
    Class <org.gradle.platform.base.internal.toolchain.SearchResult> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (SearchResult.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top