Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for resolveJars (0.15 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactRepositoryContainer.java

     *
     * <p>You can obtain a {@code ResolverContainer} instance by calling {@link org.gradle.api.Project#getRepositories()} or
     * using the {@code repositories} property in your build script.</p>
     *
     * <p>The resolvers in a container are accessible as read-only properties of the container, using the name of the
     * resolver as the property name. For example:</p>
     *
     * <pre class='autoTested'>
     * repositories.maven { name 'myResolver' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/resolver/DefaultVcsVersionWorkingDirResolver.java

                return repository.getDefaultBranch();
            }
    
            if (versionSelector.requiresMetadata()) {
                // TODO - implement this by moving this resolver to live alongside the external resolvers
                return null;
            }
    
            Set<VersionRef> versions = inMemoryCache.getVersionsForRepo(repository);
            if (versions == null) {
                versions = repository.getAvailableVersions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java

    import org.junit.jupiter.api.BeforeEach;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    
    /**
     * Provides a basis for testing conflict resolvers.
     *
     */
    @PlexusTest
    @Deprecated
    public abstract class AbstractConflictResolverTest {
        // constants --------------------------------------------------------------
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            given:
            initialFiles()
    
            when:
            def dep5 = sourceFile("dep5")
            graph[dep5] = []
            parse(dep5)
            dependencyResolver.resolveAs("dep4", dep5)
            graph[source2] = [dep3, dep5]
    
            then:
            with(state) {
                recompile == [source2]
                removed == []
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/crossVersionTest/groovy/org/gradle/jvm/toolchain/internal/install/ProvisionedJdkReuseCrossVersionIntegrationTest.groovy

    import static org.gradle.jvm.toolchain.JavaToolchainDownloadUtil.singleUrlResolverCode
    
    // We need to test specifically versions before the toolchain provisioning was fixed that support resolvers.
    @IgnoreVersions({ !it.isSupportsCustomToolchainResolvers() || it.isNonFlakyToolchainProvisioning() })
    @Requires(IntegTestPreconditions.JavaHomeWithDifferentVersionAvailable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManagerTest.groovy

            then:
            1 * action2.execute(_) >> { Ivy param ->
                assert param.settings.is(ivySettings)
                assert ivySettings.defaultResolverName == null
                assert ivySettings.resolvers.empty
                assert ivySettings.resolverNames.empty
            }
        }
    
        def "each thread is given a separate Ivy instance and context"() {
            given:
            def ivy1
            def ivySettings1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/IvyComponentParser.java

                .map(variant -> dependencyCoordinateResolverFactory
                    .createCoordinateResolvers(variant, versionMappingStrategy)
                    .map(resolvers -> getDependenciesForVariant(variant, resolvers.getVariantResolver(), platformSupport))
                )
                .collect(ImmutableList.toImmutableList());
    
            return new MergeProvider<>(parsedVariants).map(variants -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadIntegrationTest.groovy

                   .assertHasCause("No matching toolchain could be found in the locally installed toolchains or the configured toolchain download repositories. " +
                       "Some toolchain resolvers had provisioning failures: custom (Unable to download toolchain matching the requirements " +
                       "({languageVersion=99, vendor=any, implementation=vendor-specific}) from 'http://exoticJavaToolchain.com/java-99', " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. pkg/test/echo/cmd/server/main.go

    // limitations under the License.
    
    package main
    
    import (
    	"os"
    	"os/signal"
    	"strconv"
    	"syscall"
    
    	"github.com/spf13/cobra"
    	// To install the xds resolvers and balancers.
    	_ "google.golang.org/grpc/xds"
    
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/echo/server"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/forwardproxy/envoy_config_generator.go

    	TypedDnsResolverConfig: &envoy_core.TypedExtensionConfig{
    		Name: "envoy.network.dns_resolver.cares",
    		TypedConfig: protoconv.MessageToAny(&envoy_dns_cares.CaresDnsResolverConfig{
    			Resolvers: []*envoy_core.Address{
    				createSocketAddress("8.8.8.8", 53),
    			},
    			DnsResolverOptions: &envoy_core.DnsResolverOptions{
    				UseTcpForDnsLookups:   true,
    				NoDefaultSearchDomain: true,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 27 19:22:30 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top