Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 58 for Ifindex (0.14 sec)

  1. src/net/interface_plan9.go

    package net
    
    import (
    	"errors"
    	"internal/itoa"
    	"internal/stringslite"
    	"os"
    )
    
    // 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) {
    	if ifindex == 0 {
    		n, err := interfaceCount()
    		if err != nil {
    			return nil, err
    		}
    		ifcs := make([]Interface, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 14:00:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    }
    
    type Cmsghdr struct {
    	Len   int32
    	Level int32
    	Type  int32
    }
    
    type Inet4Pktinfo struct {
    	Addr    [4]byte /* in_addr */
    	Ifindex uint32
    }
    
    type Inet6Pktinfo struct {
    	Addr    [16]byte /* in6_addr */
    	Ifindex uint32
    }
    
    type IPv6MTUInfo struct {
    	Addr RawSockaddrInet6
    	Mtu  uint32
    }
    
    type ICMPv6Filter struct {
    	Data [8]uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    }
    
    type SockaddrLinklayer struct {
    	Protocol uint16
    	Ifindex  int
    	Hatype   uint16
    	Pkttype  uint8
    	Halen    uint8
    	Addr     [8]byte
    	raw      RawSockaddrLinklayer
    }
    
    func (sa *SockaddrLinklayer) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	if sa.Ifindex < 0 || sa.Ifindex > 0x7fffffff {
    		return nil, 0, EINVAL
    	}
    	sa.raw.Family = AF_PACKET
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    type IPv6Mreq struct {
    	Multiaddr [16]byte /* in6_addr */
    	Interface uint32
    }
    
    type PacketMreq struct {
    	Ifindex int32
    	Type    uint16
    	Alen    uint16
    	Address [8]uint8
    }
    
    type Inet4Pktinfo struct {
    	Ifindex  int32
    	Spec_dst [4]byte /* in_addr */
    	Addr     [4]byte /* in_addr */
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  5. src/internal/syscall/windows/syscall_windows.go

    type IpAdapterGatewayAddress struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterGatewayAddress
    	Address  SocketAddress
    }
    
    type IpAdapterAddresses struct {
    	Length                 uint32
    	IfIndex                uint32
    	Next                   *IpAdapterAddresses
    	AdapterName            *byte
    	FirstUnicastAddress    *IpAdapterUnicastAddress
    	FirstAnycastAddress    *IpAdapterAnycastAddress
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. src/net/net_windows_test.go

    	}
    	// interface information is listed like:
    	//
    	//Interface Local Area Connection Parameters
    	//----------------------------------------------
    	//IfLuid                             : ethernet_6
    	//IfIndex                            : 11
    	//State                              : connected
    	//Metric                             : 10
    	//...
    	var name string
    	lines := bytes.Split(out, []byte{'\r', '\n'})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions.mlir

      %4 = shape.shape_of %3 : tensor<?x28x28x16xf32> -> tensor<4xindex>
      %5 = stablehlo.dynamic_broadcast_in_dim %1, %4, dims = [3] : (tensor<16xf32>, tensor<4xindex>) -> tensor<?x28x28x16xf32>
      %6 = stablehlo.add %3, %5 : tensor<?x28x28x16xf32>
      %7 = shape.shape_of %6 : tensor<?x28x28x16xf32> -> tensor<4xindex>
      %8 = stablehlo.dynamic_broadcast_in_dim %2, %7, dims = [] : (tensor<f32>, tensor<4xindex>) -> tensor<?x28x28x16xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: arith.divsi {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: mhlo.real_dynamic_slice {{.*}} : (tensor<4x?x4xf32>, tensor<3xindex>, tensor<3xindex>, tensor<3xindex>) -> tensor<4x?x4xf32>
      // CHECK: muli {{.*}} : index
      // CHECK: muli {{.*}} : index
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
      // CHECK: tensor.from_elements {{.*}} : tensor<3xindex>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/NMToolFixture.groovy

            this.environments = environments
        }
        
        static NMToolFixture of(List<String> environments) {
            return new NMToolFixture(environments)
        }
    
        private findExe(String exe) {
            // *nix OS correctly handle search inside the process's PATH environment variable
            if (!OperatingSystem.current().windows) {
                return [exe]
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. docs/de/docs/index.md

    ![Swagger UI](https://fastapi.tiangolo.com/img/index/index-03-swagger-02.png)
    
    * Klicken Sie auf die Taste „Try it out“, damit können Sie die Parameter ausfüllen und direkt mit der API interagieren:
    
    ![Swagger UI Interaktion](https://fastapi.tiangolo.com/img/index/index-04-swagger-03.png)
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top