Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for netutils (0.14 sec)

  1. pilot/pkg/networking/core/cluster.go

    				// prefer 127.0.0.1 to ::1, but if given no option choose ::1
    				ipV6EndpointAddress := ""
    				for _, host := range actualLocalHosts {
    					if netutil.IsIPv4Address(host) {
    						endpointAddress = host
    						break
    					}
    					if netutil.IsIPv6Address(host) {
    						ipV6EndpointAddress = host
    					}
    				}
    				if endpointAddress == "" {
    					endpointAddress = ipV6EndpointAddress
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptCompilationHandler.java

            private boolean isEmpty(SourceUnit source) {
                List<Statement> statements = source.getAST().getStatementBlock().getStatements();
                for (Statement statement : statements) {
                    if (AstUtils.mayHaveAnEffect(statement)) {
                        return false;
                    }
                }
    
                // No statements, or no statements that have an effect
                return true;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  3. pkg/config/validation/validation.go

    	"istio.io/istio/pkg/config/visibility"
    	"istio.io/istio/pkg/jwt"
    	"istio.io/istio/pkg/kube/apimirror"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/grpc"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // Constants for duration fields
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top