Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 922 for uris (0.08 sec)

  1. src/main/java/org/codelibs/fess/es/config/exentity/WebConfig.java

                if (StringUtil.isNotBlank(getIncludedDocUrls())) {
                    final List<Pattern> urlPatterList = new ArrayList<>();
                    final String[] urls = getIncludedDocUrls().split("[\r\n]");
                    for (final String u : urls) {
                        final String v = systemHelper.normalizeConfigPath(u);
                        if (StringUtil.isNotBlank(v)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 09:48:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. 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)
  3. samples/bookinfo/networking/bookinfo-gateway.yaml

    metadata:
      name: bookinfo
    spec:
      hosts:
      - "*"
      gateways:
      - bookinfo-gateway
      http:
      - match:
        - uri:
            exact: /productpage
        - uri:
            prefix: /static
        - uri:
            exact: /login
        - uri:
            exact: /logout
        - uri:
            prefix: /api/v1/products
        route:
        - destination:
            host: productpage
            port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 11 14:13:54 UTC 2023
    - 873 bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport_test.go

    		server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    			// Check request headers.
    			if got, want := r.Header.Get("X-Forwarded-Uri"), item.forwardedURI; got != want {
    				t.Errorf("%v: X-Forwarded-Uri = %q, want %q", name, got, want)
    			}
    			if len(item.transport.Host) == 0 {
    				_, present := r.Header["X-Forwarded-Host"]
    				if present {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 13.8K 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. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-expected.xml

        but expect path on SCM and site == "child"
        feature: support "project.directory" property, ressembling future model addition of "directory" element along "artifactId"
      </description>
    
      <!-- 5 inherited urls with ${project.directory} added to parent instead of artifactId -->
      <url>http://www.apache.org/child/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base/child</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/compression/AbstractArchiver.java

    import java.io.File;
    import java.io.InputStream;
    import java.net.URI;
    
    abstract class AbstractArchiver implements CompressedReadableResource {
        protected final ReadableResourceInternal resource;
        protected final URI uri;
    
        public AbstractArchiver(ReadableResourceInternal resource) {
            assert resource != null;
            this.uri = new URIBuilder(resource.getURI()).schemePrefix(getSchemePrefix()).build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.6K bytes
    - Viewed (0)
Back to top