Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 148 for uris (0.07 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ScriptDependencyResolveIntegrationTest.groovy

                    repositories { maven { url "${mavenRepo().uri}" } }
                    dependencies {
                        classpath "org.apache.logging.log4j:log4j-core"
                    }
                }
    
                rootProject.name = 'testproject'
            """
    
            buildFile << """
                buildscript {
                    repositories { maven { url "${mavenRepo().uri}" } }
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/descriptor/UrlRepositoryDescriptor.java

            AUTHENTICATED,
            AUTHENTICATION_SCHEMES,
        }
    
        public final URI url;
        public final ImmutableList<String> metadataSources;
        public final boolean authenticated;
        public final ImmutableList<String> authenticationSchemes;
    
        protected UrlRepositoryDescriptor(
            String id,
            String name,
            URI url,
            ImmutableList<String> metadataSources,
            boolean authenticated,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperChecksumVerificationTest.groovy

            server.start()
        }
    
        def "wrapper execution fails when using bad checksum"() {
            given:
            configureServer(true)
            prepareWrapper(new URI(gradleBin))
    
            and:
            file(WRAPPER_PROPERTIES_PATH) << 'distributionSha256Sum=bad'
    
            when:
            def failure = wrapperExecuter.withStackTraceChecksDisabled().runWithFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

        private val cachedExternalResourceIndex: CachedExternalResourceIndex<String>
    ) {
    
        fun isUpToDate(uri: URI): Boolean =
            if (startParameter.isOffline) {
                true
            } else {
                val externalResourceName = ExternalResourceName(uri)
    
                val cached = cachedExternalResourceIndex.lookup(externalResourceName.toString())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-services/src/test/groovy/org/gradle/internal/daemon/serialization/DaemonSidePayloadClassLoaderFactoryTest.groovy

            when:
            def cl = registry.getClassLoaderFor(new VisitableURLClassLoader.Spec("test", [url1, url2]), [null])
    
            then:
            cl instanceof VisitableURLClassLoader
            cl.URLs == [url1, url2] as URL[]
        }
    
        def "creates ClassLoader for jar classpath"() {
            def jarFile = tmpDir.createFile("file1.jar")
            def cachedJar = tmpDir.createFile("cached/file1.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationScriptPlugin.java

            }
    
            @Nullable
            @Override
            public String getUri() {
                if (file == null) {
                    URI uri = resourceLocation.getURI();
                    return uri == null ? null : uri.toASCIIString();
                } else {
                    return null;
                }
            }
    
            @Override
            public String getTargetType() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/software/resources-sftp/src/main/java/org/gradle/internal/resource/transport/sftp/SftpClientFactory.java

        private final ListMultimap<SftpHost, LockableSftpClient> idleClients = ArrayListMultimap.create();
    
        public LockableSftpClient createSftpClient(URI uri, PasswordCredentials credentials) {
            synchronized (lock) {
                SftpHost sftpHost = new SftpHost(uri, credentials);
                return acquireClient(sftpHost);
            }
        }
    
        private LockableSftpClient acquireClient(SftpHost sftpHost) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/rbac/v1/generated.proto

      // +optional
      // +listType=atomic
      repeated string resourceNames = 4;
    
      // NonResourceURLs is a set of partial urls that a user should have access to.  *s are allowed, but only as the full, final step in the path
      // Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. container-tests/src/test/java/okhttp3/containers/BasicProxyTest.kt

     */
    package okhttp3.containers
    
    import assertk.assertThat
    import assertk.assertions.contains
    import assertk.assertions.isEqualTo
    import java.net.HttpURLConnection
    import java.net.Proxy
    import java.net.URI
    import javax.net.ssl.HttpsURLConnection
    import okhttp3.HttpUrl.Companion.toHttpUrl
    import okhttp3.OkHttpClient
    import okhttp3.Protocol
    import okhttp3.Request
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

         * crawler may only retrieve Sitemaps that were modified since a certain
         * date. This incremental Sitemap fetching mechanism allows for the rapid
         * discovery of new URLs on very large sites.
         */
        private String lastmod;
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc()
         */
        @Override
        public String getLoc() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top