Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for creators (0.15 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying value may never be closed if the {@link Future} is canceled after its operation
       *     begins. Consider replacing code that creates {@link ListenableFuture}s of closeable types,
       *     including those that pass them to this method, with {@link #submit(ClosingCallable,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       *     underlying value may never be closed if the {@link Future} is canceled after its operation
       *     begins. Consider replacing code that creates {@link ListenableFuture}s of closeable types,
       *     including those that pass them to this method, with {@link #submit(ClosingCallable,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    		name := kubecontainer.GetPodFullName(pod)
    		creates, deletes := manager.GetCounts(name)
    		switch i {
    		case 2:
    			if creates != 0 || deletes != 0 {
    				t.Errorf("expected 0 creation and 0 deletion of %q, got %d, %d", name, creates, deletes)
    			}
    		default:
    			if creates != 0 || deletes != 1 {
    				t.Errorf("expected 0 creation and one deletion of %q, got %d, %d", name, creates, deletes)
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        return new LinkedHashMap<>(capacity(expectedSize));
      }
    
      /**
       * Creates a new empty {@link ConcurrentHashMap} instance.
       *
       * @since 3.0
       */
      public static <K, V> ConcurrentMap<K, V> newConcurrentMap() {
        return new ConcurrentHashMap<>();
      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code TreeMap} instance using the natural ordering of its
       * elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Maps.java

        return new LinkedHashMap<>(capacity(expectedSize));
      }
    
      /**
       * Creates a new empty {@link ConcurrentHashMap} instance.
       *
       * @since 3.0
       */
      public static <K, V> ConcurrentMap<K, V> newConcurrentMap() {
        return new ConcurrentHashMap<>();
      }
    
      /**
       * Creates a <i>mutable</i>, empty {@code TreeMap} instance using the natural ordering of its
       * elements.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	}
    	return rr, true
    }
    
    // ExtrelocSimple creates a simple external relocation from r, with the same
    // symbol and addend.
    func ExtrelocSimple(ldr *loader.Loader, r loader.Reloc) loader.ExtReloc {
    	var rr loader.ExtReloc
    	rs := r.Sym()
    	rr.Xsym = rs
    	rr.Xadd = r.Add()
    	rr.Type = r.Type()
    	rr.Size = r.Siz()
    	return rr
    }
    
    // ExtrelocViaOuterSym creates an external relocation from r targeting the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

      /** How long after the last write an entry becomes a candidate for refresh. */
      final long refreshNanos;
    
      /** Entries waiting to be consumed by the removal listener. */
      // TODO(fry): define a new type which creates event objects and automates the clear logic
      final Queue<RemovalNotification<K, V>> removalNotificationQueue;
    
      /**
       * A listener that is invoked when an entry is removed due to expiration or garbage collection of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

      } else {
        bias_const_op = FindOperandOfType<stablehlo::ConstantOp>(op);
      }
      return isa<stablehlo::ConstantOp>(bias_const_op) ? bias_const_op : nullptr;
    }
    
    // Creates a new `tfl.qconst` op for the quantized filter. Transposes the
    // filter value from [i, o] -> [o, i]. This is because we assume `[i, o]`
    // format for `stablehlo.dot_general` (i.e. contracting dimension == 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	}
    	t := typ.common()
    	ch := makechan(t, buffer)
    	return Value{t, ch, flag(Chan)}
    }
    
    // MakeMap creates a new map with the specified type.
    func MakeMap(typ Type) Value {
    	return MakeMapWithSize(typ, 0)
    }
    
    // MakeMapWithSize creates a new map with the specified type
    // and initial space for approximately n elements.
    func MakeMapWithSize(typ Type, n int) Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    // this map.
    using FeedsByNode = absl::flat_hash_map<
        absl::string_view,
        absl::flat_hash_map<int, const std::pair<std::string, ArrayInfo>*>>;
    
    // Creates from a `GraphImportConfig::InputArrays` a mapping from a feeds output
    // tensor name to index and ArrayInfo. Keys and values are backed by
    // `GraphImportConfig::InputArrays`.
    absl::StatusOr<FeedsByNode> GetFeedsByNode(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top