- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 1,459 for zIndex (0.07 sec)
-
tensorflow/c/c_api.h
// Represents a specific input of an operation. typedef struct TF_Input { TF_Operation* oper; int index; // The index of the input within oper. } TF_Input; // Represents a specific output of an operation. typedef struct TF_Output { TF_Operation* oper; int index; // The index of the output within oper. } TF_Output; // TF_Function is a grouping of operations with defined inputs and outputs.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java
import org.apache.lucene.util.AttributeSource; import org.codelibs.opensearch.extension.kuromoji.index.analysis.KuromojiTokenizerFactory; import org.opensearch.common.settings.Settings; import org.opensearch.common.unit.TimeValue; import org.opensearch.env.Environment; import org.opensearch.index.IndexSettings; import org.opensearch.index.analysis.AbstractTokenizerFactory;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 9.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashSet.java
} int mask = hashTableMask(); int index = CompactHashing.remove( object, /* value= */ null, mask, requireTable(), requireEntries(), requireElements(), /* values= */ null); if (index == -1) { return false; } moveLastEntry(index, mask); size--; incrementModCount();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 20:24:49 UTC 2024 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/ResultSetUtil.java
* @param index * 位置 * @return 指定した位置まで進めたかどうか * @throws SQLRuntimeException * SQL例外が起こった場合。 */ public static boolean absolute(final ResultSet resultSet, final int index) throws SQLRuntimeException { assertArgumentNotNull("resultSet", resultSet); try { return resultSet.absolute(index); } catch (final SQLException ex) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
ci/official/utilities/generate_index_html.sh
# limitations under the License. # ============================================================================== # Generates a handy index.html with a bunch of Kokoro links for GitHub # presubmits. # Usage: generate_index_html.sh /path/to/output/index.html cat > "$1" <<EOF <html> <head> <title>$(basename "$KOKORO_JOB_NAME")</title> </head> <body> <h1>TensorFlow Job Logs and Links</h1>
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Sep 29 20:26:13 UTC 2023 - 2.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.duplicate_host.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 1, "number_of_replicas": 0, "auto_expand_replicas": "0-1" } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.related_content.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 1, "number_of_replicas": 0, "auto_expand_replicas": "0-1" } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_log.user_info.json
{ "settings": { "index": { "refresh_interval": "1s", "number_of_shards": 5, "number_of_replicas": 0, "auto_expand_replicas": "0-1" } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Apr 19 05:21:19 UTC 2018 - 173 bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableMapValues.java
@Override public ImmutableList<V> asList() { final ImmutableList<Entry<K, V>> entryList = map.entrySet().asList(); return new ImmutableAsList<V>() { @Override public V get(int index) { return entryList.get(index).getValue(); } @Override ImmutableCollection<V> delegateCollection() { return ImmutableMapValues.this; } // redeclare to help optimizers with b/310253115
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/JdkBackedImmutableMultiset.java
ImmutableSet<E> result = elementSet; return (result == null) ? elementSet = new ElementSet<>(entries, this) : result; } @Override Entry<E> getEntry(int index) { return entries.get(index); } @Override boolean isPartialView() { return false; } @Override public int size() { return Ints.saturatedCast(size); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 3.3K bytes - Viewed (0)