Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 111 for Closest (0.11 sec)

  1. src/syscall/exec_linux.go

    	parentTID  uint64 // Where to store child TID, in parent's memory (pid_t *)
    	exitSignal uint64 // Signal to deliver to parent on child termination
    	stack      uint64 // Pointer to lowest byte of stack
    	stackSize  uint64 // Size of stack
    	tls        uint64 // Location of new TLS
    	setTID     uint64 // Pointer to a pid_t array (since Linux 5.5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    // function where the object must be reachable.
    //
    // For example, if p points to a struct, such as os.File, that contains
    // a file descriptor d, and p has a finalizer that closes that file
    // descriptor, and if the last use of p in a function is a call to
    // syscall.Write(p.d, buf, size), then p may be unreachable as soon as
    // the program enters [syscall.Write]. The finalizer may run at that moment,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	// Pointer-valued data or, if flagIndir is set, pointer to data.
    	// Valid when either flagIndir is set or typ.pointers() is true.
    	ptr unsafe.Pointer
    
    	// flag holds metadata about the value.
    	//
    	// The lowest five bits give the Kind of the value, mirroring typ.Kind().
    	//
    	// The next set of bits are flag bits:
    	//	- flagStickyRO: obtained via unexported not embedded field, so read-only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. src/archive/tar/writer.go

    	if tw.err != nil {
    		return 0, tw.err
    	}
    	n, err := tw.curr.ReadFrom(r)
    	if err != nil && err != ErrWriteTooLong {
    		tw.err = err
    	}
    	return n, err
    }
    
    // Close closes the tar archive by flushing the padding, and writing the footer.
    // If the current file (from a prior call to [Writer.WriteHeader]) is not fully written,
    // then this returns an error.
    func (tw *Writer) Close() error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. internal/grid/handlers.go

    	})
    }
    
    // TypedStream is a stream with specific types.
    type TypedStream[Req, Resp RoundTripper] struct {
    	// responses from the remote server.
    	// Channel will be closed after error or when remote closes.
    	// responses *must* be read to either an error is returned or the channel is closed.
    	responses *Stream
    	newResp   func() Resp
    
    	// Requests sent to the server.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  6. src/runtime/sema.go

    	// https://en.wikipedia.org/wiki/Treap
    	// https://faculty.washington.edu/aragon/pubs/rst89.pdf
    	//
    	// s.ticket compared with zero in couple of places, therefore set lowest bit.
    	// It will not affect treap's quality noticeably.
    	s.ticket = cheaprand() | 1
    	s.parent = last
    	*pt = s
    
    	// Rotate up into tree according to ticket (priority).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	cc.mu.Unlock()
    	cc.closeConn()
    }
    
    // Close closes the client connection immediately.
    //
    // In-flight requests are interrupted. For a graceful shutdown, use Shutdown instead.
    func (cc *http2ClientConn) Close() error {
    	err := errors.New("http2: client connection force closed via ClientConn.Close")
    	cc.closeForError(err)
    	return nil
    }
    
    // closes the client connection immediately. In-flight requests are interrupted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell.go

    		// Common case
    		return nil
    	}
    	if len(cmdOut) == 0 && cmdErr != nil {
    		// Just return the error.
    		//
    		// TODO: This is what we've done for a long time, but it may be a
    		// mistake because it loses all of the extra context and results in
    		// ultimately less descriptive output. We should probably just take the
    		// text of cmdErr as the output in this case and do everything we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/cache/desired_state_of_world.go

    		// In-line volumes in pod do not have a specific access mode, using "inline".
    		return "inline"
    	}
    	// For purpose of this PR, report only the "highest" access mode in this order: RWX (highest priority), ROX, RWO, RWOP (lowest priority
    	pv := spec.PersistentVolume
    	if util.ContainsAccessMode(pv.Spec.AccessModes, v1.ReadWriteMany) {
    		return "RWX"
    	}
    	if util.ContainsAccessMode(pv.Spec.AccessModes, v1.ReadOnlyMany) {
    		return "ROX"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/crypto/tls/conn.go

    		recordType(c.rawInput.Bytes()[0]) == recordTypeAlert {
    		if err := c.readRecord(); err != nil {
    			return n, err // will be io.EOF on closeNotify
    		}
    	}
    
    	return n, nil
    }
    
    // Close closes the connection.
    func (c *Conn) Close() error {
    	// Interlock with Conn.Write above.
    	var x int32
    	for {
    		x = c.activeCall.Load()
    		if x&1 != 0 {
    			return net.ErrClosed
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top