Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 963 for tcCopy (0.09 sec)

  1. src/cmd/compile/internal/typecheck/func.go

    	}
    	n.SetType(t)
    	return n
    }
    
    // tcCopy typechecks an OCOPY node.
    func tcCopy(n *ir.BinaryExpr) ir.Node {
    	n.SetType(types.Types[types.TINT])
    	n.X = Expr(n.X)
    	n.X = DefaultLit(n.X, nil)
    	n.Y = Expr(n.Y)
    	n.Y = DefaultLit(n.Y, nil)
    	if n.X.Type() == nil || n.Y.Type() == nil {
    		n.SetType(nil)
    		return n
    	}
    
    	// copy([]byte, string)
    	if n.X.Type().IsSlice() && n.Y.Type().IsString() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    		return tcClose(n)
    
    	case ir.ODELETE:
    		n := n.(*ir.CallExpr)
    		return tcDelete(n)
    
    	case ir.OAPPEND:
    		n := n.(*ir.CallExpr)
    		return tcAppend(n)
    
    	case ir.OCOPY:
    		n := n.(*ir.BinaryExpr)
    		return tcCopy(n)
    
    	case ir.OCONV:
    		n := n.(*ir.ConvExpr)
    		return tcConv(n)
    
    	case ir.OMAKE:
    		n := n.(*ir.CallExpr)
    		return tcMake(n)
    
    	case ir.ONEW:
    		n := n.(*ir.UnaryExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/podresources/server_v1_test.go

    func equalInt64s(a, b []int64) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	aCopy := append([]int64{}, a...)
    	sort.Slice(aCopy, func(i, j int) bool { return aCopy[i] < aCopy[j] })
    	bCopy := append([]int64{}, b...)
    	sort.Slice(bCopy, func(i, j int) bool { return bCopy[i] < bCopy[j] })
    	return reflect.DeepEqual(aCopy, bCopy)
    }
    
    func equalStrings(a, b []string) bool {
    	if len(a) != len(b) {
    		return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  4. src/runtime/arena_test.go

    		t.Errorf("Clone did not make a copy: %#v -> %#v", b, bCopy)
    	}
    	if len(b) != len(bCopy) {
    		t.Errorf("Clone made an incorrect copy (bad length): %d -> %d", len(b), len(bCopy))
    	} else {
    		for i := range b {
    			if b[i] != bCopy[i] {
    				t.Errorf("Clone made an incorrect copy (data at index %d): %d -> %d", i, b[i], bCopy[i])
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/controller/deployment/util/deployment_util.go

    func EqualIgnoreHash(template1, template2 *v1.PodTemplateSpec) bool {
    	t1Copy := template1.DeepCopy()
    	t2Copy := template2.DeepCopy()
    	// Remove hash labels from template.Labels before comparing
    	delete(t1Copy.Labels, apps.DefaultDeploymentUniqueLabelKey)
    	delete(t2Copy.Labels, apps.DefaultDeploymentUniqueLabelKey)
    	return apiequality.Semantic.DeepEqual(t1Copy, t2Copy)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  6. src/sort/sort_test.go

    	for i := 0; i < b.N; i++ {
    		copy(data, unsorted)
    		b.StartTimer()
    		Strings(data)
    		b.StopTimer()
    	}
    }
    
    func BenchmarkSortString1K_Slice(b *testing.B) {
    	b.StopTimer()
    	unsorted := make([]string, 1<<10)
    	for i := range unsorted {
    		unsorted[i] = strconv.Itoa(i ^ 0x2cc)
    	}
    	data := make([]string, len(unsorted))
    
    	for i := 0; i < b.N; i++ {
    		copy(data, unsorted)
    		b.StartTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/order.go

    		// order it, and then make a copy if we need one.
    		// We almost always do, to ensure that we don't
    		// see any value changes made during the loop.
    		// Usually the copy is cheap (e.g., array pointer,
    		// chan, slice, string are all tiny).
    		// The exception is ranging over an array value
    		// (not a slice, not a pointer to array),
    		// which must make a copy to avoid seeing updates made during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    	OCONTINUE:         "continue",
    	OCOPY:             "copy",
    	ODELETE:           "delete",
    	ODEFER:            "defer",
    	ODIV:              "/",
    	OEQ:               "==",
    	OFALL:             "fallthrough",
    	OFOR:              "for",
    	OGE:               ">=",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      }
    
     private:
      // Initializes this object; makes a copy of the input array if
      // 'relation' is kCopy.
      void Init(const Element* array, size_t a_size, RelationToSource relation) {
        if (relation == kReference) {
          array_ = array;
        } else {
          Element* const copy = new Element[a_size];
          CopyArray(array, a_size, copy);
          array_ = copy;
        }
        size_ = a_size;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/const.go

    func callOrChan(n ir.Node) bool {
    	switch n.Op() {
    	case ir.OAPPEND,
    		ir.OCALL,
    		ir.OCALLFUNC,
    		ir.OCALLINTER,
    		ir.OCALLMETH,
    		ir.OCAP,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOMPLEX,
    		ir.OCOPY,
    		ir.ODELETE,
    		ir.OIMAG,
    		ir.OLEN,
    		ir.OMAKE,
    		ir.OMAX,
    		ir.OMIN,
    		ir.ONEW,
    		ir.OPANIC,
    		ir.OPRINT,
    		ir.OPRINTLN,
    		ir.OREAL,
    		ir.ORECOVER,
    		ir.ORECOVERFP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top