Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for isIP (0.21 sec)

  1. staging/src/k8s.io/apiserver/pkg/cel/library/ip_test.go

    		},
    		{
    			name:         "isIP valid ipv4",
    			expr:         `isIP("192.168.0.1")`,
    			expectResult: trueVal,
    		},
    		{
    			name:         "isIP invalid ipv4",
    			expr:         `isIP("192.168.0.1.0")`,
    			expectResult: falseVal,
    		},
    		{
    			name:         "ip.isCanonical valid ipv4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:07 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/ip.go

    //	isIP('::1') // returns true
    //	isIP('127.0.0.256') // returns false
    //	isIP(':::1') // returns false
    //
    // ip.isCanonical
    //
    // Returns true if the IP address is in its canonical form.
    // There is exactly one canonical form for every IP address, so fields containing
    // IPs in canonical form can just be treated as strings when checking for equality or uniqueness.
    //
    //	ip.isCanonical(<string>) <bool>
    //
    // Examples:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 11:02:34 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    			if err != nil {
    				c.Report(gvk.ValidatingWebhookConfiguration, msg.NewInvalidExternalControlPlaneConfig(r, *clientConf.URL, hName, err.Error()))
    				return
    			}
    			if result.isIP() {
    				c.Report(gvk.ValidatingWebhookConfiguration, msg.NewExternalControlPlaneAddressIsNotAHostname(r, *clientConf.URL, hName))
    			}
    		} else if clientConf.Service == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. pkg/test/framework/components/opentelemetry/kube.go

    	f := testKube.NewSinglePodFetch(o.cluster, ns, fmt.Sprintf("app=%s", appName))
    	_, err = testKube.WaitUntilPodsAreReady(f)
    	if err != nil {
    		return nil, err
    	}
    
    	isIP := net.ParseIP(c.IngressAddr).String() != "<nil>"
    	ingressDomain := c.IngressAddr
    	if isIP {
    		ingressDomain = fmt.Sprintf("%s.sslip.io", strings.ReplaceAll(c.IngressAddr, ":", "-"))
    	}
    
    	err = installServiceEntry(ctx, istioCfg.TelemetryNamespace, ingressDomain)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/library/library_compatibility_test.go

    		// Kubernetes <1.30>:
    		"ip", "family", "isUnspecified", "isLoopback", "isLinkLocalMulticast", "isLinkLocalUnicast", "isGlobalUnicast", "ip.isCanonical", "isIP", "cidr", "containsIP", "containsCIDR", "masked", "prefixLength", "isCIDR", "string",
    		// Kubernetes <1.??>:
    	)
    
    	// TODO: test celgo function lists
    
    	unexpected := functionNames.Difference(knownFunctions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar.go

    		// returns "com" as the jar key is generated from host.
    	}
    	prevDot := strings.LastIndex(host[:i-1], ".")
    	return host[prevDot+1:]
    }
    
    // isIP reports whether host is an IP address.
    func isIP(host string) bool {
    	if strings.ContainsAny(host, ":%") {
    		// Probable IPv6 address.
    		// Hostnames can't contain : or %, so this is definitely not a valid host.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/test/framework/components/zipkin/kube.go

    		return nil, err
    	}
    	c.forwarder = forwarder
    	scopes.Framework.Debugf("initialized zipkin port forwarder: %v", forwarder.Address())
    
    	isIP := net.ParseIP(cfgIn.IngressAddr).String() != "<nil>"
    	ingressDomain := cfgIn.IngressAddr
    	if isIP {
    		ingressDomain = fmt.Sprintf("%s.sslip.io", strings.ReplaceAll(cfgIn.IngressAddr, ":", "-"))
    	}
    
    	c.address = fmt.Sprintf("http://tracing.%s", ingressDomain)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. pkg/apis/networking/validation/validation.go

    			for _, msg := range validation.IsDNS1123Subdomain(ingress.Hostname) {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, msg))
    			}
    			if isIP := (netutils.ParseIPSloppy(ingress.Hostname) != nil); isIP {
    				allErrs = append(allErrs, field.Invalid(idxPath.Child("hostname"), ingress.Hostname, "must be a DNS name, not an IP address"))
    			}
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    			// in length.
    			regexCost := uint64(math.Ceil(float64(actualSize(args[1])) * common.RegexStringLengthCostFactor))
    			cost := strCost * regexCost
    			return &cost
    		}
    	case "cidr", "isIP", "isCIDR":
    		// IP and CIDR parsing is a string traversal.
    		if len(args) >= 1 {
    			cost := uint64(math.Ceil(float64(actualSize(args[0])) * common.StringTraversalCostFactor))
    			return &cost
    		}
    	case "ip":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/net/http/cookiejar/jar_test.go

    	"1.1.1.300":            false,
    	"www.foo.bar.net":      false,
    	"123.foo.bar.net":      false,
    }
    
    func TestIsIP(t *testing.T) {
    	for host, want := range isIPTests {
    		if got := isIP(host); got != want {
    			t.Errorf("%q: got %t, want %t", host, got, want)
    		}
    	}
    }
    
    var defaultPathTests = map[string]string{
    	"/":           "/",
    	"/abc":        "/",
    	"/abc/":       "/abc",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
Back to top