Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for withers (0.08 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// indexedTrigger is used for optimizing amount of watchers that needs to process
    	// an incoming event.
    	indexedTrigger *indexedTriggerFunc
    	// watchers is mapping from the value of trigger function that a
    	// watcher is interested into the watchers
    	watcherIdx int
    	watchers   indexedWatchers
    
    	// Defines a time budget that can be spend on waiting for not-ready watchers
    	// while dispatching event before shutting them down.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            return old;
          }
        }
    
        /** Performs a GAS operation on the {@link #waiters} field. */
        @Override
        Waiter gasWaiters(AbstractFuture<?> future, Waiter update) {
          synchronized (future) {
            Waiter old = future.waiters;
            if (old != update) {
              future.waiters = update;
            }
            return old;
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

            }
            return old;
          }
        }
    
        /** Performs a GAS operation on the {@link #waiters} field. */
        @Override
        Waiter gasWaiters(AbstractFuture<?> future, Waiter update) {
          synchronized (future) {
            Waiter old = future.waiters;
            if (old != update) {
              future.waiters = update;
            }
            return old;
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		cacher.processEvent(event)
    	}
    
    	watchers := make([]watch.Interface, 0, watchersCount)
    	for i := 0; i < watchersCount; i++ {
    		w, err := cacher.Watch(context.TODO(), "pods/ns", storage.ListOptions{ResourceVersion: "1000", Predicate: storage.Everything})
    		if err != nil {
    			t.Fatalf("Failed to create watch: %v", err)
    		}
    		defer w.Stop()
    		watchers = append(watchers, w)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    func TestTLS13OnlyClientHelloCipherSuite(t *testing.T) {
    	tls13Tests := []struct {
    		name    string
    		ciphers []uint16
    	}{
    		{
    			name:    "nil",
    			ciphers: nil,
    		},
    		{
    			name:    "empty",
    			ciphers: []uint16{},
    		},
    		{
    			name:    "some TLS 1.2 cipher",
    			ciphers: []uint16{TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    func withMounts(mounts map[string]string) containerAllocateResponseBuilderOption {
    	return func(b *containerAllocateResponseBuilder) {
    		b.mounts = mounts
    	}
    }
    
    // withEnvs sets the envs for the containerAllocateResponseBuilder
    func withEnvs(envs map[string]string) containerAllocateResponseBuilderOption {
    	return func(b *containerAllocateResponseBuilder) {
    		b.envs = envs
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. tensorflow/cc/gradients/math_grad.cc

      is_positive = LogicalAnd(scope, is_positive, OnesLike(scope, is_positive));
      return is_positive;
    }
    
    // Helper function for unsorted segment ops.
    // Gathers params for positive segment ids and gathers 0 for inputs with
    // negative segment id.
    Output GatherDropNegatives(const Scope& scope, const Output& params,
                               Output& zero_clipped_indices, Output& is_positive) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  8. src/crypto/tls/tls_test.go

    				// (cannot call b.Fatal in goroutine)
    				panic(fmt.Errorf("accept: %v", err))
    			}
    			serverConfig := testConfig.Clone()
    			serverConfig.CipherSuites = nil // the defaults may prefer faster ciphers
    			serverConfig.DynamicRecordSizingDisabled = dynamicRecordSizingDisabled
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				panic(fmt.Errorf("handshake: %v", err))
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  9. src/crypto/tls/conn.go

    	paddingLen &= good
    
    	toRemove = int(paddingLen) + 1
    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    	}
    	initialRV := podList.ResourceVersion
    
    	options = storage.ListOptions{
    		ResourceVersion: initialRV,
    		Predicate:       storage.Everything,
    		Recursive:       true,
    	}
    
    	// Create a number of watchers that will not be reading any result.
    	nonReadingWatchers := 50
    	for i := 0; i < nonReadingWatchers; i++ {
    		watcher, err := store.Watch(ctx, "/pods/test-ns", options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top