Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 37 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. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/imports.go

    package astutil // import "golang.org/x/tools/go/ast/astutil"
    
    import (
    	"fmt"
    	"go/ast"
    	"go/token"
    	"strconv"
    	"strings"
    )
    
    // AddImport adds the import path to the file f, if absent.
    func AddImport(fset *token.FileSet, f *ast.File, path string) (added bool) {
    	return AddNamedImport(fset, f, "", path)
    }
    
    // AddNamedImport adds the import with the given name and path to the file f, if absent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 21:56:21 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/internal/test2json/testdata/framefuzz.json

    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"mask6\"\n"}
    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"AddrPort.isZero\"\n"}
    {"Action":"output","Test":"TestInlining","Output":"    inlining_test.go:102: not in expected set, but also inlinable: \"stringsLastIndexByte\"\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

        public void setOuterClassName(String outerClassName) {
            this.outerClassName = outerClassName;
        }
    
        public List<String> getImports() {
            return imports;
        }
    
        public void addImport(String importName) {
            imports.add(importName);
        }
    
        public PropertyMetaData addReadableProperty(String name, TypeMetaData type, String rawCommentText, MethodMetaData getterMethod) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  7. 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)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

                .filter(anImport -> !anImport.isStatic())
                .map(anImport -> anImport.getNameAsString() + (anImport.isAsterisk() ? ".*" : ""))
                .forEach(anImport -> allClasses.forEach(classMetaData -> classMetaData.addImport(anImport)));
        }
    
        @Override
        public void visit(PackageDeclaration packageDeclaration, ClassMetaDataRepository<ClassMetaData> repository) {
            this.packageName = packageDeclaration.getNameAsString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 21 13:27:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/cmd/fix/fix.go

    func matchLen(x, y string) int {
    	i := 0
    	for i < len(x) && i < len(y) && x[i] == y[i] {
    		i++
    	}
    	return i
    }
    
    // addImport adds the import path to the file f, if absent.
    func addImport(f *ast.File, ipath string) (added bool) {
    	if imports(f, ipath) {
    		return false
    	}
    
    	// Determine name of import.
    	// Assume added imports follow convention of using last element.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/istio.go

    	// the given cluster. This allows access to the discovery server from
    	// outside its cluster.
    	RemoteDiscoveryAddressFor(cluster cluster.Cluster) (netip.AddrPort, error)
    	// CreateRemoteSecret on the cluster with the given options.
    	CreateRemoteSecret(ctx resource.Context, c cluster.Cluster, opts ...string) (string, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top