Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,428 for InterfaceA (0.77 sec)

  1. src/net/interface_windows.go

    	}
    	return aas, nil
    }
    
    // If the ifindex is zero, interfaceTable returns mappings of all
    // network interfaces. Otherwise it returns a mapping of a specific
    // interface.
    func interfaceTable(ifindex int) ([]Interface, error) {
    	aas, err := adapterAddresses()
    	if err != nil {
    		return nil, err
    	}
    	var ift []Interface
    	for _, aa := range aas {
    		index := aa.IfIndex
    		if index == 0 { // ipv6IfIndex is a substitute for ifIndex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 10:25:02 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ConfigurationMetadata.java

    import java.util.List;
    import java.util.Set;
    
    /**
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
     * You should try to use those interfaces instead of using this interface or introduce a new interface that provides a view over this type but exposes only the
     * data required.
     * </p>
     *
     * @see VariantGraphResolveMetadata
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/typeset.go

    	}
    
    	// Methods of embedded interfaces are collected unchanged; i.e., the identity
    	// of a method I.m's Func Object of an interface I is the same as that of
    	// the method m in an interface that embeds interface I. On the other hand,
    	// if a method is embedded via multiple overlapping embedded interfaces, we
    	// don't provide a guarantee which "original m" got chosen for the embedding
    	// interface. See also go.dev/issue/34421.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/net/net_windows_test.go

    	outIPV4, err := runCmd("netsh", "interface", "ipv4", "show", "address")
    	if err != nil {
    		t.Fatal(err)
    	}
    	outIPV6, err := runCmd("netsh", "interface", "ipv6", "show", "address", "level=verbose")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	ift, err := Interfaces()
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, ifi := range ift {
    		// Skip the interface if it's down.
    		if (ifi.Flags & FlagUp) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. cni/pkg/repair/netns.go

    	}
    
    	return res, nil
    }
    
    func checkInterfacesForMatchingAddr(targetAddr net.IP) (match bool, err error) {
    	var interfaces []net.Interface
    	if interfaces, err = net.Interfaces(); err != nil {
    		return false, fmt.Errorf("failed to get interfaces")
    	}
    
    	for _, ief := range interfaces {
    		var addrs []net.Addr
    		if addrs, err = ief.Addrs(); err != nil {
    			return
    		}
    		for _, addr := range addrs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ExternalComponentResolveMetadata.java

     *
     * <p>Note that this type is being replaced by several other interfaces that separate out the data and state required at various stages of dependency resolution.
     * You should try to use those interfaces instead of using this interface or introduce a new interface that provides a view over this type but exposes only the
     * data required.
     * </p>
     *
     * @see ComponentGraphResolveState
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/AdditionalData.java

    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    /**
     * Marker interface for additional data that can be attached to a {@link Problem}.
     * <p>
     * This is effectively a sealed interface that is used to restrict the types of additional data that can be attached to a problem.
     * The list interfaces supported by the problems API are:
     * <ul>
     *     <li>{@link GeneralData}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/initializer/initializer.go

    		featureGates:      featureGates,
    		stopCh:            stopCh,
    		restMapper:        restMapper,
    	}
    }
    
    // Initialize checks the initialization interfaces implemented by a plugin
    // and provide the appropriate initialization data
    func (i pluginInitializer) Initialize(plugin admission.Interface) {
    	// First tell the plugin about drained notification, so it can pass it to further initializations.
    	if wants, ok := plugin.(WantsDrainedNotification); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/admission/initializer.go

    	return &PluginInitializer{
    		cloudConfig: cloudConfig,
    	}
    }
    
    // Initialize checks the initialization interfaces implemented by each plugin
    // and provide the appropriate initialization data
    func (i *PluginInitializer) Initialize(plugin admission.Interface) {
    	if wants, ok := plugin.(WantsCloudConfig); ok {
    		wants.SetCloudConfig(i.cloudConfig)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/ui.go

    // This file defines utilities for user interfaces that display types.
    
    import (
    	"go/types"
    
    	"golang.org/x/tools/internal/aliases"
    )
    
    // IntuitiveMethodSet returns the intuitive method set of a type T,
    // which is the set of methods you can call on an addressable value of
    // that type.
    //
    // The result always contains MethodSet(T), and is exactly MethodSet(T)
    // for interface types and for pointer-to-concrete types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top