Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for newPara (0.19 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		return err
    	}
    	span.AddEvent("Encode succeeded", attribute.Int("len", len(data)))
    
    	opts, err := s.ttlOpts(ctx, int64(ttl))
    	if err != nil {
    		return err
    	}
    
    	newData, err := s.transformer.TransformToStorage(ctx, data, authenticatedDataString(preparedKey))
    	if err != nil {
    		span.AddEvent("TransformToStorage failed", attribute.String("err", err.Error()))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/parser.go

    		isVariadic = true
    	}
    	typ := p.parseType(pkg)
    	if isVariadic {
    		typ = types.NewSlice(typ)
    	}
    	param = types.NewParam(token.NoPos, pkg, name, typ)
    	return
    }
    
    // Var = Name Type .
    func (p *parser) parseVar(pkg *types.Package) *types.Var {
    	name := p.parseName()
    	v := types.NewVar(token.NoPos, pkg, name, p.parseType(pkg))
    	if name[0] == '.' || name[0] == '<' {
    		// This is an unexported variable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  3. src/encoding/gob/encoder_test.go

    	b := new(bytes.Buffer)
    	err := NewEncoder(b).Encode(data)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	var newData map[string]any
    	err = NewDecoder(b).Decode(&newData)
    	if err != nil {
    		t.Fatal("decode:", err)
    	}
    	if !reflect.DeepEqual(data, newData) {
    		t.Fatalf("expected %v got %v", data, newData)
    	}
    }
    
    // Test that untyped nils generate an error, not a panic.
    // See Issue 16204.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    					vars = append(vars, NewParam(last.pos, last.pkg, last.name, typ))
    				}
    				sigParams = NewTuple(vars...) // possibly nil!
    				adjusted = true
    				npars = nargs
    			} else {
    				// nargs < npars-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/go/types/call.go

    				copy(vars, sig.params.vars)
    				last := sig.params.vars[npars-1]
    				typ := last.typ.(*Slice).elem
    				for len(vars) < nargs {
    					vars = append(vars, NewParam(last.pos, last.pkg, last.name, typ))
    				}
    				sigParams = NewTuple(vars...) // possibly nil!
    				adjusted = true
    				npars = nargs
    			} else {
    				// nargs < npars-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/apiclient/idempotency.go

    		}
    
    		// Execute the mutating function
    		patchFn(n)
    
    		newData, err := json.Marshal(n)
    		if err != nil {
    			*lastError = errors.Wrapf(err, "failed to marshal modified node %q into JSON", n.Name)
    			return false, *lastError
    		}
    
    		patchBytes, err := strategicpatch.CreateTwoWayMergePatch(oldData, newData, v1.Node{})
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. test/escape2.go

    	*xxx = &y
    }
    
    func foo19(y int) {
    	**xxx = y
    }
    
    type Bar struct {
    	i  int
    	ii *int
    }
    
    func NewBar() *Bar {
    	return &Bar{42, nil} // ERROR "&Bar{...} escapes to heap$"
    }
    
    func NewBarp(x *int) *Bar { // ERROR "leaking param: x$"
    	return &Bar{42, x} // ERROR "&Bar{...} escapes to heap$"
    }
    
    func NewBarp2(x *int) *Bar { // ERROR "x does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  8. tools/bug-report/pkg/bugreport/bugreport.go

    	newParam := params.SetNamespace(common.NamespaceAll)
    
    	defer logRuntime(time.Now(), "Done running Istio analyze on all namespaces and report")
    
    	common.LogAndPrintf("Running Istio analyze on all namespaces and report as below:")
    	out, err := content.GetAnalyze(newParam.SetIstioNamespace(config.IstioNamespace), analyzeTimeout)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. pkg/controller/controller_utils.go

    	newNodeClone := oldNode.DeepCopy()
    	newNodeClone.Spec.Taints = newTaints
    	newData, err := json.Marshal(newNodeClone)
    	if err != nil {
    		return fmt.Errorf("failed to marshal new node %#v for node %q: %v", newNodeClone, nodeName, err)
    	}
    
    	patchBytes, err := strategicpatch.CreateTwoWayMergePatch(oldDataNoRV, newData, v1.Node{})
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 12 15:34:44 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  10. test/escape2n.go

    	*xxx = &y
    }
    
    func foo19(y int) {
    	**xxx = y
    }
    
    type Bar struct {
    	i  int
    	ii *int
    }
    
    func NewBar() *Bar {
    	return &Bar{42, nil} // ERROR "&Bar{...} escapes to heap$"
    }
    
    func NewBarp(x *int) *Bar { // ERROR "leaking param: x$"
    	return &Bar{42, x} // ERROR "&Bar{...} escapes to heap$"
    }
    
    func NewBarp2(x *int) *Bar { // ERROR "x does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
Back to top