Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,109 for isIndex (0.15 sec)

  1. maven-repository-metadata/src/site/apt/index.apt

           release artifact directory is not expected to provide metadata.
    
     []
    
     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with Reader and Writers for the Xpp3 XML parser, to read and write <<<maven-metadata(-*).xml>>> files,
    
       * a {{{./repository-metadata.html}Descriptor Reference}}.
     
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Sep 07 10:05:21 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. src/net/interface_solaris.go

    	"golang.org/x/net/lif"
    )
    
    // 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) {
    	lls, err := lif.Links(syscall.AF_UNSPEC, "")
    	if err != nil {
    		return nil, err
    	}
    	var ift []Interface
    	for _, ll := range lls {
    		if ifindex != 0 && ifindex != ll.Index {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  3. src/net/interface_bsdvar.go

    //go:build dragonfly || netbsd || openbsd
    
    package net
    
    import (
    	"syscall"
    
    	"golang.org/x/net/route"
    )
    
    func interfaceMessages(ifindex int) ([]route.Message, error) {
    	rib, err := route.FetchRIB(syscall.AF_UNSPEC, syscall.NET_RT_IFLIST, ifindex)
    	if err != nil {
    		return nil, err
    	}
    	return route.ParseRIB(syscall.NET_RT_IFLIST, rib)
    }
    
    // interfaceMulticastAddrTable returns addresses for a specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 718 bytes
    - Viewed (0)
  4. src/net/interface_stub.go

    // license that can be found in the LICENSE file.
    
    //go:build js || wasip1
    
    package net
    
    // 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) {
    	return nil, nil
    }
    
    // If the ifi is nil, interfaceAddrTable returns addresses for all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 814 bytes
    - Viewed (0)
  5. src/syscall/lsf_linux.go

    func LsfSocket(ifindex, proto int) (int, error) {
    	var lsall SockaddrLinklayer
    	// This is missing SOCK_CLOEXEC, but adding the flag
    	// could break callers.
    	s, e := Socket(AF_PACKET, SOCK_RAW, proto)
    	if e != nil {
    		return 0, e
    	}
    	p := (*[2]byte)(unsafe.Pointer(&lsall.Protocol))
    	p[0] = byte(proto >> 8)
    	p[1] = byte(proto)
    	lsall.Ifindex = ifindex
    	e = Bind(s, &lsall)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:27:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. src/net/interface_freebsd.go

    	if err != nil {
    		return nil, err
    	}
    	msgs, err := route.ParseRIB(syscall.NET_RT_IFMALIST, rib)
    	if err != nil {
    		return nil, err
    	}
    	ifmat := make([]Addr, 0, len(msgs))
    	for _, m := range msgs {
    		switch m := m.(type) {
    		case *route.InterfaceMulticastAddrMessage:
    			if ifi.Index != m.Index {
    				continue
    			}
    			var ip IP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 16:05:55 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/invalid-output-index.pbtxt

    # RUN: not tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -tf-input-arrays=input -tf-input-data-types=DT_FLOAT -tf-input-shapes='' -tf-output-arrays=input:1 -o - 2>&1 | FileCheck %s
    
    # CHECK: Invalid output index 1 specified for node: input
    
    node {
      name: "input"
      op: "Placeholder"
      attr {
        key: "dtype"
        value {
          type: DT_FLOAT
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 10 23:27:16 UTC 2021
    - 391 bytes
    - Viewed (0)
  8. src/net/interface_linux.go

    		case syscall.RTM_NEWLINK:
    			ifim := (*syscall.IfInfomsg)(unsafe.Pointer(&m.Data[0]))
    			if ifindex == 0 || ifindex == int(ifim.Index) {
    				attrs, err := syscall.ParseNetlinkRouteAttr(&m)
    				if err != nil {
    					return nil, os.NewSyscallError("parsenetlinkrouteattr", err)
    				}
    				ift = append(ift, *newLink(ifim, attrs))
    				if ifindex == int(ifim.Index) {
    					break loop
    				}
    			}
    		}
    	}
    	return ift, nil
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/login/index.jsp

    Shinsuke Sugaya <******@****.***> 1676636021 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/flatmultimodule/some-thing/webinar-war/src/main/webapp/index.jsp

    Tom Tresansky <******@****.***> 1694705555 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 123 bytes
    - Viewed (0)
Back to top