Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 922 for uris (0.04 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/cel/library/urls.go

    //	url('https://example.com/path?').getQuery() // returns {}
    //	url('https://example.com/path').getQuery() // returns {}
    func URLs() cel.EnvOption {
    	return cel.Lib(urlsLib)
    }
    
    var urlsLib = &urls{}
    
    type urls struct{}
    
    func (*urls) LibraryName() string {
    	return "k8s.urls"
    }
    
    var urlLibraryDecls = map[string][]cel.FunctionOpt{
    	"url": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    	{"http://[fe80::%31%25en0]:8080/", false},
    
    	// These two cases are valid as textual representations as
    	// described in RFC 4007, but are not valid as address
    	// literals with IPv6 zone identifiers in URIs as described in
    	// RFC 6874.
    	{"http://[fe80::1%en0]/", false},
    	{"http://[fe80::1%en0]:8080/", false},
    }
    
    func TestParseRequestURI(t *testing.T) {
    	for _, test := range parseRequestURLTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/inheritance/urls-parent.xml

      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model urls inheritance test parent</name>
      <description>Most classical case: child in direct subdirectory with directory name == child artifactId</description>
    
      <modules>
        <module>child-artifact-id</module>
      </modules>
    
      <!-- 5 urls in the pom will be inherited with path added -->
      <url>http://www.apache.org/path/to/parent/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  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. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // can be configured for a single control plane.
      PilotConfigSource configSource = 31;
    
      // Specifies an extra root certificate in PEM format. This certificate will be trusted
      // by pilot when resolving JWKS URIs.
      string jwksResolverExtraRootCA = 32;
    
      // Hub to pull the container image from. Image will be `Hub/Image:Tag-Variant`.
      string hub = 34;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/urls-expected.xml

      <groupId>inheritance</groupId>
      <artifactId>child-artifact-id</artifactId>
      <version>11-SNAPSHOT</version>
      <name>Model urls inheritance test child</name>
      <description>Most classical case: child in direct subdirectory with directory name == child artifactId</description>
    
      <!-- 5 inherited urls with ${project.artifactId} added to parent -->
      <url>http://www.apache.org/path/to/parent/child-artifact-id/</url>
      <scm>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 2K bytes
    - Viewed (0)
  9. 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)
  10. maven-model-builder/src/test/resources/poms/inheritance/flat-urls-child.xml

      <parent>
        <groupId>inheritance</groupId>
        <artifactId>parent</artifactId>
        <version>11-SNAPSHOT</version>
      </parent>
    
      <artifactId>inheritance</artifactId><!-- same as directory name -->
      <name>Model urls inheritance test child</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.3K bytes
    - Viewed (0)
Back to top