Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 98 for intree (0.23 sec)

  1. doc/next/1-intro.md

    Dmitri Shuralyov <******@****.***> 1716392409 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  2. src/os/file_mutex_plan9.go

    // File locking support for Plan 9. This uses fdMutex from the
    // internal/poll package.
    
    // incref adds a reference to the file. It returns an error if the file
    // is already closed. This method is on File so that we can incorporate
    // a nil test.
    func (f *File) incref(op string) (err error) {
    	if f == nil {
    		return ErrInvalid
    	}
    	if !f.fdmu.Incref() {
    		err = ErrClosed
    		if op != "" {
    			err = &PathError{Op: op, Path: f.name, Err: err}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. operator/pkg/tpath/tree.go

    // limitations under the License.
    
    /*
    tree.go contains functions for traversing and updating a tree constructed from yaml or json.Unmarshal.
    Nodes in such trees have the form map[interface{}]interface{} or map[interface{}][]interface{}.
    For some tree updates, like delete or append, it's necessary to have access to the parent node. PathContext is a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  4. src/internal/poll/fd_mutex_test.go

    	ensurePanics(func() { mu.RWUnlock(false) })
    
    	ensurePanics(func() { mu.Incref(); mu.Decref(); mu.Decref() })
    	ensurePanics(func() { mu.RWLock(true); mu.RWUnlock(true); mu.RWUnlock(true) })
    	ensurePanics(func() { mu.RWLock(false); mu.RWUnlock(false); mu.RWUnlock(false) })
    
    	// ensure that it's still not broken
    	mu.Incref()
    	mu.Decref()
    	mu.RWLock(true)
    	mu.RWUnlock(true)
    	mu.RWLock(false)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.22.md

    - github.com/getsentry/raven-go: [v0.2.0](https://github.com/getsentry/raven-go/tree/v0.2.0)
    - github.com/go-kit/log: [v0.1.0](https://github.com/go-kit/log/tree/v0.1.0)
    - github.com/gofrs/uuid: [v4.0.0+incompatible](https://github.com/gofrs/uuid/tree/v4.0.0)
    - github.com/josharian/intern: [v1.0.0](https://github.com/josharian/intern/tree/v1.0.0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  6. src/internal/poll/export_test.go

    // the internal/poll tests can not be in package poll.
    
    package poll
    
    var Consume = consume
    
    type XFDMutex struct {
    	fdMutex
    }
    
    func (mu *XFDMutex) Incref() bool {
    	return mu.incref()
    }
    
    func (mu *XFDMutex) IncrefAndClose() bool {
    	return mu.increfAndClose()
    }
    
    func (mu *XFDMutex) Decref() bool {
    	return mu.decref()
    }
    
    func (mu *XFDMutex) RWLock(read bool) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 714 bytes
    - Viewed (0)
  7. doc/initial/1-intro.md

    Dmitri Shuralyov <******@****.***> 1716392409 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:25:26 UTC 2024
    - 406 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/tutorial/intro/tests/intro.sample.conf

    # tag::cli[]
    # gradle --quiet intro
    # end::cli[]
    executable: gradle
    args: intro
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 127 bytes
    - Viewed (0)
  9. src/internal/poll/fd_unixjs.go

    func (fd *FD) Fchdir() error {
    	if err := fd.incref(); err != nil {
    		return err
    	}
    	defer fd.decref()
    	return syscall.Fchdir(fd.Sysfd)
    }
    
    // ReadDirent wraps syscall.ReadDirent.
    // We treat this like an ordinary system call rather than a call
    // that tries to fill the buffer.
    func (fd *FD) ReadDirent(buf []byte) (int, error) {
    	if err := fd.incref(); err != nil {
    		return 0, err
    	}
    	defer fd.decref()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:12:41 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/internal/poll/file_plan9.go

    // but we still want the locking semantics that fdMutex provides.
    
    // FDMutex is an exported fdMutex, only for Plan 9.
    type FDMutex struct {
    	fdmu fdMutex
    }
    
    func (fdmu *FDMutex) Incref() bool {
    	return fdmu.fdmu.incref()
    }
    
    func (fdmu *FDMutex) Decref() bool {
    	return fdmu.fdmu.decref()
    }
    
    func (fdmu *FDMutex) IncrefAndClose() bool {
    	return fdmu.fdmu.increfAndClose()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 972 bytes
    - Viewed (0)
Back to top