Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for makeEp (0.12 sec)

  1. pkg/controller/garbagecollector/garbagecollector_test.go

    func TestConflictingData(t *testing.T) {
    	pod1ns1 := makeID("v1", "Pod", "ns1", "podname1", "poduid1")
    	pod2ns1 := makeID("v1", "Pod", "ns1", "podname2", "poduid2")
    	pod2ns2 := makeID("v1", "Pod", "ns2", "podname2", "poduid2")
    	node1 := makeID("v1", "Node", "", "nodename", "nodeuid1")
    
    	role1v1beta1 := makeID("rbac.authorization.k8s.io/v1beta1", "Role", "ns1", "role1", "roleuid1")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // Must be called with a P.
    //
    // wakep should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - gvisor.dev/gvisor
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname wakep
    func wakep() {
    	// Be conservative about spinning threads, only start one if none exist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	orig, extra []int
    }{
    	{nil, nil},
    	{[]int{}, nil},
    	{nil, []int{}},
    	{[]int{}, []int{}},
    	{nil, []int{22}},
    	{[]int{}, []int{22}},
    	{make([]int, 2, 4), nil},
    	{make([]int, 2, 4), []int{}},
    	{make([]int, 2, 4), []int{22}},
    	{make([]int, 2, 4), []int{22, 33, 44}},
    }
    
    func TestAppend(t *testing.T) {
    	for i, test := range appendTests {
    		origLen, extraLen := len(test.orig), len(test.extra)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/reflect/value.go

    	// and each iteration makes its own copy of the value c.
    	var runcases []runtimeSelect
    	if len(cases) > 4 {
    		// Slice is heap allocated due to runtime dependent capacity.
    		runcases = make([]runtimeSelect, len(cases))
    	} else {
    		// Slice can be stack allocated due to constant capacity.
    		runcases = make([]runtimeSelect, len(cases), 4)
    	}
    
    	haveDefault := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. tests/integration/pilot/common/routing.go

    			})
    		}
    	}
    }
    
    type vmCase struct {
    	name string
    	from echo.Instance
    	to   echo.Instances
    	host string
    }
    
    func DNSTestCases(t TrafficContext) {
    	makeSE := func(ips ...string) string {
    		return tmpl.MustEvaluate(`
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: dns
    spec:
      hosts:
      - "fake.service.local"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top