Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for _NodeC (0.13 sec)

  1. test/typeparam/graph.go

    func _New[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]](nodes []_Node) *_Graph[_Node, _Edge] {
    	return &_Graph[_Node, _Edge]{nodes: nodes}
    }
    
    // nodePath holds the path to a node during ShortestPath.
    // This should ideally be a type defined inside ShortestPath,
    // but the translator tool doesn't support that.
    type nodePath[_Node _NodeC[_Edge], _Edge _EdgeC[_Node]] struct {
    	node _Node
    	path []_Edge
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/rpc.java

                int _nodes = 6;
                int _nodei = _src.index;
                _src.advance(1 * _nodes);
    
                if (node == null) {
                    if (_nodes < 0 || _nodes > 0xFFFF) throw new NdrException( NdrException.INVALID_CONFORMANCE );
                    node = new byte[_nodes];
                }
                _src = _src.derive(_nodei);
                for (int _i = 0; _i < _nodes; _i++) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/rpc.java

                int _nodes = 6;
                int _nodei = _src.index;
                _src.advance(1 * _nodes);
    
                if ( this.node == null ) {
                    if ( _nodes < 0 || _nodes > 0xFFFF )
                        throw new NdrException(NdrException.INVALID_CONFORMANCE);
                    this.node = new byte[_nodes];
                }
                _src = _src.derive(_nodei);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 8.8K bytes
    - Viewed (0)
  4. src/runtime/signal_netbsd_386.go

    func (c *sigctxt) sigcode() uint32 { return uint32(c.info._code) }
    func (c *sigctxt) sigaddr() uint32 {
    	return *(*uint32)(unsafe.Pointer(&c.info._reason[0]))
    }
    
    func (c *sigctxt) set_eip(x uint32)     { c.regs().__gregs[_REG_EIP] = x }
    func (c *sigctxt) set_esp(x uint32)     { c.regs().__gregs[_REG_UESP] = x }
    func (c *sigctxt) set_sigcode(x uint32) { c.info._code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:56:15 UTC 2016
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/signal_netbsd_amd64.go

    func (c *sigctxt) sigcode() uint64 { return uint64(c.info._code) }
    func (c *sigctxt) sigaddr() uint64 {
    	return *(*uint64)(unsafe.Pointer(&c.info._reason[0]))
    }
    
    func (c *sigctxt) set_rip(x uint64)     { c.regs().__gregs[_REG_RIP] = x }
    func (c *sigctxt) set_rsp(x uint64)     { c.regs().__gregs[_REG_RSP] = x }
    func (c *sigctxt) set_sigcode(x uint64) { c.info._code = int32(x) }
    func (c *sigctxt) set_sigaddr(x uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 18:51:53 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. src/runtime/signal_netbsd_arm.go

    func (c *sigctxt) trap() uint32    { return 0 }
    func (c *sigctxt) error() uint32   { return 0 }
    func (c *sigctxt) oldmask() uint32 { return 0 }
    
    func (c *sigctxt) sigcode() uint32 { return uint32(c.info._code) }
    func (c *sigctxt) sigaddr() uint32 { return uint32(c.info._reason) }
    
    func (c *sigctxt) set_pc(x uint32)  { c.regs().__gregs[_REG_R15] = x }
    func (c *sigctxt) set_sp(x uint32)  { c.regs().__gregs[_REG_R13] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 02:31:25 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  7. src/runtime/signal_netbsd_arm64.go

    func (c *sigctxt) trap() uint64    { return 0 }
    func (c *sigctxt) error() uint64   { return 0 }
    func (c *sigctxt) oldmask() uint64 { return 0 }
    
    func (c *sigctxt) sigcode() uint64 { return uint64(c.info._code) }
    func (c *sigctxt) sigaddr() uint64 { return uint64(c.info._reason) }
    
    func (c *sigctxt) set_pc(x uint64)  { c.regs().__gregs[_REG_ELR] = x }
    func (c *sigctxt) set_sp(x uint64)  { c.regs().__gregs[_REG_X31] = x }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 20 15:02:01 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  8. src/runtime/defs1_netbsd_arm64.go

    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. hack/verify-test-code.sh

    cd "${KUBE_ROOT}"
    
    all_e2e_files=()
    # NOTE: This checks e2e test code without the e2e framework which contains Expect().To(HaveOccurred())
    kube::util::read-array all_e2e_files < <(find test/e2e{,_node,_kubeadm} -name '*.go' | grep -v 'test/e2e/framework/')
    errors_expect_no_error=()
    for file in "${all_e2e_files[@]}"
    do
        if grep -E "Expect\(.*\)\.(NotTo|ToNot)\(.*HaveOccurred\(\)" "${file}" > /dev/null
        then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 23 08:51:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. src/runtime/defs1_netbsd_arm.go

    	_EVFILT_READ  = 0x0
    	_EVFILT_WRITE = 0x1
    	_EVFILT_USER  = 0x8
    
    	_NOTE_TRIGGER = 0x1000000
    )
    
    type sigset struct {
    	__bits [4]uint32
    }
    
    type siginfo struct {
    	_signo   int32
    	_code    int32
    	_errno   int32
    	_reason  uintptr
    	_reasonx [16]byte
    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec  int64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top