Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,316 for addUses (0.36 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. src/main/java/jcifs/Address.java

     * 
     * @author mbechler
     *
     */
    public interface Address {
    
        /**
         * 
         * @param type
         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 03 13:22:30 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Address.kt

     * explicitly requested), this also includes that proxy information. For secure connections the
     * address also includes the SSL socket factory, hostname verifier, and certificate pinner.
     *
     * HTTP requests that share the same [Address] may also share the same [Connection].
     */
    class Address(
      uriHost: String,
      uriPort: Int,
      /** Returns the service that will be used to resolve IP addresses for hostnames. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/compileGoodCode/src/main/groovy/Address.groovy

    import com.google.common.base.Strings
    
    class Address {
        String street
    
        String getNonNullStreet() {
            Strings.nullToEmpty(street)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 150 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/lif/address.go

    import (
    	"errors"
    	"syscall"
    	"unsafe"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // An Inet4Addr represents an internet address for IPv4.
    type Inet4Addr struct {
    	IP        [4]byte // IP address
    	PrefixLen int     // address prefix length
    }
    
    // Family implements the Family method of Addr interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/route/address.go

    	"runtime"
    	"syscall"
    )
    
    // An Addr represents an address associated with packet routing.
    type Addr interface {
    	// Family returns an address family.
    	Family() int
    }
    
    // A LinkAddr represents a link-layer address.
    type LinkAddr struct {
    	Index int    // interface index when attached
    	Name  string // interface name when attached
    	Addr  []byte // link-layer address when attached
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/Address.java

     * limitations under the License.
     */
    package org.gradle.internal.remote;
    
    import java.io.Serializable;
    
    /**
     * The address for a communication endpoint. Addresses are immutable.
     */
    public interface Address extends Serializable {
        /**
         * Returns the display name for this address. Implementations should also override toString() to return the display name.
         *
         * @return The display name.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1022 bytes
    - Viewed (0)
  8. releasenotes/notes/istioctl-additional-address.yaml

    jacob-delgado <******@****.***> 1683307446 -0600
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 05 17:24:06 UTC 2023
    - 196 bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top