Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,771 for held (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. okhttp-tls/src/main/kotlin/okhttp3/tls/HandshakeCertificates.kt

     * that they own the hostnames that they represent. Server authentication is required.
     *
     * To perform server authentication:
     *
     *  * The server's handshake certificates must have a [held certificate][HeldCertificate] (a
     *    certificate and its private key). The certificate's subject alternative names must match the
     *    server's hostname. The server must also have is a (possibly-empty) chain of intermediate
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/resources/ResourceLock.java

         * Attempt to lock this resource, if not already.  Does not block.
         *
         * @return true if resource is now locked, false otherwise.
         */
        boolean tryLock();
    
        /**
         * Unlock this resource if it's held by the calling thread.
         */
        void unlock();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. plugin/pkg/admission/eventratelimit/cache.go

    	get(key interface{}) flowcontrol.RateLimiter
    }
    
    // singleCache is a cache that only stores a single, constant item
    type singleCache struct {
    	// the single rate limiter held by the cache
    	rateLimiter flowcontrol.RateLimiter
    }
    
    func (c *singleCache) get(key interface{}) flowcontrol.RateLimiter {
    	return c.rateLimiter
    }
    
    // lruCache is a least-recently-used cache
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 08 02:31:37 UTC 2021
    - 1.6K bytes
    - Viewed (0)
Back to top