Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 256 for decreasing (0.24 sec)

  1. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      // Creates a new tensor-like object that takes `size` bytes. Returns a
      // contiguous increasing index for each new object, starting at 0.
      int AddTensor(SizeT size);
    
      // Creates an operation. If `is_stateful`, the operation (and any block of
      // operations containing it) will never be considered for rematerialization.
      // Returns a contiguous increasing index for each new object, starting at 0.
      int AddOperation(bool is_stateful);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. src/os/user/cgo_lookup_unix.go

    		// Truncate.  If this truly isn't enough, retryWithBuffer will error on the first run.
    		return maxBufferSize
    	}
    	return _C_size_t(sz)
    }
    
    // retryWithBuffer repeatedly calls f(), increasing the size of the
    // buffer each time, until f succeeds, fails with a non-ERANGE error,
    // or the buffer exceeds a reasonable limit.
    func retryWithBuffer(kind bufferKind, f func([]byte) syscall.Errno) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/net/http/main_test.go

    		time.Sleep(1 * time.Millisecond)
    	}
    	t.Errorf("Test appears to have leaked %s:\n%s", bad, stacks)
    }
    
    // waitCondition waits for fn to return true,
    // checking immediately and then at exponentially increasing intervals.
    func waitCondition(t testing.TB, delay time.Duration, fn func(time.Duration) bool) {
    	t.Helper()
    	start := time.Now()
    	var since time.Duration
    	for !fn(since) {
    		time.Sleep(delay)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/configuration/mutating_webhook_manager.go

    // getMutatingWebhookConfigurations returns the webhook accessors for a given list of
    // mutating webhook configurations.
    //
    // This function will, first, try to load the webhook accessors from the cache and avoid
    // recreating them, which can be expessive (requiring CEL expression recompilation).
    func (m *mutatingWebhookConfigurationManager) getMutatingWebhookConfigurations(configurations []*v1.MutatingWebhookConfiguration) []webhook.WebhookAccessor {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 22:43:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/math/big/prime.go

    	if n[0]&1 == 0 {
    		return n.cmp(natTwo) == 0
    	}
    
    	// Baillie-OEIS "method C" for choosing D, P, Q,
    	// as in https://oeis.org/A217719/a217719.txt:
    	// try increasing P ≥ 3 such that D = P² - 4 (so Q = 1)
    	// until Jacobi(D, n) = -1.
    	// The search is expected to succeed for non-square n after just a few trials.
    	// After more than expected failures, check whether n is square
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 02 14:43:52 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  6. src/go/types/typeparam.go

    import "sync/atomic"
    
    // Note: This is a uint32 rather than a uint64 because the
    // respective 64 bit atomic instructions are not available
    // on all platforms.
    var lastID atomic.Uint32
    
    // nextID returns a value increasing monotonically by 1 with
    // each call, starting with 1. It may be called concurrently.
    func nextID() uint64 { return uint64(lastID.Add(1)) }
    
    // A TypeParam represents a type parameter type.
    type TypeParam struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    	// propagate them to the places that need them, rather than
    	// instantiating them multiple times.
    	usePersistentConfig bool
    	// Allows increasing burst used for discovery, this is useful
    	// in clusters with many registered resources
    	discoveryBurst int
    	// Allows increasing qps used for discovery, this is useful
    	// in clusters with many registered resources
    	discoveryQPS float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/StripedTest.java

          for (int i = 0; i < striped.size(); i++) {
            indexByLock.put(striped.getAt(i), i);
          }
    
          // ensure that bulkGet returns locks in monotonically increasing order
          for (int objectsNum = 1; objectsNum <= striped.size() * 2; objectsNum++) {
            Set<Object> objects = Sets.newHashSetWithExpectedSize(objectsNum);
            for (int i = 0; i < objectsNum; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/StripedTest.java

          for (int i = 0; i < striped.size(); i++) {
            indexByLock.put(striped.getAt(i), i);
          }
    
          // ensure that bulkGet returns locks in monotonically increasing order
          for (int objectsNum = 1; objectsNum <= striped.size() * 2; objectsNum++) {
            Set<Object> objects = Sets.newHashSetWithExpectedSize(objectsNum);
            for (int i = 0; i < objectsNum; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
      // have an increasing counteri for the attribute value.  Therefore there is no
      // collision in
      // `_xla_outside_compilation` attribute between automatically and manually
      // marking ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top