Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for resolveJars (0.27 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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        /**
         * Returns true if this version has a method for tests display names
         */
        boolean isHasTestDisplayNames();
    
        /**
         * Returns true if this version supports custom toolchain resolvers.
         */
        boolean isSupportsCustomToolchainResolvers();
    
        /**
         * Returns true if this version uses the non-flaky toolchain provisioning mechanism introduced in 8.9.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/test/echo/cmd/client/main.go

    // An example implementation of a client.
    
    package main
    
    import (
    	"context"
    	"fmt"
    	"net/url"
    	"os"
    	"strings"
    	"time"
    
    	"github.com/spf13/cobra"
    	// To install the xds resolvers and balancers.
    	_ "google.golang.org/grpc/xds"
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/istio/pkg/cmd"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test/echo/common"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top