Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 922 for uris (0.05 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/Dependency.java

     * limitations under the License.
     */
    
    package org.gradle.swiftpm.internal;
    
    import java.io.Serializable;
    import java.net.URI;
    
    abstract public class Dependency implements Serializable {
        private final URI url;
    
        public Dependency(URI url) {
            this.url = url;
        }
    
        public URI getUrl() {
            return url;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 911 bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

         */
        Property<String> getPost();
    
        /**
         * The URL where you can browse the archive of this mailing list.
         */
        Property<String> getArchive();
    
        /**
         * The alternate URLs where you can browse the archive of this mailing list.
         */
        SetProperty<String> getOtherArchives();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/buildServiceFromWorkAction/groovy/buildSrc/src/main/java/Download.java

            public void execute() {
                // Use the server to download a file
                WebServer server = getParameters().getServer().get();
                URI uri = server.getUri().resolve("somefile.zip");
                System.out.println(String.format("Downloading %s", uri));
            }
        }
    
        @Inject
        abstract public WorkerExecutor getWorkerExecutor();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/http/extended-allow-path-out.yaml

                            regex: .+
                    - uriTemplate:
                        name: uri-template
                        typedConfig:
                          '@type': type.googleapis.com/envoy.extensions.path.match.uri_template.v3.UriTemplateMatchConfig
                          pathTemplate: /path/template/*
                    - uriTemplate:
                        name: uri-template
                        typedConfig:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthentication.java

            }
    
            try {
                final int pos = path.indexOf('/', 6);
                final URL uri = new URL(pos == -1 ? path : path.substring(0, pos));
                if (!"ftp".equals(uri.getProtocol()) || (StringUtil.isNotBlank(server) && !server.equals(uri.getHost()))) {
                    return false;
                }
                int p = uri.getPort();
                if (p == -1) {
                    p = 21;
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/resources/src/main/java/org/gradle/internal/resource/ResourceExceptions.java

        }
    
        public static MissingResourceException getMissing(URI location, Throwable failure) {
            return new MissingResourceException(location,
                    String.format("Could not read '%s' as it does not exist.", location),
                    failure instanceof FileNotFoundException ? null : failure);
        }
    
        public static MissingResourceException getMissing(URI location) {
            return new MissingResourceException(location,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/kotlin/settings.gradle.kts

    rootProject.name = "http-build-cache"
    // tag::http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isAllowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/VisitableURLClassLoaderSpecSerializerTest.groovy

        def encoder = new KryoBackedEncoder(outputStream)
    
        def "can serialize and deserialize a spec"() {
            def urls = [ new URL("file://some/path"), new URL("file://some/other/path") ]
            def spec = new VisitableURLClassLoader.Spec("test", urls)
    
            when:
            serializer.write(encoder, spec)
            encoder.flush()
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpRepository.groovy

            this.m2Compatible = m2Compatible
            this.metadataType = metadataType
        }
    
        URI getUri() {
            return new URI("${server.uri}${contextPath}")
        }
    
        String getIvyPattern() {
            return "$uri/${backingRepository.baseIvyPattern}"
        }
    
        String getArtifactPattern() {
            return "$uri/${backingRepository.baseArtifactPattern}"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

        // public ResponseData call() throws Exception {
        // String[] urls =
        // new String[] {
        // "http://.../",
        // "http://.../test.pdf",
        // "http://.../test.doc",
        // "http://.../test.xls",
        // "http://.../test.ppt",
        // "http://.../test.txt", };
        // for (String url : urls) {
        // ResponseData responseData = httpClient.doGet(url);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top