Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 281 for uris (0.04 sec)

  1. android/guava/src/com/google/common/reflect/ClassPath.java

     *   <li>It looks only for files and JARs in URLs available from {@link URLClassLoader} instances or
     *       the {@linkplain ClassLoader#getSystemClassLoader() system class loader}. This means it does
     *       not look for classes in the <i>module path</i>.
     *   <li>It understands only {@code file:} URLs. This means that it does not understand <a
     *       href="https://openjdk.java.net/jeps/220">{@code jrt:/} URLs</a>, among <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/util/util.go

    		div *= unit
    		exp++
    	}
    	return fmt.Sprintf("%.1f%cB",
    		float64(b)/float64(div), "kMGTPE"[exp])
    }
    
    // IPv6Compliant encloses ipv6 addresses in square brackets followed by port number in Host header/URIs
    func IPv6Compliant(host string) string {
    	if strings.Contains(host, ":") {
    		return "[" + host + "]"
    	}
    	return host
    }
    
    // DomainName builds the domain name for a given host and port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    				}
    			}
    		}
    	}
    	return allErrs
    }
    
    // ValidateURLs validates the URLs given in the string slice, makes sure they are parsable. Optionally, it can enforces HTTPS usage.
    func ValidateURLs(urls []string, requireHTTPS bool, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	for _, urlstr := range urls {
    		u, err := url.Parse(urlstr)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. src/crypto/x509/verify.go

    	// certificate.”
    
    	host := uri.Host
    	if len(host) == 0 {
    		return false, fmt.Errorf("URI with empty host (%q) cannot be matched against constraints", uri.String())
    	}
    
    	if strings.Contains(host, ":") && !strings.HasSuffix(host, "]") {
    		var err error
    		host, _, err = net.SplitHostPort(uri.Host)
    		if err != nil {
    			return false, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. cmd/server-main.go

      filesystem separated by space. You may also use a '...' convention
      to abbreviate the directory arguments. Remote directories in a
      distributed setup are encoded as HTTP(s) URIs.
    {{if .VisibleFlags}}
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
      1. Start MinIO server on "/home/shared" directory.
         {{.Prompt}} {{.HelpName}} /home/shared
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/DefaultMavenArtifactRepositoryTest.groovy

            repo instanceof MavenResolver
            repo.root == uri
        }
    
        def "creates repository with additional artifact URLs"() {
            given:
            def uri = new URI("https://localhost:9090/repo")
            def uri1 = new URI("https://localhost:9090/repo1")
            def uri2 = new URI("https://localhost:9090/repo2")
            _ * resolver.resolveUri('repo-dir') >> uri
            _ * resolver.resolveUri('repo1') >> uri1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. platforms/software/resources-sftp/src/test/groovy/org/gradle/internal/resource/transport/sftp/SftpClientFactoryTest.groovy

            def mockSftpClient2 = Mock(LockableSftpClient)
    
            given:
            URI uri1 = new URI('http://localhost:22/repo1')
            URI uri2 = new URI('http://localhost:22/repo2')
            PasswordCredentials credentials1 = new DefaultPasswordCredentials('sftp1', 'sftp1')
            PasswordCredentials credentials2 = new DefaultPasswordCredentials('sftp2', 'sftp2')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/gen_test.go

    	return rule, matchingRDigests, matchingNDigests, skippingRDigests, skippingNDigests
    }
    
    func cross(uis []user.Info, ris []*request.RequestInfo) []RequestDigest {
    	ans := make([]RequestDigest, 0, len(uis)*len(ris))
    	for _, ui := range uis {
    		for _, ri := range ris {
    			ans = append(ans, RequestDigest{RequestInfo: ri, User: ui})
    		}
    	}
    	return ans
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlJvmTest.kt

      }
    
      @Test
      fun fromUri() {
        val uri = URI("http://username:password@host/path?query#fragment")
        val httpUrl = uri.toHttpUrlOrNull()
        assertThat(httpUrl.toString())
          .isEqualTo("http://username:password@host/path?query#fragment")
      }
    
      @Test
      fun fromUriUnsupportedScheme() {
        val uri = URI("mailto:******@****.***")
        assertThat(uri.toHttpUrlOrNull()).isNull()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

            this.updatedTime = value;
        }
    
        public String getUrls() {
            checkSpecifiedProperty("urls");
            return convertEmptyToNull(urls);
        }
    
        public void setUrls(String value) {
            registerModifiedProperty("urls");
            this.urls = value;
        }
    
        public String getUserAgent() {
            checkSpecifiedProperty("userAgent");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top