Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for GetUrl (0.21 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                Optional<Repository> clashingPomRepository = pomRepositories.stream()
                        .filter(r -> Objects.equals(r.getId(), externalRepository.getId()))
                        .filter(r -> !Objects.equals(r.getUrl(), externalRepository.getUrl()))
                        .findFirst();
                if (clashingPomRepository.isPresent()) {
                    addViolation(
                            problems,
                            Severity.WARNING,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        Severity.ERROR,
                        Version.V20,
                        repository.getUrl(),
                        null,
                        repository)) {
                    // only allow ${basedir} and ${project.basedir}
                    Matcher m = EXPRESSION_NAME_PATTERN.matcher(repository.getUrl());
                    while (m.find()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                .getRepository();
                        if (r.getId() != null
                                && !r.getId().isEmpty()
                                && r.getUrl() != null
                                && !r.getUrl().isEmpty()) {
                            ArtifactRepository repo = MavenRepositorySystem.buildArtifactRepository(
                                    new org.apache.maven.model.DeploymentRepository(r));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  4. pkg/kubelet/server/server_test.go

    		Tty:         streamOpts.TTY,
    		Stdin:       streamOpts.Stdin,
    		Stdout:      streamOpts.Stdout,
    		Stderr:      streamOpts.Stderr,
    	})
    	if err != nil {
    		return nil, err
    	}
    	return url.Parse(resp.GetUrl())
    }
    
    func (fk *fakeKubelet) GetAttach(_ context.Context, podFullName string, podUID types.UID, containerName string, streamOpts remotecommandserver.Options) (*url.URL, error) {
    	if fk.getAttachCheck != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

         * is supported (i.e. no <tt>doOutput</tt>).
         *
         * @deprecated Use getURL() instead
         * @return A new <code>{@link java.net.URL}</code> for this <code>SmbFile</code>
         */
        @Deprecated
        public URL toURL () {
            return getURL();
        }
    
    
        /**
         * Computes a hashCode for this file based on the URL string and IP
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
            }
    
            private ModuleDescriptor parseOtherIvyFileOnFileSystem(String location)
                    throws ParseException, IOException {
                URL url = relativeUrlResolver.getURL(descriptorURL, location);
                LOGGER.debug("Trying to load included ivy file from {}", url);
                ExternalResource resource = UrlExternalResource.open(url);
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        }
    
        public String getInceptionYear() {
            return getModel().getInceptionYear();
        }
    
        public void setUrl(String url) {
            getModel().setUrl(url);
        }
    
        public String getUrl() {
            return getModel().getUrl();
        }
    
        public Prerequisites getPrerequisites() {
            return getModel().getPrerequisites();
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

        }
    
        private static DocumentationLink toDocumentationLink(@Nullable InternalDocumentationLink link) {
            return link == null ? new DefaultDocumentationLink(null) : new DefaultDocumentationLink(link.getUrl());
        }
    
        private static List<Solution> toSolutions(List<InternalSolution> solutions) {
            List<Solution> result = new ArrayList<>(solutions.size());
            for (InternalSolution solution : solutions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  9. src/net/http/httputil/reverseproxy_test.go

    		return &ReverseProxy{
    			Rewrite: func(r *ProxyRequest) {
    				r.SetURL(u)
    			},
    		}
    	})
    }
    
    func TestReverseProxyQueryParameterSmugglingRewritePreservesRawQuery(t *testing.T) {
    	testReverseProxyQueryParameterSmuggling(t, testWantsRawQuery, func(u *url.URL) *ReverseProxy {
    		return &ReverseProxy{
    			Rewrite: func(r *ProxyRequest) {
    				r.SetURL(u)
    				r.Out.URL.RawQuery = r.In.URL.RawQuery
    			},
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                            if (!favoriteLogService.addUrl(userCode, (userInfo, favoriteLog) -> {
                                favoriteLog.setUserInfoId(userInfo.getId());
                                favoriteLog.setUrl(favoriteUrl);
                                favoriteLog.setDocId(docId);
                                favoriteLog.setQueryId(queryId);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
Back to top