Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for subcomponent (0.16 sec)

  1. tensorflow/compiler/mlir/lite/metrics/types_util.h

          const tflite::metrics::ConverterErrorData& v) const noexcept {
        std::size_t hash_result = std::hash<std::string>{}(v.error_message());
        if (v.has_subcomponent()) {
          hash_result ^= std::hash<std::string>{}(v.subcomponent()) << 1;
        }
        if (v.has_error_code()) {
          hash_result ^= std::hash<int>{}(v.error_code()) << 2;
        }
        if (v.has_operator_() && v.operator_().has_name()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 16:09:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. src/net/url/url_test.go

    			User:   UserPassword("?am", "pa?sword"),
    			Host:   "google.com",
    		},
    		"",
    	},
    	// host subcomponent; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1/",
    		&URL{
    			Scheme: "http",
    			Host:   "192.168.0.1",
    			Path:   "/",
    		},
    		"",
    	},
    	// host and port subcomponents; IPv4 address in RFC 3986
    	{
    		"http://192.168.0.1:8080/",
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. NOTICE

    MinIO Project, (C) 2015-2023 MinIO, Inc.
    
    This product includes software developed at MinIO, Inc.
    (https://min.io/).
    
    The MinIO project contains unmodified/modified subcomponents too with
    separate copyright notices and license terms. Your use of the source
    code for these subcomponents is subject to the terms and conditions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 18 18:33:50 UTC 2023
    - 367 bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpWebAndJavaProjectIntegrationTest.groovy

            def webComponent = wtpComponent('web')
            webComponent.deployName == 'web'
            webComponent.resources.size() == 2
            webComponent.sourceDirectory('src/main/java').assertDeployedAt('/WEB-INF/classes')
            webComponent.sourceDirectory('src/main/webapp').assertDeployedAt('/')
            webComponent.modules.size() == 1
            webComponent.project('java').assertDeployedAt('/WEB-INF/lib')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/gcemetadata/kube.go

    const (
    	ns = "gce-metadata"
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id        resource.ID
    	ns        namespace.Instance
    	cluster   cluster.Cluster
    	address   string
    	addressVM string
    }
    
    func newKube(ctx resource.Context, cfg Config) (Instance, error) {
    	c := &kubeComponent{
    		cluster: ctx.Clusters().GetOrDefault(cfg.Cluster),
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/ambient/waypoint.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ io.Closer = &kubeComponent{}
    
    type kubeComponent struct {
    	id resource.ID
    
    	ns       namespace.Instance
    	inbound  istioKube.PortForwarder
    	outbound istioKube.PortForwarder
    	pod      v1.Pod
    }
    
    func (k kubeComponent) Namespace() namespace.Instance {
    	return k.ns
    }
    
    func (k kubeComponent) PodIP() string {
    	return k.pod.Status.PodIP
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. pkg/test/framework/components/prometheus/kube.go

    	testKube "istio.io/istio/pkg/test/kube"
    	"istio.io/istio/pkg/test/scopes"
    )
    
    const (
    	serviceName = "prometheus"
    	appName     = "prometheus"
    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id resource.ID
    
    	api       map[string]prometheusApiV1.API
    	forwarder map[string]istioKube.PortForwarder
    	clusters  cluster.Clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEarAndWebAndEjbProjectIntegrationTest.groovy

            javaComponent.modules.isEmpty()
    
            def webComponent = wtpComponent('web')
            webComponent.deployName == 'web'
            webComponent.resources.size() == 2
            webComponent.sourceDirectory('src/main/webapp').assertDeployedAt('/')
            webComponent.sourceDirectory('src/main/java').assertDeployedAt('/WEB-INF/classes')
            webComponent.modules.isEmpty()
    
            def earComponent = wtpComponent('ear')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/net/http/transport.go

    	// "https", "socks5", and "socks5h" are supported. If the scheme is empty,
    	// "http" is assumed.
    	// "socks5" is treated the same as "socks5h".
    	//
    	// If the proxy URL contains a userinfo subcomponent,
    	// the proxy request will pass the username and password
    	// in a Proxy-Authorization header.
    	//
    	// If Proxy is nil or returns a nil *URL, no proxy is used.
    	Proxy func(*Request) (*url.URL, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  10. pkg/test/framework/components/registryredirector/kube.go

    )
    
    var (
    	_ Instance  = &kubeComponent{}
    	_ io.Closer = &kubeComponent{}
    )
    
    type kubeComponent struct {
    	id        resource.ID
    	ns        namespace.Instance
    	cluster   cluster.Cluster
    	address   string
    	forwarder kube.PortForwarder
    }
    
    func newKube(ctx resource.Context, cfg Config) (Instance, error) {
    	c := &kubeComponent{
    		cluster: ctx.Clusters().GetOrDefault(cfg.Cluster),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top