- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 615 for sata (0.02 sec)
-
DataConfig.java
@Override L114: public String getIndexingTarget(final String input) { L115: // always return true L116: return Constants.TRUE; L117: } L118: L119: @Override L120: public String getConfigId() { L121: return ConfigType.DATA.getConfigId(getId()); L122: } L123: L124: public Map<String, String> getHandlerParameterMap() { L125: if (handlerParameterMap == null) { L126: handlerParameterMap = ParameterUtil.parse(getHandlerParameter()); L127: }...github.com/codelibs/fess/src/main/java/org/code...Sat Oct 12 01:54:15 UTC 2024 18.5K bytes -
HashCode.java
L73: public abstract byte[] asBytes(); L74: L75: /** L76: * Copies bytes from this hash code into {@code dest}. L77: * L78: * @param dest the byte array into which the hash code will be written L79: * @param offset the start offset in the data L80: * @param maxLength the maximum number of bytes to write L81: * @return the number of bytes written to {@code dest} L82: * @throws IndexOutOfBoundsException if there is not enough room in {@code dest} L83: */ L84: @CanIgnoreReturnValue...github.com/google/guava/guava/src/com/google/co...Wed Oct 30 19:54:59 UTC 2024 12.6K bytes -
esclient.xml
isting_shards_allocator.batch_enabled":"true", L11: <!-- L12: "node.name":"search_engine", L13: "discovery.seed_hosts":"search_engine", L14: "cluster.initial_cluster_manager_nodes":"search_engine", L15: "node.roles":"cluster_manager,data,ingest,ml", L16: --> L17: "indices.breaker.total.limit":"100%", L18: "action.auto_create_index":"-*"} L19: </property> L20: <!-- Dictionaries --> L21: <postConstruct name="addConfigFile"> L22: <arg>"fess"</arg> L23: <arg>"mapping.txt"</arg>...github.com/codelibs/fess/src/main/resources/esc...Mon Oct 21 12:20:52 UTC 2024 16K bytes -
HashCode.java
L73: public abstract byte[] asBytes(); L74: L75: /** L76: * Copies bytes from this hash code into {@code dest}. L77: * L78: * @param dest the byte array into which the hash code will be written L79: * @param offset the start offset in the data L80: * @param maxLength the maximum number of bytes to write L81: * @return the number of bytes written to {@code dest} L82: * @throws IndexOutOfBoundsException if there is not enough room in {@code dest} L83: */ L84: @CanIgnoreReturnValue...github.com/google/guava/android/guava/src/com/g...Wed Oct 30 19:54:59 UTC 2024 12.6K bytes -
AbstractBiMap.java
throws IOException { L497: stream.defaultWriteObject(); L498: stream.writeObject(inverse()); L499: } L500: L501: @GwtIncompatible // java.io.ObjectInputStream L502: @J2ktIncompatible L503: @SuppressWarnings("unchecked") // reading data stored by writeObject L504: private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException { L505: stream.defaultReadObject(); L506: setInverse((AbstractBiMap<V, K>) requireNonNull(stream.readObject())); L507:...github.com/google/guava/guava/src/com/google/co...Thu Aug 24 01:40:03 UTC 2023 14.6K bytes -
URLConnectionTest.kt
L1928: .addHeader("Expires: Mon, 26 Jul 1997 05:00:00 GMT") L1929: .addHeader("icy-metaint:16000") L1930: .body("mp3 data") L1931: .build(), L1932: ) L1933: val response = getResponse(newRequest("/")) L1934: assertThat(response.code).isEqualTo(200) L1935: assertThat(response.message).isEqualTo("OK") L1936: assertContent("mp3 data", response) L1937: } L1938: L1939: @Test L1940: fun ntripr1() { L1941: server.enqueue( L1942: MockResponse.Builder() L1943:...github.com/square/okhttp/okhttp/src/test/java/o...Sat Jan 20 10:30:28 UTC 2024 131.7K bytes -
LinkedHashMultimap.java
L46:import org.checkerframework.checker.nullness.qual.Nullable; L47: L48:/** L49: * Implementation of {@code Multimap} that does not allow duplicate key-value entries and that L50: * returns collections whose iterators follow the ordering in which the data was added to the L51: * multimap. L52: * L53: * <p>The collections returned by {@code keySet}, {@code keys}, and {@code asMap} iterate through L54: * the keys in the order they were first added to the multimap. Similarly, {@code get}, {@code L55: *...github.com/google/guava/guava/src/com/google/co...Thu Feb 22 21:19:52 UTC 2024 24.3K bytes -
CHANGELOG-1.17.md
sandbox for pods with RestartPolicyOnFailure after all containers succeeded ([#92614](https://github.com/kubernetes/kubernetes/pull/92614), [@tnqn](https://github.com/tnqn)) [SIG Node and Testing] L542:- New Azure instance types do now have correct max data disk count information. ([#94340](https://github.com/kubernetes/kubernetes/pull/94340), [@ialidzhikov](https://github.com/ialidzhikov)) [SIG Cloud Provider and Storage] L543: L544:### Other (Cleanup or Flake) L545: L546:- In GKE alpha clusters it will...github.com/kubernetes/kubernetes/CHANGELOG/CHAN...Thu Jan 28 10:44:33 UTC 2021 346.2K bytes 1 views -
clipboard.min.js
n(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:["copy","cut"],e="string"==typeof t?[t]:t,n=!!document.queryCommandSupported;return e.forEach(function(t){n=n&&!!document.queryCommandSupported(t)}),n}}]),o}();function s(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}t.exports=l},function(t,e,n){"use strict";var o,r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&...github.com/codelibs/fess/src/main/webapp/js/cli...Sat May 28 04:16:16 UTC 2022 10.5K bytes -
MapMakerInternalMap.java
supports non-blocking reads and concurrent writes L87: * across different segments. L88: * L89: * The page replacement algorithm's data structures are kept casually consistent with the map. The L90: * ordering of writes to a segment is sequentially consistent. An update to the map and recording L91: * of reads may not be immediately reflected on the algorithm's data structures. These structures L92: * are guarded by a lock and operations are applied in batches to avoid lock contention. The L93:...github.com/google/guava/guava/src/com/google/co...Fri Oct 18 20:24:49 UTC 2024 90.8K bytes