Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 175 for srcIPs (0.17 sec)

  1. tests/integration/pilot/original_src_addr_test.go

    			if err != nil {
    				t.Errorf("failed to get Subsets: %v", err)
    				return
    			}
    			// check the server can see the client's original ip
    			var srcIps []string
    			for _, w := range workloads {
    				srcIps = append(srcIps, w.Address())
    			}
    			checkOriginalSrcIP(t, apps.A[0], apps.Tproxy[0], srcIps)
    		})
    }
    
    func checkOriginalSrcIP(t framework.TestContext, from echo.Caller, to echo.Target, expected []string) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    		remoteIP = netutils.ParseIPSloppy(req.RemoteAddr)
    	}
    
    	// Don't duplicate remote IP if it's already the last address in the chain.
    	if remoteIP != nil && (len(srcIPs) == 0 || !remoteIP.Equal(srcIPs[len(srcIPs)-1])) {
    		srcIPs = append(srcIPs, remoteIP)
    	}
    
    	return srcIPs
    }
    
    // Checks whether the given IP address is contained in the list of IPs.
    func containsIP(ips []net.IP, ip net.IP) bool {
    	for _, v := range ips {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  3. src/compress/flate/dict_decoder.go

    	// Thus, a backwards copy is performed here; that is, the exact bytes in
    	// the source prior to the copy is placed in the destination.
    	if srcPos < 0 {
    		srcPos += len(dd.hist)
    		dstPos += copy(dd.hist[dstPos:endPos], dd.hist[srcPos:])
    		srcPos = 0
    	}
    
    	// Copy possibly overlapping section before destination position.
    	//
    	// This section can overlap if the copy length for this section is larger
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
  4. src/text/scanner/scanner.go

    func (s *Scanner) next() rune {
    	ch, width := rune(s.srcBuf[s.srcPos]), 1
    
    	if ch >= utf8.RuneSelf {
    		// uncommon case: not ASCII or not enough bytes
    		for s.srcPos+utf8.UTFMax > s.srcEnd && !utf8.FullRune(s.srcBuf[s.srcPos:s.srcEnd]) {
    			// not enough bytes: read some more, but first
    			// save away token text if any
    			if s.tokPos >= 0 {
    				s.tokBuf.Write(s.srcBuf[s.tokPos:s.srcPos])
    				s.tokPos = 0
    				// s.tokEnd is set by Scan()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-service-dashboard.json

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  6. samples/addons/grafana.yaml

        source_workload=~\\\"$srcwl\\\", source_workload_namespace=~\\\"$srcns\\\"}[5m]))
        by (source_workload, source_workload_namespace) / sum(irate(istio_requests_total{reporter=~\\\"$qrep\\\",
        connection_security_policy=\\\"mutual_tls\\\", destination_service=~\\\"$service\\\",
        source_workload=~\\\"$srcwl\\\", source_workload_namespace=~\\\"$srcns\\\"}[5m]))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  7. tensorflow/cc/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "srcs_no_runtime",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
            "framework/scope_internal.h",
            "//tensorflow/cc/saved_model:loader.h",
        ],
    )
    
    filegroup(
        name = "srcs",
        srcs = [
            "framework/gradients.h",
            "framework/ops.h",
            "framework/scope.h",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. arm_compiler.BUILD

    package(default_visibility = ["//visibility:public"])
    
    filegroup(
        name = "gcc",
        srcs = glob(["bin/*-gcc"]),
    )
    
    filegroup(
        name = "ar",
        srcs = glob(["bin/*-ar"]),
    )
    
    filegroup(
        name = "ld",
        srcs = glob(["bin/*-ld"]),
    )
    
    filegroup(
        name = "nm",
        srcs = glob(["bin/*-nm"]),
    )
    
    filegroup(
        name = "objcopy",
        srcs = glob(["bin/*-objcopy"]),
    )
    
    filegroup(
        name = "objdump",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 12 11:17:46 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/pgo_inl_test.go

    	// Check that a hash match allows PGO inlining.
    	const srcPos = "example.com/pgo/inline/inline_hot.go:81:19"
    	const hashMatch = "pgohash triggered " + srcPos + " (inline)"
    	pgoDebugRE := regexp.MustCompile(`hot-budget check allows inlining for call .* at ` + strings.ReplaceAll(srcPos, ".", "\\."))
    	hash := "v1" // 1 matches srcPos, v for verbose (print source location)
    	gcflag := gcflag0 + ",pgohash=" + hash
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. tensorflow/c/BUILD

        licenses = ["notice"],
    )
    
    filegroup(
        name = "safe_ptr_hdr",
        srcs = ["safe_ptr.h"],
        visibility = [
            "//tensorflow:internal",
        ],
    )
    
    cc_library(
        name = "safe_ptr",
        srcs = [
            "safe_ptr.cc",
            "//tensorflow/c/eager:headers",
        ],
        hdrs = ["safe_ptr.h"],
        visibility = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top