Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 874 for installations (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/aether/MavenInstaller.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.impl.Installer;
    import org.eclipse.aether.installation.InstallRequest;
    import org.eclipse.aether.installation.InstallResult;
    import org.eclipse.aether.installation.InstallationException;
    import org.eclipse.aether.internal.impl.DefaultInstaller;
    import org.eclipse.sisu.Priority;
    
    import static java.util.Objects.requireNonNull;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 25 10:27:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. releasenotes/notes/56781.yaml

    kind: feature
    
    # area describes the area that this change affects.
    # Valid values are:
    # - traffic-management
    # - security
    # - telemetry
    # - installation
    # - istioctl
    # - documentation
    area: installation
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    [[about_manual]]
    = The User Manual
    
    Explore our guides and examples to use Gradle.
    
    [[releases]]
    == Releases
    
    Information on Gradle releases and how to install Gradle is found on the <<installation.adoc#installation,Installation page>>.
    
    [[content]]
    == Content
    
    The Gradle User Manual is broken down into the following sections:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/getting_started_eng.adoc

    No previous experience is necessary but a basic knowledge of Java and Kotlin is nice to have.
    
    If you need to install Gradle before the tutorial, you can do so in the <<installation.adoc#installation,installation section>>.
    
    [sidebar]
    _Training level_: **Beginner** +
    _Training time_: **55 minutes**
    
    The tutorial covers:
    
    <<part1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

            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",
                CollectionUtils.collect(brokenComponents, File::getAbsolutePath));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

            } else {
                LOGGER.debug("Ignoring candidate Visual C++ install for {} as it does not look like a Visual C++ installation.", candidate);
                return new ComponentNotFound<VisualStudioInstall>(String.format("The specified installation directory '%s' does not appear to contain a Visual Studio installation.", candidate));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/getting_started_dev.adoc

    No previous experience is necessary but a basic knowledge of Java and Kotlin is nice to have.
    
    If you need to install Gradle before the tutorial, you can see how to do so in the <<installation.adoc#installation,installation section>>.
    
    [sidebar]
    _Training level_: **Intermediate** +
    _Training time_: **65 minutes**
    
    The tutorial covers:
    
    <<partr1_gradle_init#part1_begin,Part 1.>> Initializing the Project +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            version | other1 | other2
            5       | 6      | 7
            6       | 7      | 5
            7       | 5      | 6
        }
    
        def "locates JDK and JRE installs for a typical JRE installation embedded in a Java 8 JDK installation"() {
            given:
            TestFile software = tmpDir.createDir('software')
            software.create {
                jdk {
                    lib {
                        file 'tools.jar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalBuildIntegrationTest.groovy

            installation("app/build/install/main/debug").exec().out == app.expectedOutput
    
            when:
            app.library.applyChangesToProject(file('greeter'))
            succeeds "assemble"
    
            then:
            result.assertTasksExecuted(assembleAppAndLibTasks, ":assemble")
            result.assertTasksNotSkipped(assembleAppAndLibTasks)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftCachingIntegrationTest.groovy

            then:
            executedAndNotSkipped allCompileTasks
    
            when:
            withBuildCache().run 'clean', installTask(buildType)
    
            then:
            skipped allCompileTasks
            installation(installDir(buildType)).exec().out == app.expectedOutput
    
            where:
            buildType << ['Debug', 'Release']
        }
    
        def "compilation task is relocatable (#buildType)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top