Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for uris (0.09 sec)

  1. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/EffectiveClassPath.java

            }
        }
    
        private static void addManifestClasspathFiles(File classpathFile, List<File> classpathFiles) {
            List<URI> classpathUris = ManifestUtil.parseManifestClasspath(classpathFile);
            for (URI classpathUri : classpathUris) {
                addClasspathFile(new File(classpathUri), classpathFiles);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    #*      *##set ( $project.url = 'https://www.eclipse.org/sisu/' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            def original = urlConnection.getDefaultUseCaches()
            urlConnection.setDefaultUseCaches(false)
    
            try {
                URL[] urls = [new URL("jar:${jar.toURI().toURL()}!/")] as URL[]
                URLClassLoader ucl = new URLClassLoader(urls)
                if (ucl instanceof Closeable) {
                    loaders << ucl
                }
                Class.forName('org.gradle.MyClass', true, ucl)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

        assertNotNull(FinalizableReferenceQueue.getStartFinalizer(finalizerCopy));
      }
    
      static class DecoupledClassLoader extends URLClassLoader {
    
        public DecoupledClassLoader(URL[] urls) {
          super(urls);
        }
    
        @Override
        protected synchronized Class<?> loadClass(String name, boolean resolve)
            throws ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. samples/bookinfo/src/details/details.rb

            'ISBN-10' => '1234567890',
            'ISBN-13' => '123-1234567890'
        }
    end
    
    def fetch_details_from_external_service(isbn, id, headers)
        uri = URI.parse('https://www.googleapis.com/books/v1/volumes?q=isbn:' + isbn)
        http = Net::HTTP.new(uri.host, ENV['DO_NOT_ENCRYPT'] === 'true' ? 80:443)
        http.read_timeout = 5 # seconds
    
        # DO_NOT_ENCRYPT is used to configure the details service to use either
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFailuresIntegrationTest.groovy

                    implementation
                }
    
                dependencies {
                    implementation 'non:existent:1.0'
                }
    
                repositories {
                    maven { url = uri('${emptyRepo.uri}') }
                }
    
                class Bean {
                    @InputFiles FileCollection files
                }
    
                abstract class Test extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/artifactreuse/ArtifactResolutionQueryIntegrationTest.groovy

    allprojects {
        apply plugin: 'java'
        repositories {
           maven { url '${blockingServer.uri}/repo' }
        }
    
        dependencies {
            implementation 'group:artifact:1.0'
        }
    }
    
    project('query') {
        task query {
            doLast {
                '${blockingServer.uri}/sync'.toURL().text
                dependencies.createArtifactResolutionQuery()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            def configurationCache = newConfigurationCacheFixture()
            def metadataFile = file('build/publications/maven/module.json')
    
            expect:
            !GUtil.isSecureUrl(server.uri)
    
            when:
            prepareMavenHttpRepository(projectConfig.remoteRepo, new DefaultPasswordCredentials(username, password))
            configurationCacheRun(*(projectConfig.tasks))
            server.resetExpectations()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route_test.go

    				Name: "route",
    				Match: []*networking.HTTPMatchRequest{
    					{
    						Name: "non-catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/route/v1",
    							},
    						},
    					},
    					{
    						Name: "catch-all",
    						Uri: &networking.StringMatch{
    							MatchType: &networking.StringMatch_Prefix{
    								Prefix: "/",
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MavenResolver.java

    import org.gradle.internal.resource.local.LocallyAvailableResourceFinder;
    
    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    public class MavenResolver extends ExternalResourceResolver {
        private final URI root;
        private final MavenMetadataLoader mavenMetaDataLoader;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top