Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 437 for uris (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. samples/external/README.md

    # External Services
    
    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/migrate_server.go

    		"--initial-cluster", r.cfg.initialCluster,
    		"--debug",
    		"--data-dir", r.cfg.dataDirectory,
    		"--listen-client-urls", r.cfg.clientListenUrls,
    		"--advertise-client-urls", fmt.Sprintf("http://127.0.0.1:%d", r.cfg.port),
    		"--listen-peer-urls", r.cfg.peerListenUrls,
    		"--initial-advertise-peer-urls", r.cfg.peerAdvertiseUrls,
    	)
    	if r.cfg.etcdServerArgs != "" {
    		extraArgs := strings.Fields(r.cfg.etcdServerArgs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 30 16:29:59 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenDescriptorIntegrationTest.groovy

                .assertHasCause("Could not parse Ivy file ${module.ivy.uri}")
                .assertHasCause("invalid version null")
        }
    
        def "reports local Ivy descriptor that cannot be parsed"() {
            given:
            buildFile << """
    repositories.clear()
    repositories {
        ivy {
            url "${ivyRepo.uri}"
        }
    }
    dependencies {
        compile 'group:projectA:1.2'
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/plugins/readOnlyManagedProperty/groovy/buildSrc/src/main/java/Download.java

    import org.gradle.api.tasks.Internal;
    import org.gradle.api.tasks.TaskAction;
    
    import java.net.URI;
    
    // tag::download[]
    public abstract class Download extends DefaultTask {
        @Input
        public abstract Property<String> getLocation();
    
        @Internal
        public Provider<URI> getUri() {
            return getLocation().map(l -> URI.create("https://" + l));
        }
    
        @TaskAction
        void run() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 682 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/buildService/groovy/buildSrc/src/main/java/Download.java

        @TaskAction
        public void download() {
            // Use the server to download a file
            WebServer server = getServer().get();
            URI uri = server.getUri().resolve("somefile.zip");
            System.out.println(String.format("Downloading %s", uri));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 776 bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

        val uri = httpUrl.toUri()
        val toAndFromUri = uri.toHttpUrlOrNull()
        val uriStripped = uriStrippedCodePoints.indexOf(codePointString) != -1
        if (uriStripped) {
          if (uri.toString() != component.urlString("")) {
            fail("Encoding $component $codePoint using $encoding")
          }
          return
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top