Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for legality (0.23 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            //  b. A and B cannot be placed in the same cluster.
            //  c. There is no path from B to A in the cycles graph (but there may
            //     be a path from A to B).
            //
            // So check the legality of the edge contraction by checking if any of
            // the n^2 pairs of resource variable operations are forbidden.
            if (unsafe_resource_deps_.contains(
                    {resource_var_from, resource_var_to})) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                            "cluster_name": "sds-grpc",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
                                        {
                                            "endpoint": {
                                                "address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    	Locality *Locality `protobuf:"bytes,24,opt,name=locality,proto3" json:"locality,omitempty"`
    }
    
    func (x *Workload) Reset() {
    	*x = Workload{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    		},
    	}
    	cases := []struct {
    		name     string
    		pod      *v1.Pod
    		node     *v1.Node
    		obj      config.Config
    		expected *core.Locality
    	}{
    		{
    			name:     "no locality",
    			pod:      basePod,
    			node:     baseNode,
    			expected: &core.Locality{},
    		},
    		{
    			name: "pod specific label",
    			pod: func() *v1.Pod {
    				p := basePod.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    
    	// Test that we can look up instances just by Proxy metadata
    	metaServices := controller.GetProxyServiceTargets(&model.Proxy{
    		Type:            "sidecar",
    		IPAddresses:     []string{"1.1.1.1"},
    		Locality:        &core.Locality{Region: "r", Zone: "z"},
    		ConfigNamespace: "nsa",
    		Labels: map[string]string{
    			"app":                      "prod-app",
    			label.SecurityTlsMode.Name: "mutual",
    		},
    		Metadata: &model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                "cluster_name": "prometheus_stats",
                "endpoints": [
                  {
                    "locality": {},
                    "lb_endpoints": [
                      {
                        "endpoint": {
                          "address": {
                            "socket_address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    		k = -k
    	}
    
    	// Cache recently used bucket index:
    	// we're processing suffixes in sorted order
    	// and accessing buckets indexed by the
    	// byte before the sorted order, which still
    	// has very good locality.
    	// Invariant: b is cached, possibly dirty copy of bucket[cB].
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

            /*padding=*/state->padding,
            /*stride_h=*/state->stride_height,
            /*stride_w=*/state->stride_width);
      }
    
     private:
      // Legalize the given filter by converting it from TensorFlow filter data
      // format HWIO to TFLite Conv2D op filter data format OHWI and return Value
      // for the converted filter.  Requires that filter is verified by the match
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// subtract everything from memoryLimit that both contributes to the memory limit (so,
    	// ignore scavenged memory) and doesn't contain heap objects. This isn't quite what
    	// lines up with reality, but it's a good starting point.
    	//
    	// In practice this computation looks like the following:
    	//
    	//    goal := memoryLimit - ((mappedReady - heapFree - heapAlloc) + max(mappedReady - memoryLimit, 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

       (HasOneUse $relu_out),
       (HasOneUse $mul_out),
       (HasOneUse $input_neg_out)]>;
    
    // The constant folding in this pass might produce constant in the tf dialect.
    // This rule is to legalize these constant to the tfl dialect.
    def LegalizeConstOp : Pat<
      (TF_ConstOp ElementsAttr:$value), (TFL_ConstOp $value)>;
    
    // Reorders adds to allow constant folding.
    // Add --> Add $input, $constantA
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top