Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 114 for dsts (0.05 sec)

  1. tests/integration/pilot/common/traffic.go

    			SetupForServicePair(func(t framework.TestContext, src echo.Callers, dsts echo.Services) error {
    				tmplData := map[string]any{
    					// tests that use simple Run only need the first
    					"dst":    dsts[0],
    					"dstSvc": dsts[0][0].Config().Service,
    					// tests that use RunForN need all destination deployments
    					"dsts":    dsts,
    					"dstSvcs": dsts.NamespacedNames().Names(),
    				}
    				if len(src) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/writebarrier.go

    		// srcs contains the value IDs of pointer values we've put in the write barrier buffer.
    		srcs := sset
    		srcs.clear()
    		// dsts contains the value IDs of locations which we've read a pointer out of
    		// and put the result in the write barrier buffer.
    		dsts := sset2
    		dsts.clear()
    
    		for _, w := range stores {
    			if w.Op != OpStoreWB {
    				continue
    			}
    			pos := w.Pos
    			ptr := w.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  3. pkg/test/framework/components/echo/echotest/filters_test.go

    						RunToN(3, func(ctx framework.TestContext, from echo.Instance, dsts echo.Services) {
    							srcKey := from.Config().ClusterLocalFQDN()
    							if testTopology[srcKey] == nil {
    								testTopology[srcKey] = map[string]int{}
    							}
    							var dstnames []string
    							for _, dst := range dsts {
    								dstnames = append(dstnames, dst.Config().ClusterLocalFQDN())
    							}
    							dstKey := strings.Join(dstnames, "_")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    	if len(n.Results) == 0 {
    		return n
    	}
    
    	results := fn.Type().Results()
    	dsts := make([]ir.Node, len(results))
    	for i, v := range results {
    		// TODO(mdempsky): typecheck should have already checked the result variables.
    		dsts[i] = typecheck.AssignExpr(v.Nname.(*ir.Name))
    	}
    
    	n.Results = ascompatee(n.Op(), dsts, n.Results)
    	return n
    }
    
    // check assign type list to
    // an expression list. called in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/run.go

    		t.setupPair(ctx, callers, echo.Services{dstInstances})
    		doTest := func(ctx framework.TestContext, fromCluster cluster.Cluster, dst echo.Instances) {
    			if gwIngress == nil {
    				ctx.Skipf("no gateway for %s", fromCluster.StableName())
    			}
    			testFn(ctx, gwIngress, dst)
    		}
    		if len(ctx.Clusters()) == 1 {
    			doTest(ctx, ctx.Clusters()[0], dstInstances)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/text/transform/transform.go

    // n <= len(src), If err == nil, n will be len(src). It calls Reset on t.
    func Append(t Transformer, dst, src []byte) (result []byte, n int, err error) {
    	if len(dst) == cap(dst) {
    		n := len(src) + len(dst) // It is okay for this to be 0.
    		b := make([]byte, n)
    		dst = b[:copy(b, dst)]
    	}
    	return doAppend(t, len(dst), dst[:cap(dst)], src)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  7. src/image/draw/draw_test.go

    	loop:
    		for sName, src := range sources {
    			dst0 := image.NewPaletted(b, cgaPalette)
    			dst1 := image.NewPaletted(b, cgaPalette)
    			d.Draw(dst0, b, src, image.Point{})
    			d.Draw(embeddedPaletted{dst1}, b, src, image.Point{})
    			for y := b.Min.Y; y < b.Max.Y; y++ {
    				for x := b.Min.X; x < b.Max.X; x++ {
    					if !eq(dst0.At(x, y), dst1.At(x, y)) {
    						t.Errorf("%s / %s: at (%d, %d), %v versus %v",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/transform/transform.go

    // n <= len(src), If err == nil, n will be len(src). It calls Reset on t.
    func Append(t Transformer, dst, src []byte) (result []byte, n int, err error) {
    	if len(dst) == cap(dst) {
    		n := len(src) + len(dst) // It is okay for this to be 0.
    		b := make([]byte, n)
    		dst = b[:copy(b, dst)]
    	}
    	return doAppend(t, len(dst), dst[:cap(dst)], src)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. cmd/sts-datatypes.go

    	"encoding/xml"
    
    	"github.com/minio/minio/internal/auth"
    )
    
    // AssumedRoleUser - The identifiers for the temporary security credentials that
    // the operation returns. Please also see https://docs.aws.amazon.com/goto/WebAPI/sts-2011-06-15/AssumedRoleUser
    type AssumedRoleUser struct {
    	// The ARN of the temporary security credentials that are returned from the
    	// AssumeRole action. For more information about ARNs and how to use them in
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  10. cmd/sts-handlers.go

    	return nil
    }
    
    // stsAPIHandlers implements and provides http handlers for AWS STS API.
    type stsAPIHandlers struct{}
    
    // registerSTSRouter - registers AWS STS compatible APIs.
    func registerSTSRouter(router *mux.Router) {
    	// Initialize STS.
    	sts := &stsAPIHandlers{}
    
    	// STS Router
    	stsRouter := router.NewRoute().PathPrefix(SlashSeparator).Subrouter()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top