Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,761 for InterfaceA (0.92 sec)

  1. tools/istio-iptables/pkg/capture/testdata/kube-virt-interfaces.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipnets-with-kube-virt-interfaces.golden

    deveshkandpal1224 <******@****.***> 1717646003 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. src/net/interface_plan9.go

    	// interfaces
    	c := 0
    	for _, name := range names {
    		if _, _, ok := dtoi(name); !ok {
    			continue
    		}
    		c++
    	}
    
    	return c, nil
    }
    
    // If the ifi is nil, interfaceAddrTable returns addresses for all
    // network interfaces. Otherwise it returns addresses for a specific
    // interface.
    func interfaceAddrTable(ifi *Interface) ([]Addr, error) {
    	var ifcs []Interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ToolingModelContract.java

    /**
     * Annotation used to mark TAPI model interfaces. On the client side such interfaces
     * are instantiated via Java dynamic proxies, and we use this annotation when we want
     * these proxies to have richer behaviour than just implementing the base interface.
     * <p>
     * For example. Let's say the TAPI model interface is {@code Animal}, but which also
     * has child interfaces such as {@code Dog}, {@code Cat}, {@code Bird}. When we
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 08:48:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider_windows.go

    		InterfaceStats: criInterfaceToWinSummary(criNetwork.DefaultInterface),
    		Interfaces:     make([]statsapi.InterfaceStats, 0, len(criNetwork.Interfaces)),
    	}
    	for _, iface := range criNetwork.Interfaces {
    		iStats.Interfaces = append(iStats.Interfaces, criInterfaceToWinSummary(iface))
    	}
    	ps.Network = &iStats
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 07:03:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

        yieldAll(classes)
    
        // Then all supported interfaces sorted by subtyping (subtypes before supertypes)
        val interfaces = mutableListOf<Class<*>>()
        classes.forEach { `class` ->
            `class`.interfaces.forEach { `interface` ->
                when (val indexOfSupertype = interfaces.indexOfFirst { it.isAssignableFrom(`interface`) }) {
                    -1 -> interfaces.add(`interface`)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    }
    
    // assertableTo checks whether interface v can be asserted into t. It returns
    // nil on success, or the first conflicting method on failure.
    func assertableTo(free *typeparams.Free, v, t types.Type) *types.Func {
    	if t == nil || v == nil {
    		// not assertable to, but there is no missing method
    		return nil
    	}
    	// ensure that v and t are interfaces
    	V, _ := v.Underlying().(*types.Interface)
    	T, _ := t.Underlying().(*types.Interface)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/decls0.go

    	F6 func(x ...int)
    
    	I1 interface{}
    	I2 interface {
    		m1()
    	}
    	I3 interface {
    		m1()
    		m1 /* ERROR "duplicate method m1" */ ()
    	}
    	I4 interface {
    		m1(x, y, x /* ERROR "redeclared" */ float32)
    		m2() (x, y, x /* ERROR "redeclared" */ float32)
    		m3(x int) (x /* ERROR "redeclared" */ float32)
    	}
    	I5 interface {
    		m1(I5)
    	}
    	I6 interface {
    		S0 /* ERROR "non-interface type S0" */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue66285.go

    // all these interfaces, irrespective of which package
    // the embedded Reader is coming from.
    
    type _ interface {
    	Reader
    	Reader // ERROR "duplicate method Read"
    }
    
    type Reader interface {
    	Read(p []byte) (n int, err error)
    }
    
    type _ interface {
    	io.Reader
    	Reader // ERROR "duplicate method Read"
    }
    
    type _ interface {
    	io.Reader
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 766 bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KotlinPlatformComponent.kt

     * implementation, such as [KotlinProjectMessageBusProvider] for [KotlinMessageBusProvider].
     *
     * Platform component interfaces and their default implementations are always prefixed with the word `Kotlin`, in contrast to
     * [KaEngineService]s which are prefixed with `Ka`. It is recommended to keep this naming convention in platform implementations. For
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top