Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 69 of 69 for src2 (0.06 sec)

  1. src/cmd/compile/internal/ssa/_gen/generic.rules

    // see CL 145208 for discussion.
    (Move {t1} [s] dst tmp1 midmem:(Move {t2} [s] tmp2 src _))
    	&& t1.Compare(t2) == types.CMPeq
    	&& isSamePtr(tmp1, tmp2)
    	&& isStackPtr(src) && !isVolatile(src)
    	&& disjoint(src, s, tmp2, s)
    	&& (disjoint(src, s, dst, s) || isInlinableMemmove(dst, src, s, config))
    	=> (Move {t1} [s] dst src midmem)
    
    // Same, but for large types that require VarDefs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  2. pkg/kubelet/network/dns/dns_test.go

    	}
    	for i, tc := range testCases {
    		ns, srch, opts, err := parseResolvConf(strings.NewReader(tc.data))
    		if !tc.isErr {
    			require.NoError(t, err)
    			assert.EqualValues(t, tc.nameservers, ns, "test case [%d]: name servers", i)
    			assert.EqualValues(t, tc.searches, srch, "test case [%d] searches", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      const CallGraph call_graph(module);
    
      // Visit functions bottom up when doing the analysis. Note that SCC iterator
      // has the property that if there is an edge from SCC1->SCC2, SCC1 is visited
      // after SCC2, i.e., the graph is traversed bottom up just the way we want.
      auto scc_begin = llvm::scc_begin(&call_graph);
      auto scc_end = llvm::scc_end(&call_graph);
      for (auto& scc : make_range(scc_begin, scc_end)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/util/util.go

    // type of Any
    func MergeAnyWithAny(dst *anypb.Any, src *anypb.Any) (*anypb.Any, error) {
    	// Assuming that Pilot is compiled with this type [which should always be the case]
    	var err error
    
    	// get an object of type used by this message
    	dstX, err := dst.UnmarshalNew()
    	if err != nil {
    		return nil, err
    	}
    
    	// get an object of type used by this message
    	srcX, err := src.UnmarshalNew()
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion_test.go

    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-2",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewritegeneric.go

    		v.AddArg3(dst, src, midmem)
    		return true
    	}
    	// match: (Move {t1} [s] dst tmp1 midmem:(VarDef (Move {t2} [s] tmp2 src _)))
    	// cond: t1.Compare(t2) == types.CMPeq && isSamePtr(tmp1, tmp2) && isStackPtr(src) && !isVolatile(src) && disjoint(src, s, tmp2, s) && (disjoint(src, s, dst, s) || isInlinableMemmove(dst, src, s, config))
    	// result: (Move {t1} [s] dst src midmem)
    	for {
    		s := auxIntToInt64(v.AuxInt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 18:24:47 UTC 2024
    - 812.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-NEXT: %[[red1:.*]] = mhlo.reduce(%[[cmul]] init: %[[init]]) applies mhlo.add across dimensions = [0, 1, 2] : (tensor<8x8x8x8xf32>, tensor<f32>) -> tensor<8xf32>
      // CHECK-NEXT: %[[scr2:.*]] = mhlo.convert %[[red1]] : tensor<8xf32>
    
      // CHECK-NEXT: %[[mul2:.*]] = mhlo.multiply %arg2, %[[scr1]] : tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    			// Force the same IPs and ports
    			svc2 := tc.svc.DeepCopy()
    			svc2.Name += "2"
    			svc2.Spec.ClusterIP = createdSvc.Spec.ClusterIP
    			svc2.Spec.ClusterIPs = createdSvc.Spec.ClusterIPs
    			svc2.Spec.Ports = createdSvc.Spec.Ports
    
    			// Create again
    			_, err = storage.Create(ctx, svc2, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			sc: storage.StorageClass{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "sc2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Provisioner: "kubernetes.io/nfs",
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"sc2", "kubernetes.io/nfs", "Delete",
    				"Immediate", false, "5m"}}},
    		},
    		{
    			sc: storage.StorageClass{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top