Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 922 for uris (0.05 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishBasicIntegTest.groovy

                group = 'org.gradle.test'
                version = '1.0'
    
                publishing {
                    repositories {
                        ivy { url "${ivyRepo.uri}" }
                        ivy { url "${ivyRepo2.uri}" }
                    }
                    publications {
                        ivy(IvyPublication)
                    }
                }
            """
            when:
            succeeds 'publish'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClientOwnedClassLoaderSpec.java

    import org.gradle.internal.classloader.ClassLoaderSpec;
    
    import java.net.URI;
    import java.util.List;
    
    public class ClientOwnedClassLoaderSpec extends ClassLoaderSpec {
        private final List<URI> classpath;
    
        public ClientOwnedClassLoaderSpec(List<URI> classpath) {
            this.classpath = classpath;
        }
    
        public List<URI> getClasspath() {
            return classpath;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. docs/de/docs/how-to/conditional-openapi.md

    <div class="termy">
    
    ```console
    $ OPENAPI_URL= uvicorn main:app
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Wenn Sie dann zu den URLs unter `/openapi.json`, `/docs` oder `/redoc` gehen, erhalten Sie lediglich einen `404 Not Found`-Fehler, wie:
    
    ```JSON
    {
        "detail": "Not Found"
    }
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:13 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

    }
    """
    
            when:
            redirectServer.authenticationScheme = HEADER
    
            and:
            redirectServer.expectGetRedirected(moduleA.pom.uri.path, moduleA.pom.uri.toString())
            redirectServer.expectGetRedirected(moduleA.artifact.uri.path, moduleA.artifact.uri.toString())
            moduleA.pom.expectGet()
            moduleA.artifact.expectGet()
    
            then:
            succeeds('listJars')
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/M2ResourcePatternTest.groovy

    class M2ResourcePatternTest extends Specification {
        def "can construct from URI and pattern"() {
            expect:
            new M2ResourcePattern(new URI(uri), pattern).pattern == expectedPattern
    
            where:
            uri            | pattern  | expectedPattern
            "http://host/" | "a/b/c"  | "http://host/a/b/c"
            "http://host"  | "a/b/c"  | "http://host/a/b/c"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    <small-icon>employee-service-icon16x16.jpg</small-icon> --> <!ELEMENT small-icon (#PCDATA)> <!-- The web element contains the web-uri and context-root of a web application module. Used in: module --> <!ELEMENT web (web-uri, context-root)> <!-- The web-uri element specifies the URI of a web application file, relative to the top level of the application package. Used in: web --> <!ELEMENT web-uri (#PCDATA)> <!-- The ID mechanism is to allow tools that produce additional deployment information (i.e., information...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/test/groovy/org/gradle/vcs/internal/DefaultSourceControlTest.groovy

            def repo = sourceControl.gitRepository(new URI("https://gradle.org/test1"))
            repo != null
            def repo2 = sourceControl.gitRepository(new URI("https://gradle.org/test2"))
            repo2 != repo
        }
    
        def "can register and configure a Git repository"() {
            def action = Mock(Action)
    
            when:
            def repo = sourceControl.gitRepository(new URI("https://gradle.org/test1"), action)
            repo != null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

            Set<String> packages = new LinkedHashSet<>();
    
            try {
                Enumeration<URL> urls = loader.getResources(BUILDER.getExtensionDescriptorLocation());
                while (urls.hasMoreElements()) {
    
                    try (InputStream is = urls.nextElement().openStream()) {
                        ExtensionDescriptor descriptor = BUILDER.build(is);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResponseResource.java

                    return disposition.substring(beginIndex + 9, endIndex);
                }
            } else {
                // extracts file name from URL
                URI uri = response.getEffectiveUri() == null ? source : response.getEffectiveUri();
                String sourceInStringForm = uri.toString();
                int fileNameIndex = sourceInStringForm.lastIndexOf("/");
                if (fileNameIndex >= 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. tests/testdata/config/rule-default-route.yaml

    spec:
      hosts:
        - c.foo
      gateways:
      #- mesh
      - my-gateway
      http:
        - match:
          - uri:
               exact: /foo
          rewrite:
            uri: /bar
          route:
          - destination:
              host: c.foo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 19 04:56:49 UTC 2019
    - 964 bytes
    - Viewed (0)
Back to top