Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 47 of 47 for getURI (0.8 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

            buildFile << '''
                def res = new ReadableResource() {
                    InputStream read() { new FileInputStream(file('test.tar')) }
                    String getBaseName() { "foo" }
                    URI getURI() { new java.net.URI("foo") }
                    String getDisplayName() { "The foo" }
                }
    
                task copy(type: Copy) {
                    from tarTree(res)
                    into 'dest'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            executer.requireOwnGradleUserHomeDir()
        }
    
        @Canonical
        class RepoFixture {
            MavenHttpRepository repository
            Closure<Void> cleanup
    
            URI getUri() {
                repository.uri
            }
        }
    
        def "does not invalidate configuration cache entry when dynamic version information has not expired"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

                }
            }
        }
    
        @Override
        String toString() {
            if (server.started) {
                return "HttpServer " + String.valueOf(getUri())
            } else {
                return "HttpServer (unstarted)"
            }
        }
    
        protected Logger getLogger() {
            logger
        }
    
        void expectUserAgent(UserAgentMatcher userAgent) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_waypoint.go

    	// nolint: staticcheck
    	action.MaxGrpcTimeout = action.Timeout
    
    	out.Action = &route.Route_Route{Route: action}
    
    	if in.Rewrite != nil {
    		action.PrefixRewrite = in.Rewrite.GetUri()
    		if in.Rewrite.GetAuthority() != "" {
    			authority = in.Rewrite.GetAuthority()
    		}
    	}
    	if authority != "" {
    		action.HostRewriteSpecifier = &route.RouteAction_HostRewriteLiteral{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                InternalScriptPluginIdentifier scriptPlugin = (InternalScriptPluginIdentifier) pluginIdentifier;
                return new DefaultScriptPluginIdentifier(scriptPlugin.getDisplayName(), scriptPlugin.getUri());
            } else {
                return null;
            }
        }
    
        private static @Nullable TransformOperationResult toTransformResult(InternalOperationResult result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    			action.RegexRewrite = &matcher.RegexMatchAndSubstitute{
    				Pattern: &matcher.RegexMatcher{
    					Regex: regexRewrite.Match,
    				},
    				Substitution: regexRewrite.Rewrite,
    			}
    		} else if uri := in.Rewrite.GetUri(); uri != "" {
    			if model.UseGatewaySemantics(vs) && uri == "/" {
    				// remove the prefix
    				action.RegexRewrite = &matcher.RegexMatchAndSubstitute{
    					Pattern: &matcher.RegexMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_test.go

    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetDns(), "dns")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetUri(), "uri")
    								assert.Equal(t, true, hcm.GetNormalizePath().GetValue(), "normalize path")
    								assert.Equal(t, enableHTTP10(tt.p.Metadata.HTTP10), hcm.GetHttpProtocolOptions().GetAcceptHttp_10(), "http/1.0")
    							},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top