Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for 4291 (0.03 sec)

  1. pkg/monitoring/monitortest/test.go

    	name  string
    	attrs attribute.Set
    }
    
    var reg = lazy.New(func() (prometheus.Gatherer, error) {
    	// TODO: do not use a global and/or add a way to reset (https://github.com/open-telemetry/opentelemetry-go/issues/4291)
    	reg := prometheus.NewRegistry()
    	_, err := monitoring.RegisterPrometheusExporter(reg, reg)
    	if err != nil {
    		return nil, err
    	}
    	return reg, nil
    })
    
    func TestRegistry(t test.Failer) prometheus.Gatherer {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. src/net/ipsock.go

    	ipStackCaps.Once.Do(ipStackCaps.probe)
    	return ipStackCaps.ipv6Enabled
    }
    
    // supportsIPv4map reports whether the platform supports mapping an
    // IPv4 address inside an IPv6 address at transport layer
    // protocols. See RFC 4291, RFC 4038 and RFC 3493.
    func supportsIPv4map() bool {
    	// Some operating systems provide no support for mapping IPv4
    	// addresses to IPv6, and a runtime check is unnecessary.
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/net/interface_test.go

    					return nil, fmt.Errorf("unexpected prefix length: %d/%d for %#v", prefixLen, maxPrefixLen, ifa)
    				}
    				if ifa.IP.IsLoopback() && prefixLen != 8*IPv6len { // see RFC 4291
    					return nil, fmt.Errorf("unexpected prefix length: %d/%d for %#v", prefixLen, maxPrefixLen, ifa)
    				}
    				stats.ipv6++
    			}
    		case *IPAddr:
    			if ifa == nil || ifa.IP == nil || ifa.IP.IsMulticast() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  4. releasenotes/notes/42919.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    issue:
      - https://github.com/istio/istio/issues/42919
    
    releaseNotes:
      - |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 02:46:40 UTC 2023
    - 254 bytes
    - Viewed (0)
  5. src/go/token/example_test.go

    	fset := token.NewFileSet()
    
    	const src = `package main
    
    import "fmt"
    
    import "go/token"
    
    //line :1:5
    type p = token.Pos
    
    const bad = token.NoPos
    
    //line fake.go:42:11
    func ok(pos p) bool {
    	return pos != bad
    }
    
    /*line :7:9*/func main() {
    	fmt.Println(ok(bad) == bad.IsValid())
    }
    `
    
    	f, err := parser.ParseFile(fset, "main.go", src, 0)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:09:31 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. test/fixedbugs/issue6036.go

    func F2(t *T2) {
    	t[1<<31+1] = 42
    }
    
    type T3 [1<<15 + 1][1<<15 + 1]int
    
    func F3(t *T3) {
    	t[1<<15][1<<15] = 42
    }
    
    type S struct {
    	A int32
    	B int32
    }
    
    type T4 [1<<29 + 1]S
    
    func F4(t *T4) {
    	t[1<<29].B = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 652 bytes
    - Viewed (0)
  7. pkg/kubelet/container/container_gc.go

    		return false
    	}
    	// KEP 4191 explains that multiple filesystems for images and containers is not
    	// supported at the moment.
    	// See https://github.com/kubernetes/enhancements/tree/master/keps/sig-node/4191-split-image-filesystem#comment-on-future-extensions
    	// for work needed to support multiple filesystems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/testdata/simple.yaml.golden

            port:
              number: 4209
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4201
          weight: 100
      - match:
        - uri:
            exact: /sub/path
        route:
        - destination:
            host: service1.ns.svc.mydomain
            port:
              number: 4206
          weight: 100
      - match:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 14 16:13:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/ingress/testdata/simple.yaml

                port:
                  number: 4200
            # Subpath without trailing /
          - path: /sub/path
            backend:
              service:
                name: service1
                port:
                  number: 4201
          # With a trailing /
          - path: /sub/path/
            backend:
              service:
                name: service1
                port:
                  number: 4202
          # Regex ending with .*
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 10 16:43:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/go/ast/print_test.go

    		2  }`},
    
    	// pointers
    	{new(int), "0  *0"},
    
    	// arrays
    	{[0]int{}, `0  [0]int {}`},
    	{[3]int{1, 2, 3},
    		`0  [3]int {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    	{[...]int{42},
    		`0  [1]int {
    		1  .  0: 42
    		2  }`},
    
    	// slices
    	{[]int{}, `0  []int (len = 0) {}`},
    	{[]int{1, 2, 3},
    		`0  []int (len = 3) {
    		1  .  0: 1
    		2  .  1: 2
    		3  .  2: 3
    		4  }`},
    
    	// structs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 1.8K bytes
    - Viewed (0)
Back to top