Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for _Merge (0.18 sec)

  1. pkg/kube/inject/testdata/inputs/merge-probers.yaml.43.template.gen.yaml

    Nicole LiHui <******@****.***> 1717379705 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/deadness_analysis.cc

    }
    
    Status FindUniqueBackedge(Node* merge, const Edge** result) {
      *result = nullptr;
      CHECK(merge->IsMerge());
      for (const Edge* e : merge->in_edges()) {
        if (e->src()->IsNextIteration()) {
          if (*result != nullptr) {
            return CreateMultipleNextIterationInputsError(merge);
          }
          *result = e;
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

      ops::Switch sw_0 = CreateSwitch(root, "0");
      ops::Switch sw_1 = CreateSwitch(root, "1");
    
      ops::Merge m0(root.WithOpName("m0"), {sw_0.output_false, sw_1.output_false});
      ops::Merge m1(root.WithOpName("m1"), {sw_1.output_false, sw_0.output_false});
      ops::Merge m2(root.WithOpName("m2"), {sw_0.output_false, sw_1.output_true});
      ops::Merge m3(root.WithOpName("m3"), {sw_1.output_true, sw_0.output_false});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	return toSort, nil
    }
    
    // Returns a (recursive) strategic merge patch, a parallel deletion list if necessary and
    // another list to set the order of the list
    // Only list of primitives with merge strategy will generate a parallel deletion list.
    // These two lists should yield modified when applied to original, for lists with merge semantics.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context.go

    	ClusterUpdate TriggerReason = "cluster"
    )
    
    // Merge two update requests together
    // Merge behaves similarly to a list append; usage should in the form `a = a.merge(b)`.
    // Importantly, Merge may decide to allocate a new PushRequest object or reuse the existing one - both
    // inputs should not be used after completion.
    func (pr *PushRequest) Merge(other *PushRequest) *PushRequest {
    	if pr == nil {
    		return other
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  6. kotlin-js-store/yarn.lock

        rechoir "^0.8.0"
        webpack-merge "^5.7.3"
    
    webpack-merge@^4.1.5:
      version "4.2.2"
      resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d"
      integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g==
      dependencies:
        lodash "^4.17.15"
    
    webpack-merge@^5.7.3:
      version "5.8.0"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  7. pilot/pkg/model/sidecar_test.go

    				},
    			},
    		},
    		{
    			name:          "multi-port-merge: serviceentry not merge with another namespace",
    			sidecarConfig: configs22,
    			services: []*Service{
    				{
    					Hostname: "foobar.svc.cluster.local",
    					Ports:    port803x[:3],
    					Attributes: ServiceAttributes{
    						Name:      "foo",
    						Namespace: "ns1",
    					},
    				},
    				{
    					Hostname: "foobar.svc.cluster.local",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/virtualservice_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			got, _ := mergeVirtualServicesIfNeeded(tc.virtualServices, tc.defaultExportTo)
    			assert.Equal(t, got, tc.expectedVirtualServices)
    		})
    	}
    
    	t.Run("test merge order", func(t *testing.T) {
    		root := rootVs.DeepCopy()
    		delegate := delegateVs.DeepCopy()
    		normal := independentVs.DeepCopy()
    
    		// make sorting results predictable.
    		t0 := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

                  << DescribePotentialCycle(from, to) << ".";
          return false;
        }
    
        // Merge the clusters.
        cluster_from->Merge(cluster_to);
        // Update `cycle_graph_`'s ID.
        cluster_from->set_cycles_graph_node_id(optional_merged_node.value());
    
        // Merge the UnionFind<Cluster*>.
        cluster_for_node_[from].Merge(&cluster_for_node_[to]);
    
        return true;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	//      - If failurePolicy=Ignore, the policy is skipped
    	//
    	// +patchMergeKey=name
    	// +patchStrategy=merge
    	// +listType=map
    	// +listMapKey=name
    	// +optional
    	MatchConditions []MatchCondition `json:"matchConditions,omitempty" patchStrategy:"merge" patchMergeKey:"name" protobuf:"bytes,6,rep,name=matchConditions"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top