Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 389 for uris (0.04 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/DefaultClassLoaderFactoryTest.groovy

        def setup() {
            original = Thread.currentThread().contextClassLoader
        }
    
        def cleanup() {
            Thread.currentThread().contextClassLoader = original
        }
    
        def "classes from specified URLs are visible in isolated ClassLoader"() {
            when:
            def cl = factory.createIsolatedClassLoader("test", classpath)
            def c = cl.loadClass(DefaultClassLoaderFactoryTestHelper.name)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3RegionalResource.java

        private static final Pattern FALLBACK_ENDPOINT_PATTERN = Pattern.compile("^[a-z0-9]+:\\/\\/([^\\/]+)\\/(.+)");
    
        private final URI uri;
        private Optional<Region> region;
        private String bucketName;
        private String key;
    
        public S3RegionalResource(URI uri) {
            this.uri = uri;
            configure();
        }
    
        public Optional<Region> getRegion() {
            return region;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/route-precedence.yaml.golden

            my-header:
              exact: some-value
          queryParams:
            my-param:
              regex: some-value
          uri:
            exact: /baz
        name: allowed-2.http.1
        route:
        - destination:
            host: svc2.allowed-2.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /foo/bar
        name: allowed-2.http.0
        route:
        - destination:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. okhttp-testing-support/src/main/kotlin/okhttp3/FakeProxySelector.kt

    import java.net.SocketAddress
    import java.net.URI
    
    class FakeProxySelector : ProxySelector() {
      val proxies: MutableList<Proxy> = mutableListOf()
    
      fun addProxy(proxy: Proxy): FakeProxySelector {
        proxies.add(proxy)
        return this
      }
    
      override fun select(uri: URI): List<Proxy> {
        // Don't handle 'socket' schemes, which the RI's Socket class may request (for SOCKS).
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/http.yaml.golden

      hosts:
      - '*'
      http:
      - match:
        - uri:
            prefix: /prefix-to-be-removed
        name: default.rewrite.1
        rewrite:
          uri: /
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
      - match:
        - uri:
            prefix: /prefix-original
        name: default.rewrite.0
        rewrite:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/BadPomFileResolveIntegrationTest.groovy

                .assertHasCause("Could not parse POM ${parent.pom.uri}")
                .assertHasCause("Missing required attribute: groupId")
        }
    
        def "reports failure to parse POM due to missing dependency #attribute attribute"() {
            given:
            buildFile << """
    repositories {
        maven {
            url "${mavenRepo.uri}"
        }
    }
    configurations { compile }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:31:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. docs/en/docs/how-to/custom-docs-ui-assets.md

    This could be useful if for example you live in a country that restricts some URLs.
    
    ### Disable the automatic docs
    
    The first step is to disable the automatic docs, as by default, those use the default CDN.
    
    To disable them, set their URLs to `None` when creating your `FastAPI` app:
    
    ```Python hl_lines="8"
    {!../../../docs_src/custom_docs_ui/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/resolve/AbstractModuleDependencyResolveTest.groovy

                if (gradleMetadata) {
                    return ivyModule.moduleMetadata.uri
                }
                return ivyModule.ivy.uri
            } else {
                def mavenModule = mavenHttpRepo.module(group, module, version)
                if (gradleMetadata) {
                    return mavenModule.moduleMetadata.uri
                }
                return mavenModule.pom.uri
            }
        }
    
        private String getMavenRepository() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 16:23:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceLocation.java

        /**
         * Returns the URI for this resource. Not all resources have a URI.
         * Note that the URI returned by this method may not necessarily have the same contents as the resource. For example, the file may be compressed,
         * contain text encoded with a different encoding or represent a directory.
         *
         * @return The URI for this resource. Returns null if this resource does not have a URI.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/software/security/src/main/java/org/gradle/security/internal/PublicKeyDownloadService.java

        private final List<URI> keyServers;
        private final ExternalResourceRepository client;
    
        public PublicKeyDownloadService(List<URI> keyServers, ExternalResourceRepository client) {
            this.keyServers = keyServers;
            this.client = client;
        }
    
        @Override
        public void findByLongId(long keyId, PublicKeyResultBuilder builder) {
            List<URI> servers = new ArrayList<>(keyServers);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top