Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,735 for itemout (0.29 sec)

  1. internal/dsync/drwmutex_test.go

    	if !drwm1.GetRLock(ctx1, cancel1, id, source, Options{Timeout: time.Second}) {
    		panic("Failed to acquire read lock")
    	}
    	// fmt.Println("1st read lock acquired, waiting...")
    
    	drwm2 := NewDRWMutex(ds, "simplelock")
    	ctx2, cancel2 := context.WithCancel(context.Background())
    	if !drwm2.GetRLock(ctx2, cancel2, id, source, Options{Timeout: time.Second}) {
    		panic("Failed to acquire read lock")
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 24 03:49:07 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
    	}
    	result = &v1beta1.CustomResourceDefinitionList{}
    	err = c.client.Get().
    		Resource("customresourcedefinitions").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

      }
    
      /** @since 28.0 */
      @Override
      public final void awaitRunning(Duration timeout) throws TimeoutException {
        Service.super.awaitRunning(timeout);
      }
    
      /** @since 15.0 */
      @Override
      public final void awaitRunning(long timeout, TimeUnit unit) throws TimeoutException {
        delegate.awaitRunning(timeout, unit);
      }
    
      /** @since 15.0 */
      @Override
      public final void awaitTerminated() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. tests/integration/security/remote_jwks/remote_jwks_test.go

    								"X-Test-Payload":      payload1,
    							}))
    					},
    				},
    				{
    					name:       "remote-jwks-with-service-entry",
    					policyFile: "./testdata/requestauthn-with-se-timeout.yaml.tmpl",
    					timeout:    "10ms",
    					delay:      "30ms",
    					customizeCall: func(t framework.TestContext, from echo.Instance, opts *echo.CallOptions) {
    						opts.HTTP.Path = "/valid-token-forward-remote-jwks"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/concurrent/JavaSystemPropertiesAsyncIOScopeSettingsTest.kt

        @JvmField
        val setSystemProperties = SetSystemProperties()
    
        @Test
        fun `use default timeout when property is not set`() {
            val settings = JavaSystemPropertiesAsyncIOScopeSettings()
            assertEquals(DEFAULT_IO_ACTION_TIMEOUT, settings.ioActionTimeoutMs)
        }
    
        @Test
        fun `use default timeout when property is an empty string`() {
            System.setProperty(IO_ACTION_TIMEOUT_SYSTEM_PROPERTY, "")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. releasenotes/notes/26001.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: pilot
    issue:
      - 25339
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 222 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/test_deadline.txt

    [short] skip
    
    go test -timeout=0 -run=TestNoDeadline
    go test -timeout=1m -run=TestDeadlineWithinMinute
    go test -timeout=1m -run=TestSubtestDeadlineWithinMinute
    
    -- go.mod --
    module m
    
    go 1.16
    -- deadline_test.go --
    package testing_test
    
    import (
    	"testing"
    	"time"
    )
    
    func TestNoDeadline(t *testing.T) {
    	d, ok := t.Deadline()
    	if ok || !d.IsZero() {
    		t.Fatalf("t.Deadline() = %v, %v; want 0, false", d, ok)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. pilot/pkg/model/jwks_resolver.go

    func (r *JwksResolver) GetPublicKey(issuer string, jwksURI string, timeout time.Duration) (string, error) {
    	now := time.Now()
    	key := jwtKey{issuer: issuer, jwksURI: jwksURI}
    	if val, found := r.keyEntries.Load(key); found {
    		e := val.(jwtPubKeyEntry)
    		// Update cached key's last used time.
    		e.lastUsedTime = now
    		e.timeout = timeout
    		r.keyEntries.Store(key, e)
    		if e.pubKey == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/MultipartReader.kt

          }
    
          override fun timeout(): Timeout = timeout
        }
    
        /**
         * Returns a value in [0..maxByteCount] with the number of bytes that can be read from [source] in
         * the current part. If this returns 0 the current part is exhausted; otherwise it has at least
         * one byte left to read.
         */
        private fun currentPartBytesRemaining(maxResult: Long): Long {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java

      @Override
      public boolean offer(E e, long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().offer(e, timeout, unit);
      }
    
      @CanIgnoreReturnValue // TODO(kak): consider removing this
      @Override
      @CheckForNull
      public E poll(long timeout, TimeUnit unit) throws InterruptedException {
        return delegate().poll(timeout, unit);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top