Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 129 for getURI (0.13 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/UriTextResource.java

            }
    
            @Nullable
            @Override
            public File getFile() {
                return sourceFile;
            }
    
            @Override
            public URI getURI() {
                return sourceUri;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. pkg/config/validation/virtualservice.go

    			// whereas scheme/method/authority does not:
    			// https://github.com/envoyproxy/envoy/blob/v1.29.2/api/envoy/type/matcher/string.proto#L38
    			errs = appendErrors(errs, validateStringMatchRegexp(match.GetUri(), "uri"))
    			errs = appendErrors(errs, validateStringMatch(match.GetScheme(), "scheme"))
    			errs = appendErrors(errs, validateStringMatch(match.GetMethod(), "method"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:27 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MavenConversionIntegrationTest.groovy

            withSharedResources()
            def repo = mavenHttpServer()
            //update pom with test repo url
            targetDir.file("pom.xml").text = targetDir.file("pom.xml").text.replaceAll('LOCAL_MAVEN_REPO_URL', repo.getUri().toString())
    
            expectParentPomRequest(repo)
    
            when:
            run 'init', '--dsl', scriptDsl.id as String, '--insecure-protocol', InsecureProtocolOption.ALLOW as String
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/ingress/conversion.go

    	}
    }
    
    // getMatchURILength returns the length of matching path, and whether the match type is EXACT
    func getMatchURILength(match *networking.HTTPMatchRequest) (length int, exact bool) {
    	uri := match.GetUri()
    	switch uri.GetMatchType().(type) {
    	case *networking.StringMatch_Exact:
    		return len(uri.GetExact()), true
    	case *networking.StringMatch_Prefix:
    		return len(uri.GetPrefix()), false
    	}
    	// should not happen
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 25 07:19:43 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/sftp/SFTPServer.groovy

            new File(baseDir, filePathToCheck).exists()
        }
    
        TestFile file(String expectedPath) {
            new TestFile(new File(baseDir, expectedPath))
        }
    
        URI getUri() {
            return new URI("sftp://${hostAddress}:${port}")
        }
    
        void allowAll() {
            expectations << new SftpAllowAll()
        }
    
        void allowInit() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/ApiGroovyCompiler.java

            private void inspectClassNode(SourceUnit sourceUnit, ClassNode classNode) {
                String classFqName = classNode.getName();
                String relativePath = compilationSourceDirs.relativize(new File(sourceUnit.getSource().getURI().getPath())).orElseThrow(IllegalStateException::new);
                result.getSourceClassesMapping().computeIfAbsent(relativePath, key -> new HashSet<>()).add(classFqName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  7. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataSpecBuilder.java

            }
            PublicationInternal.PublishedFile publishedFile = publication.getPublishedFile(artifact);
            return new ModuleMetadataSpec.Artifact(
                publishedFile.getName(),
                publishedFile.getUri(),
                artifact.getFile()
            );
        }
    
        private boolean shouldNotBePublished(PublishArtifact artifact) {
            return !PublishArtifactInternal.shouldBePublished(artifact);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:07:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publication/DefaultIvyPublication.java

            return new PublishedFile() {
                @Override
                public String getName() {
                    return publishedUrl;
                }
    
                @Override
                public String getUri() {
                    return publishedUrl;
                }
            };
        }
    
        @Override
        public void versionMapping(Action<? super VersionMappingStrategy> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTaskOperationsTest.groovy

            def adapter = createAdapter(listener)
    
            def taskOrigin = Stub(InternalScriptPluginIdentifier)
            _ * taskOrigin.getDisplayName() >> "build.gradle"
            _ * taskOrigin.getUri() >> URI.create("http://example.com/build.gradle")
    
            def taskDescriptor = Stub(InternalTaskWithExtraInfoDescriptor)
            _ * taskDescriptor.getParentId() >> null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublication.java

            return new PublishedFile() {
                @Override
                public String getName() {
                    return publishedName;
                }
    
                @Override
                public String getUri() {
                    return publishedUrl;
                }
            };
        }
    
        @Nullable
        @Override
        public ImmutableAttributes getAttributes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top