- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 377 for adts (0.1 sec)
-
fess-crawler-lasta/src/main/resources/crawler/extractor.xml
"audio/vnd.cns.inf1", "audio/vnd.digital-winds", "audio/vnd.dlna.adts", "audio/vnd.dolby.heaac.1", "audio/vnd.dolby.heaac.2", "audio/vnd.dolby.mlp", "audio/vnd.dolby.mps", "audio/vnd.dolby.pl2", "audio/vnd.dolby.pl2x", "audio/vnd.dolby.pl2z", "audio/vnd.dts", "audio/vnd.dts.hd", "audio/vnd.everad.plj", "audio/vnd.hns.audio",
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Aug 01 21:40:30 UTC 2020 - 49K bytes - Viewed (0) -
ci/official/upload.sh
# This script uploads all staged artifacts from all previous builds in the same # job chain to GCS and PyPI. source "${BASH_SOURCE%/*}/utilities/setup.sh" # Calculate the version number for choosing the final directory name. This adds # "-devYYYYMMDD" to the end of the version string for nightly builds. if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Tue Mar 04 22:39:12 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml
<mime-type type="audio/vnd.dlna.adts"/> <mime-type type="audio/vnd.dolby.heaac.1"/> <mime-type type="audio/vnd.dolby.heaac.2"/> <mime-type type="audio/vnd.dolby.mlp"/> <mime-type type="audio/vnd.dolby.mps"/> <mime-type type="audio/vnd.dolby.pl2"/> <mime-type type="audio/vnd.dolby.pl2x"/> <mime-type type="audio/vnd.dolby.pl2z"/> <mime-type type="audio/vnd.dts"> <glob pattern="*.dts"/>
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Mar 13 08:18:01 UTC 2025 - 320.1K bytes - Viewed (1) -
guava/src/com/google/common/util/concurrent/ExecutionList.java
/** * The runnable, executor pairs to execute. This acts as a stack threaded through the {@link * RunnableExecutorPair#next} field. */ @GuardedBy("this") private @Nullable RunnableExecutorPair runnables; @GuardedBy("this") private boolean executed; /** Creates a new, empty {@link ExecutionList}. */ public ExecutionList() {} /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ExecutionList.java
/** * The runnable, executor pairs to execute. This acts as a stack threaded through the {@link * RunnableExecutorPair#next} field. */ @GuardedBy("this") private @Nullable RunnableExecutorPair runnables; @GuardedBy("this") private boolean executed; /** Creates a new, empty {@link ExecutionList}. */ public ExecutionList() {} /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.9K bytes - Viewed (0) -
cmd/data-usage-cache.go
ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) merge(other *allTierStats) { for tier, st := range other.Tiers { ats.Tiers[tier] = ats.Tiers[tier].add(st) } } func (ats *allTierStats) clone() *allTierStats { if ats == nil { return nil } dst := *ats dst.Tiers = make(map[string]tierStats, len(ats.Tiers)) maps.Copy(dst.Tiers, ats.Tiers) return &dst }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 34.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/MoreObjects.java
} /** * Adds a name/value pair to the formatted output in {@code name=value} format. * * @since 18.0 (since 11.0 as {@code Objects.ToStringHelper.add()}). */ @CanIgnoreReturnValue public ToStringHelper add(String name, boolean value) { return addUnconditionalHolder(name, String.valueOf(value)); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
request.setSize(size); return this; } /** * Adds a tag to filter by. * @param tag The tag. * @return This builder instance. */ public PopularWordsRequestBuilder addTag(final String tag) { request.addTag(tag); return this; } /** * Adds a role to filter by. * @param role The role. * @return This builder instance. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java
request.setQuery(query); return this; } /** * Adds a tag to filter by. * @param tag The tag. * @return This builder instance. */ public SuggestRequestBuilder addTag(final String tag) { request.addTag(tag); return this; } /** * Adds a role to filter by. * @param role The role. * @return This builder instance. */
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 4.8K bytes - Viewed (0) -
guava/src/com/google/common/graph/MutableValueGraph.java
/** * A subinterface of {@link ValueGraph} which adds mutation methods. When mutation is not required, * users should prefer the {@link ValueGraph} interface. * * @author James Sexton * @param <N> Node parameter type * @param <V> Value parameter type * @since 20.0 */ @Beta public interface MutableValueGraph<N, V> extends ValueGraph<N, V> { /** * Adds {@code node} if it is not already present. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0)