Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 724 for uris (0.15 sec)

  1. platforms/documentation/docs/src/snippets/plugins/buildService/kotlin/buildSrc/src/main/java/WebServer.java

            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    
            System.out.println(String.format("Server is running at %s", uri));
        }
    
        // A public method for tasks to use
        public URI getUri() {
            return uri;
        }
    
        @Override
        public void close() {
            // Stop the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/buildServiceUsingServiceReference/kotlin/buildSrc/src/main/java/WebServer.java

            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    
            System.out.println(String.format("Server is running at %s", uri));
        }
    
        // A public method for tasks to use
        public URI getUri() {
            return uri;
        }
    
        @Override
        public void close() {
            // Stop the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpResourceAccessor.java

         */
        public HttpResponseResource getRawResource(final URI uri, boolean revalidate) {
            String location = uri.toString();
            LOGGER.debug("Constructing external resource: {}", location);
            HttpClientResponse response = http.performRawGet(location, revalidate);
            return wrapResponse(uri, response);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/virtualservice_test.go

    		},
    		{
    			name: "regex uri in root and delegate does not have uri",
    			root: &networking.HTTPMatchRequest{
    				Uri: &networking.StringMatch{
    					MatchType: &networking.StringMatch_Regex{Regex: "^/productpage"},
    				},
    			},
    			leaf:     &networking.HTTPMatchRequest{},
    			expected: false,
    		},
    		{
    			name: "regex uri in delegate and root does not have uri",
    			root: &networking.HTTPMatchRequest{},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/buildServiceFromWorkAction/groovy/buildSrc/src/main/java/WebServer.java

            // Use the parameters
            int port = getParameters().getPort().get();
            uri = new URI(String.format("https://localhost:%d/", port));
    
            // Start the server ...
    
            System.out.println(String.format("Server is running at %s", uri));
        }
    
        // A public method for tasks to use
        public URI getUri() {
            return uri;
        }
    
        @Override
        public void close() {
            // Stop the server ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/Download.java

            }
        }
    
        /**
         * Create a safe URI from the given one by stripping out user info.
         *
         * @param uri Original URI
         * @return a new URI with no user info
         */
        static URI safeUri(URI uri) {
            try {
                return new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), uri.getPath(), uri.getQuery(), uri.getFragment());
            } catch (URISyntaxException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            return getClass().getSimpleName() + "(" + name + ")";
        }
    
        @Override
        public void visit(ClassLoaderVisitor visitor) {
            URL[] urls = getURLs();
            visitor.visitSpec(new Spec(name, Arrays.asList(urls)));
            visitor.visitClassPath(urls);
            visitor.visitParent(getParent());
        }
    
        public static class Spec extends ClassLoaderSpec {
            final String name;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top