Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for addReport (0.12 sec)

  1. pkg/registry/core/service/strategy_test.go

    			patch:  patches(setTypeClusterIP, addPort),
    			expect: makeValidServiceCustom(addPort),
    		}, {
    			name:   "don't clear nodePorts when adding a port with NodePort",
    			svc:    makeValidServiceCustom(setTypeLoadBalancer, setNodePorts),
    			patch:  patches(setTypeClusterIP, addPort, setNodePorts),
    			expect: makeValidServiceCustom(addPort, setNodePorts),
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. api/go1.22.txt

    pkg net/http, method (*Request) PathValue(string) string #61410
    pkg net/http, method (*Request) SetPathValue(string, string) #61410
    pkg net/netip, method (AddrPort) Compare(AddrPort) int #61642
    pkg os, method (*File) WriteTo(io.Writer) (int64, error) #58808
    pkg reflect, func PtrTo //deprecated #59599
    pkg reflect, func TypeFor[$0 interface{}]() Type #60088
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/net/ipsock_posix.go

    		if err != nil {
    			return nil, err
    		}
    		return &sa, nil
    	}
    	return nil, &AddrError{Err: "invalid address family", Addr: ip.String()}
    }
    
    func addrPortToSockaddrInet4(ap netip.AddrPort) (syscall.SockaddrInet4, error) {
    	// ipToSockaddrInet4 has special handling here for zero length slices.
    	// We do not, because netip has no concept of a generic zero IP address.
    	addr := ap.Addr()
    	if !addr.Is4() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    		ctxt.windynrelocsyms()
    	}
    	if ctxt.IsAIX() {
    		bench.Start("doxcoff")
    		ctxt.doxcoff()
    	}
    
    	bench.Start("textbuildid")
    	ctxt.textbuildid()
    	bench.Start("addexport")
    	ctxt.setArchSyms()
    	ctxt.addexport()
    	bench.Start("Gentext")
    	thearch.Gentext(ctxt, ctxt.loader) // trampolines, call stubs, etc.
    
    	bench.Start("textaddress")
    	ctxt.textaddress()
    	bench.Start("typelink")
    	ctxt.typelink()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    			addImport("unsafe", true)
    			if cfg.BuildContext.Compiler != "gccgo" {
    				addImport("runtime/cgo", true)
    			}
    			addImport("syscall", true)
    			addImport("sync", true)
    
    			// TODO: The .swig and .swigcxx files can use
    			// %go_import directives to import other packages.
    		}
    
    		// The linker loads implicit dependencies.
    		if p.Name == "main" && !p.Internal.ForceLibrary {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/kube/deployment.go

    			Port:        grpcMagicPort,
    			LocalhostIP: true,
    		})
    	}
    	return containerPorts
    }
    
    func customizeVMEnvironment(ctx resource.Context, cfg echo.Config, clusterEnv string, istiodAddr netip.AddrPort) error {
    	f, err := os.OpenFile(clusterEnv, os.O_APPEND|os.O_WRONLY, os.ModeAppend)
    	if err != nil {
    		return fmt.Errorf("failed opening %s: %v", clusterEnv, err)
    	}
    	defer f.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(Addr).WithZone", Method, 18},
    		{"(Addr).Zone", Method, 18},
    		{"(AddrPort).Addr", Method, 18},
    		{"(AddrPort).AppendTo", Method, 18},
    		{"(AddrPort).Compare", Method, 22},
    		{"(AddrPort).IsValid", Method, 18},
    		{"(AddrPort).MarshalBinary", Method, 18},
    		{"(AddrPort).MarshalText", Method, 18},
    		{"(AddrPort).Port", Method, 18},
    		{"(AddrPort).String", Method, 18},
    		{"(Prefix).Addr", Method, 18},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage_test.go

    			expectError: true,
    		},
    	}}
    
    	helpTestCreateUpdateDelete(t, testCases)
    }
    
    func TestFeaturePorts(t *testing.T) {
    	testCases := []cudTestCase{{
    		name: "add_port",
    		create: svcTestCase{
    			svc: svctest.MakeService("foo", svctest.SetTypeClusterIP,
    				svctest.SetPorts(
    					svctest.MakeServicePort("p", 80, intstr.FromInt32(80), api.ProtocolTCP))),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top