Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 616 for sock (0.35 sec)

  1. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SOCK_CLOEXEC = 268435456 #53466
    pkg syscall (freebsd-riscv64), const SOCK_CLOEXEC ideal-int #53466
    pkg syscall (freebsd-riscv64), const SOCK_MAXADDRLEN = 255 #53466
    pkg syscall (freebsd-riscv64), const SOCK_MAXADDRLEN ideal-int #53466
    pkg syscall (freebsd-riscv64), const SOCK_NONBLOCK = 536870912 #53466
    pkg syscall (freebsd-riscv64), const SOCK_NONBLOCK ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  2. api/go1.16.txt

    pkg syscall (darwin-arm64), const LOCK_EX = 2
    pkg syscall (darwin-arm64), const LOCK_EX ideal-int
    pkg syscall (darwin-arm64), const LOCK_NB = 4
    pkg syscall (darwin-arm64), const LOCK_NB ideal-int
    pkg syscall (darwin-arm64), const LOCK_SH = 1
    pkg syscall (darwin-arm64), const LOCK_SH ideal-int
    pkg syscall (darwin-arm64), const LOCK_UN = 8
    pkg syscall (darwin-arm64), const LOCK_UN ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  3. api/go1.13.txt

    pkg syscall (netbsd-arm64), const SOCK_CLOEXEC = 268435456
    pkg syscall (netbsd-arm64), const SOCK_CLOEXEC ideal-int
    pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK = 4026531840
    pkg syscall (netbsd-arm64), const SOCK_FLAGS_MASK ideal-int
    pkg syscall (netbsd-arm64), const SOCK_NONBLOCK = 536870912
    pkg syscall (netbsd-arm64), const SOCK_NONBLOCK ideal-int
    pkg syscall (netbsd-arm64), const SOCK_NOSIGPIPE = 1073741824
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  4. api/go1.1.txt

    pkg syscall (linux-386), const SIOCSRARP = 35170
    pkg syscall (linux-386), const SOCK_CLOEXEC = 524288
    pkg syscall (linux-386), const SOCK_DCCP = 6
    pkg syscall (linux-386), const SOCK_NONBLOCK = 2048
    pkg syscall (linux-386), const SOCK_PACKET = 10
    pkg syscall (linux-386), const SOCK_RDM = 4
    pkg syscall (linux-386), const SOL_AAL = 265
    pkg syscall (linux-386), const SOL_ATM = 264
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  5. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const SIOCSRARP ideal-int
    pkg syscall (linux-arm-cgo), const SOCK_CLOEXEC ideal-int
    pkg syscall (linux-arm-cgo), const SOCK_DCCP ideal-int
    pkg syscall (linux-arm-cgo), const SOCK_NONBLOCK ideal-int
    pkg syscall (linux-arm-cgo), const SOCK_PACKET ideal-int
    pkg syscall (linux-arm-cgo), const SOCK_RDM ideal-int
    pkg syscall (linux-arm-cgo), const SOL_AAL ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Oct 18 04:36:59 GMT 2013
    - 1.9M bytes
    - Viewed (2)
  6. api/go1.txt

    pkg syscall (linux-386), const SIOCSRARP ideal-int
    pkg syscall (linux-386), const SOCK_CLOEXEC ideal-int
    pkg syscall (linux-386), const SOCK_DCCP ideal-int
    pkg syscall (linux-386), const SOCK_NONBLOCK ideal-int
    pkg syscall (linux-386), const SOCK_PACKET ideal-int
    pkg syscall (linux-386), const SOCK_RDM ideal-int
    pkg syscall (linux-386), const SOL_AAL ideal-int
    pkg syscall (linux-386), const SOL_ATM ideal-int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
  7. internal/bucket/object/lock/lock.go

    	AmzObjectLockRetainUntilDate     = "X-Amz-Object-Lock-Retain-Until-Date"
    	AmzObjectLockMode                = "X-Amz-Object-Lock-Mode"
    	AmzObjectLockLegalHold           = "X-Amz-Object-Lock-Legal-Hold"
    )
    
    var (
    	// ErrMalformedBucketObjectConfig -indicates that the bucket object lock config is malformed
    	ErrMalformedBucketObjectConfig = errors.New("invalid bucket object lock config")
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  8. internal/lock/lock.go

    	*LockedFile
    	mutex sync.Mutex
    	refs  int // Holds read lock refs.
    }
    
    // IsClosed - Check if the rlocked file is already closed.
    func (r *RLockedFile) IsClosed() bool {
    	r.mutex.Lock()
    	defer r.mutex.Unlock()
    	return r.refs == 0
    }
    
    // IncLockRef - is used by called to indicate lock refs.
    func (r *RLockedFile) IncLockRef() {
    	r.mutex.Lock()
    	r.refs++
    	r.mutex.Unlock()
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  9. .github/workflows/lock.yml

    name: 'Lock Threads'
    
    on:
      schedule:
        - cron: '0 0 * * *'
      workflow_dispatch:
    
    permissions:
      issues: write
    
    concurrency:
      group: lock
    
    jobs:
      action:
        runs-on: ubuntu-latest
        steps:
          - uses: dessant/lock-threads@v3
            with:
              github-token: ${{ github.token }}
              issue-inactive-days: '365'
              exclude-any-issue-labels: 'do-not-close'
    Others
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Jan 30 03:27:43 GMT 2022
    - 447 bytes
    - Viewed (0)
  10. cmd/namespace-lock.go

    	*lsync.LRWMutex
    }
    
    // nsLockMap - namespace lock map, provides primitives to Lock,
    // Unlock, RLock and RUnlock.
    type nsLockMap struct {
    	// Indicates if namespace is part of a distributed setup.
    	isDistErasure bool
    	lockMap       map[string]*nsLock
    	lockMapMutex  sync.Mutex
    }
    
    // Lock the namespace resource.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Jun 05 23:56:35 GMT 2023
    - 9.2K bytes
    - Viewed (0)
Back to top