Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,449 for held (0.25 sec)

  1. docs/contribute/concurrency.md

    This lock guards internal state of each connection. This lock is never held for blocking operations. That means that we acquire the lock, read or write a few fields and release the lock. No I/O and no application-layer callbacks.
    
    #### Http2Stream
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ArtifactCacheLockingAccessCoordinator.java

         *
         * <p>The returned cache may only be used by an action being run from {@link #useCache(org.gradle.internal.Factory)}.
         * In this instance, an exclusive lock will be held on the cache.
         *
         */
        <K, V> IndexedCache<K, V> createCache(String cacheName, Serializer<K> keySerializer, Serializer<V> valueSerializer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/sync/rwmutex.go

    // A RWMutex is a reader/writer mutual exclusion lock.
    // The lock can be held by an arbitrary number of readers or a single writer.
    // The zero value for a RWMutex is an unlocked mutex.
    //
    // A RWMutex must not be copied after first use.
    //
    // If any goroutine calls [RWMutex.Lock] while the lock is already held by
    // one or more readers, concurrent calls to [RWMutex.RLock] will block until
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/tracecpu.go

    	trace.cpuLogWrite[1].Store(trace.cpuLogRead[1])
    }
    
    // traceStartReadCPU creates a goroutine to start reading CPU profile
    // data into an active trace.
    //
    // traceAdvanceSema must be held.
    func traceStartReadCPU() {
    	if !traceEnabled() {
    		throw("traceStartReadCPU called with trace disabled")
    	}
    	// Spin up the logger goroutine.
    	trace.cpuSleep = newWakeableSleep()
    	done := make(chan struct{}, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. okhttp-tls/README.md

    --------
    
    ```kotlin
    implementation("com.squareup.okhttp3:okhttp-tls:4.12.0")
    ```
    
     [held_certificate]: https://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/
     [held_certificate_builder]: https://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-held-certificate/-builder/
     [handshake_certificates]: https://square.github.io/okhttp/4.x/okhttp-tls/okhttp3.tls/-handshake-certificates/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  6. cmd/local-locker.go

    	defer l.mutex.Unlock()
    	var lri []lockRequesterInfo
    
    	resource := args.Resources[0]
    	if lri, reply = l.lockMap[resource]; !reply {
    		// No lock is held on the given name
    		return true, nil
    	}
    	if isWriteLock(lri) {
    		// A write-lock is held, cannot release a read lock
    		return false, fmt.Errorf("RUnlock attempted on a write locked entity: %s", resource)
    	}
    	l.removeEntry(resource, args, &lri)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TrackingHttpHandler.java

    interface TrackingHttpHandler {
        /**
         * Selects a response producer to handle the given request.
         *
         * This method is called under the state lock. The handler is _not_ called under the state lock. That is, the lock is held only while selecting how to handle the request.
         *
         * This method may block until the request is ready to be handled, but must do so using a condition created from the state lock.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/c/tf_buffer.h

    // TF_Buffer holds a pointer to a block of data and its associated length.
    // Typically, the data consists of a serialized protocol buffer, but other data
    // may also be held in a buffer.
    //
    // By default, TF_Buffer itself does not do any memory management of the
    // pointed-to block.  If need be, users of this struct should specify how to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/splice.go

    	}
    	return sb.buf.Write(p)
    }
    
    // Reset resets the buffer to be empty.
    func (sb *spliceBuffer) Reset() {
    	if sb.buf != nil {
    		sb.buf.Reset()
    	}
    	sb.raw = nil
    }
    
    // Bytes returns the data held by the buffer.
    func (sb *spliceBuffer) Bytes() []byte {
    	if sb.buf != nil && len(sb.buf.Bytes()) > 0 {
    		return sb.buf.Bytes()
    	}
    	if sb.raw != nil {
    		return sb.raw
    	}
    	return []byte{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/runtime/tracebuf.go

    type traceBufQueue struct {
    	head, tail *traceBuf
    }
    
    // push queues buf into queue of buffers.
    func (q *traceBufQueue) push(buf *traceBuf) {
    	buf.link = nil
    	if q.head == nil {
    		q.head = buf
    	} else {
    		q.tail.link = buf
    	}
    	q.tail = buf
    }
    
    // pop dequeues from the queue of buffers.
    func (q *traceBufQueue) pop() *traceBuf {
    	buf := q.head
    	if buf == nil {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top