Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for nTables (0.53 sec)

  1. src/cmd/link/internal/loader/loader.go

    // CreateExtSym creates a new external symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateExtSym(name string, ver int) Sym {
    	return l.newExtSym(name, ver)
    }
    
    // CreateStaticSym creates a new static symbol with the specified name
    // without adding it to any lookup tables, returning a Sym index for it.
    func (l *Loader) CreateStaticSym(name string) Sym {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    // linker, which will create its own dynamic symbol tables. For
    // internal linking, this may turn weak imports into strong imports,
    // which could cause dynamic linking to fail if a symbol really isn't
    // defined. However, the standard library depends on everything it
    // imports, and this is the primary use of dynamic symbol tables with
    // internal linking.
    func elfImportedSymbols(f *elf.File) []elf.ImportedSymbol {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/runtime/map.go

    // hitprobe    = # of entries to check when looking up a present key
    // missprobe   = # of entries to check when looking up an absent key
    //
    // Keep in mind this data is for maximally loaded tables, i.e. just
    // before the table grows. Typical tables will be somewhat less loaded.
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/math"
    	"unsafe"
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	section         section
    	off             int
    	index           int
    	resHeaderValid  bool
    	resHeaderOffset int
    	resHeaderType   Type
    	resHeaderLength uint16
    }
    
    // Start parses the header and enables the parsing of Questions.
    func (p *Parser) Start(msg []byte) (Header, error) {
    	if p.msg != nil {
    		*p = Parser{}
    	}
    	p.msg = msg
    	var err error
    	if p.off, err = p.header.unpack(msg, 0); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    		sa.raw.Addr[i+8] = p[i]
    	}
    	sa.raw.Addr[12] = sa.Addr
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrCAN, nil
    }
    
    // SockaddrALG implements the Sockaddr interface for AF_ALG type sockets.
    // SockaddrALG enables userspace access to the Linux kernel's cryptography
    // subsystem. The Type and Name fields specify which type of hash or cipher
    // should be used with a given socket.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/css/manual.css

    textarea {
    	overflow: auto;
    	/* 1 */
    	vertical-align: top;
    	/* 2 */
    }
    
    /* ========================================================================== Tables ========================================================================== */
    /** Remove most spacing between table cells. */
    table {
    	border-collapse: collapse;
    	border-spacing: 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    // function based on the Sidecar API objects in each namespace. If there is
    // no sidecar api object, a default sidecarscope is assigned to the
    // namespace which enables connectivity to all services in the mesh.
    //
    // Callers can check if the sidecarScope is from user generated object or not
    // by checking the sidecarScope.Config field, that contains the user provided config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. .bazelrc

    # Select supported compute capabilities (supported graphics cards).
    # This is the same as the official TensorFlow builds.
    # See https://developer.nvidia.com/cuda-gpus#compute
    # `compute_XY` enables PTX embedding in addition to SASS. PTX
    # is forward compatible beyond the current compute capability major
    # release while SASS is only forward compatible inside the current
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (module == null) {
                return false;
            }
            String name = type.getName();
    
            // check module node imports aliases
            // the while loop enables a check for inner classes which are not fully imported,
            // but visible as the surrounding class is imported and the inner class is public/protected static
            String pname;
            int index = name.length();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. common/scripts/metallb-native.yaml

                      to 50ms
                    format: int32
                    maximum: 60000
                    minimum: 10
                    type: integer
                  echoMode:
                    description: Enables or disables the echo transmission mode. This
                      mode is disabled by default, and not supported on multi hops setups.
                    type: boolean
                  minimumTtl:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top