Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,098 for addUses (0.16 sec)

  1. src/cmd/compile/internal/ssa/sccp.go

    			if possibleConst(ctl) {
    				t.defBlock[ctl] = append(t.defBlock[ctl], block)
    			}
    		}
    	}
    }
    
    // addUses finds all uses of value and appends them into work list for further process
    func (t *worklist) addUses(val *Value) {
    	for _, use := range t.defUse[val] {
    		if val == use {
    			// Phi may refer to itself as uses, ignore them to avoid re-visiting phi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. internal/http/listener_test.go

    				if strings.Contains(err.Error(), "The requested address is not valid in its context") {
    					// Ignore if IP is unbindable.
    					continue nextTest
    				}
    				if strings.Contains(err.Error(), "bind: address already in use") {
    					continue nextTest
    				}
    				t.Fatalf("Test %d: error: expected = <nil>, got = %v", i+1, err)
    			}
    		}
    
    		addrs := listener.Addrs()
    		addrSet := set.NewStringSet()
    		for _, addr := range addrs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/bootstrap/option/instances_test.go

    		},
    
    		{
    			testName: "lightstep address empty",
    			key:      "lightstep",
    			option:   option.LightstepAddress(""),
    			expected: nil,
    		},
    		{
    			testName: "lightstep address ipv4",
    			key:      "lightstep",
    			option:   option.LightstepAddress("127.0.0.1:80"),
    			expected: "{\"address\": \"127.0.0.1\", \"port_value\": 80}",
    		},
    		{
    			testName: "lightstep address ipv6",
    			key:      "lightstep",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. src/net/mail/message_test.go

    	tests := []struct {
    		addr *Address
    		exp  string
    	}{
    		{
    			&Address{Address: "******@****.***"},
    			"<******@****.***>",
    		},
    		{ // quoted local parts: RFC 5322, 3.4.1. and 3.2.4.
    			&Address{Address: `my@idiot@address@example.com`},
    			`<"my@idiot@address"@example.com>`,
    		},
    		{ // quoted local parts
    			&Address{Address: ` @example.com`},
    			`<" "@example.com>`,
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/connection/RouteSelectorTest.kt

      }
    
      private fun assertRoute(
        route: Route,
        address: Address,
        proxy: Proxy,
        socketAddress: InetAddress,
        socketPort: Int,
      ) {
        assertThat(route.address).isEqualTo(address)
        assertThat(route.proxy).isEqualTo(proxy)
        assertThat(route.socketAddress.address).isEqualTo(socketAddress)
        assertThat(route.socketAddress.port).isEqualTo(socketPort)
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. pkg/bootstrap/testdata/stats_compression_brotli_golden.json

                  "endpoint": {
                    "address":{
                      "socket_address": {"address": "accesslog-service", "port_value": 15000}
                    }
                  }
                }]
              }]
            }
          }
          
        ],
        "listeners":[
          {
            "address": {
              "socket_address": {
                "protocol": "TCP",
                "address": "0.0.0.0",
                
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. tools/packaging/common/envoy_bootstrap.json

                "address": "{{ .localhost }}",
                {{ else }}
                "address": "{{ .wildcard }}",
                {{ end }}
                "port_value": {{ .envoy_prometheus_port }}
              }
            },
            {{- if .dual_stack }}
            "additionalAddresses": [
              {
                "address": {
                  "socket_address": {
                    "protocol": "TCP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

          - suffix: -not-ns-suffix
          - presence: {}
    - rules:
      - matches:
        - notSourceIps:
          - address: AgIDBA==
            length: 32
          - address: BgYAAA==
            length: 16
          sourceIps:
          - address: AQIDBA==
            length: 32
          - address: BQYAAA==
            length: 16
    - rules:
      - matches:
        - destinationPorts:
          - 80
          - 90
          notDestinationPorts:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/net/InetAddresses.java

       *
       * @param hostAddr an RFC 3986 section 3.2.2 encoded IPv4 or IPv6 address
       * @return an InetAddress representing the address in {@code hostAddr}
       * @throws IllegalArgumentException if {@code hostAddr} is not a valid IPv4 address, or IPv6
       *     address surrounded by square brackets, or if the address has a scope id that fails
       *     validation against interfaces on the machine
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteSelector.kt

        val InetSocketAddress.socketHost: String get() {
          // The InetSocketAddress was specified with a string (either a numeric IP or a host name). If
          // it is a name, all IPs for that name should be tried. If it is an IP address, only that IP
          // address should be tried.
          val address = address ?: return hostName
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Mar 06 17:33:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top