Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for dsts (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/image/draw/draw.go

    	i0 := dst.PixOffset(r.Min.X, r.Min.Y)
    	i1 := i0 + r.Dx()*4
    	for i := i0; i < i1; i += 4 {
    		dst.Pix[i+0] = sr8
    		dst.Pix[i+1] = sg8
    		dst.Pix[i+2] = sb8
    		dst.Pix[i+3] = sa8
    	}
    	firstRow := dst.Pix[i0:i1]
    	for y := r.Min.Y + 1; y < r.Max.Y; y++ {
    		i0 += dst.Stride
    		i1 += dst.Stride
    		copy(dst.Pix[i0:i1], firstRow)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            projectLayoutRegistry.getGeneratorsFor(_) >> [defaultGenerator]
            defaultGenerator.modularizationOptions >> [ModularizationOption.SINGLE_PROJECT]
            defaultGenerator.dsls >> [KOTLIN]
            defaultGenerator.defaultDsl >> KOTLIN
            defaultGenerator.getTestFrameworks(_) >> [NONE]
            defaultGenerator.getDefaultTestFramework(_) >> NONE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. pkg/spiffe/spiffe_test.go

    				TrustDomain:    "td",
    				Namespace:      "ns",
    				ServiceAccount: "sa",
    			},
    		},
    		{
    			"spiffe://td.with.dots/ns/ns.with.dots/sa/sa.with.dots",
    			&Identity{
    				TrustDomain:    "td.with.dots",
    				Namespace:      "ns.with.dots",
    				ServiceAccount: "sa.with.dots",
    			},
    		},
    		{
    			// Empty ns and sa
    			"spiffe://td/ns//sa/",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/link.go

    	if start < v.cut {
    		return 0, false
    	}
    	i := start
    	dots := 0
    	for ; i < len(v.s); i++ {
    		c := v.s[i]
    		if c == '_' {
    			dots = -2
    			continue
    		}
    		if c == '.' {
    			dots++
    			continue
    		}
    		if !isLDH(c) {
    			break
    		}
    	}
    	if dots >= 0 && i > start {
    		return i - start, true
    	}
    	v.cut = i
    	return 0, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    │   └── modules-2 // <3>
    ├── daemon // <4>
    │   ├── ⋮
    │   ├── 4.8
    │   └── 4.9
    ├── init.d // <5>
    │   └── my-setup.gradle
    ├── jdks // <6>
    │   ├── ⋮
    │   └── jdk-14.0.2+12
    ├── wrapper
    │   └── dists // <7>
    │       ├── ⋮
    │       ├── gradle-4.8-bin
    │       ├── gradle-4.9-all
    │       └── gradle-4.9-bin
    └── gradle.properties // <8>
    ----
    <1> Global cache directory (for everything that is not project-specific).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    	}
    	if !dns1123LabelRegexp.MatchString(value) {
    		if dns1123SubdomainRegexp.MatchString(value) {
    			// It was a valid subdomain and not a valid label.  Since we
    			// already checked length, it must be dots.
    			errs = append(errs, "must not contain dots")
    		} else {
    			errs = append(errs, RegexError(dns1123LabelErrMsg, dns1123LabelFmt, "my-name", "123-abc"))
    		}
    	}
    	return errs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
Back to top