Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 275 for uris (0.06 sec)

  1. 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)
  2. 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)
  3. 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 (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/phases/etcd/local_test.go

        - --experimental-watch-progress-notify-interval=5s
        - --initial-advertise-peer-urls=https://:2380
        - --initial-cluster==https://:2380
        - --key-file=etcd/server.key
        - --listen-client-urls=https://127.0.0.1:2379,https://:2379
        - --listen-metrics-urls=http://127.0.0.1:2381
        - --listen-peer-urls=https://:2380
        - --name=
        - --peer-cert-file=etcd/peer.crt
        - --peer-client-cert-auth=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. cmd/admin-handlers_test.go

    			Name:   resource,
    			UID:    mustGetUUID(),
    			Owner:  owners[i%len(owners)],
    			Quorum: 2,
    		}
    		lris = append(lris, lri)
    		locksHeld[resource] = append(locksHeld[resource], lri)
    		// concurrent read lock, same resource different uid
    		lri.UID = mustGetUUID()
    		lris = append(lris, lri)
    		locksHeld[resource] = append(locksHeld[resource], lri)
    	}
    
    	var peerLocks []*PeerLocks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top