Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for unnamed1 (0.11 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    	pods := []api.Pod{
    		makePod("unnamed", "1.2.3.4", "1.2.3.5"),
    		makePod("named", "1.2.3.6", "1.2.3.7"),
    		makePod("no-endpoints", "9.9.9.9"), // to prove this does not get chosen
    	}
    
    	endpoints := []*api.Endpoints{
    		epstest.MakeEndpoints("unnamed",
    			[]api.EndpointAddress{
    				epstest.MakeEndpointAddress("1.2.3.4", "unnamed"),
    			},
    			[]api.EndpointPort{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	fn.DebugInfo = &debugInfo
    
    	// Generate addresses of local declarations
    	s.decladdrs = map[*ir.Name]*ssa.Value{}
    	for _, n := range fn.Dcl {
    		switch n.Class {
    		case ir.PPARAM:
    			// Be aware that blank and unnamed input parameters will not appear here, but do appear in the type
    			s.decladdrs[n] = s.entryNewValue2A(ssa.OpLocalAddr, types.NewPtr(n.Type()), n, s.sp, s.startmem)
    		case ir.PPARAMOUT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    		},
    		expectedLocalEndpoints: map[types.NamespacedName]int{
    			makeNSN("ns4", "ep4"): 1,
    		},
    	}, {
    		// Case[14]: change from 0 endpoint address to 1 unnamed port
    		name:              "change from 0 endpoint address to 1 unnamed port",
    		previousEndpoints: emptyEndpointSlices,
    		currentEndpoints:  namedPort,
    		oldEndpoints:      map[proxy.ServicePortName][]endpointExpectation{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.10.md

    * Fixes a bug in Heapster deployment for google sink. ([#57902](https://github.com/kubernetes/kubernetes/pull/57902), [@kawych](https://github.com/kawych))
    * Forbid unnamed contexts in kubeconfigs. ([#56769](https://github.com/kubernetes/kubernetes/pull/56769), [@dixudx](https://github.com/dixudx))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  5. doc/go_spec.html

    must be <a href="#Uniqueness_of_identifiers">unique</a>.
    If absent, each type stands for one item of that type.
    Parameter and result
    lists are always parenthesized except that if there is exactly
    one unnamed result it may be written as an unparenthesized type.
    </p>
    
    <p>
    The final incoming parameter in a function signature may have
    a type prefixed with <code>...</code>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top