- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 1,434 for created (0.04 sec)
-
events.md
event. This is handy, but it won’t work if multiple calls are executing concurrently. To accommodate this, use a `Factory` to create a new `EventListener` instance for each `Call`. This allows each listener to keep call-specific state. L108: L109:This [sample factory](https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PrintEvents.java) creates a unique ID for each call and uses that ID to differentiate calls in log messages. L110: L111:```java L112:class PrintingEventListener...github.com/square/okhttp/docs/features/events.mdSun Feb 06 02:19:09 UTC 2022 7.7K bytes -
HashMultimap.java
Object> L55: extends HashMultimapGwtSerializationDependencies<K, V> { L56: private static final int DEFAULT_VALUES_PER_KEY = 2; L57: L58: @VisibleForTesting transient int expectedValuesPerKey = DEFAULT_VALUES_PER_KEY; L59: L60: /** L61: * Creates a new, empty {@code HashMultimap} with the default initial capacities. L62: * L63: * <p>You may also consider the equivalent {@code L64: * MultimapBuilder.hashKeys().hashSetValues().build()}, which provides more control over the L65: * underlying...github.com/google/guava/guava/src/com/google/co...Fri Aug 02 10:02:49 UTC 2024 6.1K bytes -
CHANGELOG-1.30.md
matched the Pod's resource requirements. ([#119177](https://github.com/kubernetes/kubernetes/pull/119177), [@carlory](https://github.com/carlory)) L1147:- Kube-scheduler now retries scheduling Pods rejected by the PodTopologySpread plugin when related Pods are created, deleted, updated, or when a node matches the specified topologyKey. ([#122195](https://github.com/kubernetes/kubernetes/pull/122195), [@nayihz](https://github.com/nayihz)) L1148:- Kubeadm now prints all the kubelets and nodes that need to...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Wed Oct 23 04:40:14 UTC 2024 309.1K bytes -
IoTestCase.java
L106: return file; L107: } L108: L109: /** L110: * Creates a new temp dir for testing. The returned directory and all contents of it will be L111: * deleted in the tear-down for this test. L112: */ L113: protected final File createTempDir() throws IOException { L114: File tempFile = File.createTempFile("IoTestCase", ""); L115: if (!tempFile.delete() || !tempFile.mkdir()) { L116: throw new IOException("failed to create temp dir"); L117: } L118: filesToDelete.add(tempFile);...github.com/google/guava/android/guava-tests/tes...Fri May 31 12:36:13 UTC 2024 5.6K bytes -
SetMultimapTestSuiteBuilder.java
EntriesGenerator( L115: OneSizeTestContainerGenerator<SetMultimap<K, V>, Entry<K, V>> multimapGenerator) { L116: super(multimapGenerator); L117: } L118: L119: @Override L120: public Set<Entry<K, V>> create(Object... elements) { L121: return (Set<Entry<K, V>>) super.create(elements); L122: } L123: } L124: L125: static class MultimapGetGenerator<K, V> L126: extends MultimapTestSuiteBuilder.MultimapGetGenerator<K, V, SetMultimap<K, V>> L127: implements TestSetGenerator<V>...github.com/google/guava/guava-testlib/src/com/g...Wed Oct 30 16:15:19 UTC 2024 5.6K bytes -
TreeBasedTable.java
L97: */ L98: @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989 L99: public static <R extends Comparable, C extends Comparable, V> TreeBasedTable<R, C, V> create() { L100: return new TreeBasedTable<>(Ordering.natural(), Ordering.natural()); L101: } L102: L103: /** L104: * Creates an empty {@code TreeBasedTable} that is ordered by the specified comparators. L105: * L106: * @param rowComparator the comparator that orders the row keys L107: * @param columnComparator...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 16:15:19 UTC 2024 11.5K bytes -
CompactLinkedHashSet.java
L54:@ElementTypesAreNonnullByDefault L55:class CompactLinkedHashSet<E extends @Nullable Object> extends CompactHashSet<E> { L56: L57: /** Creates an empty {@code CompactLinkedHashSet} instance. */ L58: public static <E extends @Nullable Object> CompactLinkedHashSet<E> create() { L59: return new CompactLinkedHashSet<>(); L60: } L61: L62: /** L63: * Creates a <i>mutable</i> {@code CompactLinkedHashSet} instance containing the elements of the L64: * given collection in the order returned by...github.com/google/guava/guava/src/com/google/co...Tue Jul 09 00:15:47 UTC 2024 9.7K bytes -
IoTestCase.java
L106: return file; L107: } L108: L109: /** L110: * Creates a new temp dir for testing. The returned directory and all contents of it will be L111: * deleted in the tear-down for this test. L112: */ L113: protected final File createTempDir() throws IOException { L114: File tempFile = File.createTempFile("IoTestCase", ""); L115: if (!tempFile.delete() || !tempFile.mkdir()) { L116: throw new IOException("failed to create temp dir"); L117: } L118: filesToDelete.add(tempFile);...github.com/google/guava/guava-tests/test/com/go...Fri May 31 12:36:13 UTC 2024 5.6K bytes -
CreateForm.java
L42: @Max(value = 2147483647) L43: @ValidateTypeFailure L44: public Integer sortOrder; L45: L46: @Size(max = 1000) L47: public String createdBy; L48: L49: @ValidateTypeFailure L50: public Long createdTime; L51: L52: public void initialize() { L53: crudMode = CrudMode.CREATE; L54: sortOrder = 0; L55: createdBy = ComponentUtil.getSystemHelper().getUsername(); L56: createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong(); L57: } L58:}...github.com/codelibs/fess/src/main/java/org/code...Thu Feb 22 01:53:18 UTC 2024 1.7K bytes -
ConcurrentHashMultiset.java
* @param elements the elements that the multiset should contain L105: */ L106: public static <E> ConcurrentHashMultiset<E> create(Iterable<? extends E> elements) { L107: ConcurrentHashMultiset<E> multiset = ConcurrentHashMultiset.create(); L108: Iterables.addAll(multiset, elements); L109: return multiset; L110: } L111: L112: /** L113: * Creates a new, empty {@code ConcurrentHashMultiset} using {@code countMap} as the internal L114: * backing map. L115: * L116: * <p>This instance...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 16:15:19 UTC 2024 21.1K bytes