- Sort Score
- Result 10 results
- Languages All
Results 921 - 930 of 1,928 for buildID (0.11 sec)
-
build-logic-commons/settings.gradle.kts
} includeBuild("../build-logic-settings") // Shared basics for all include("basics") // Platform: defines shared dependency versions include("build-platform") // Compute the identity/version we are building and related details (like current git commit) include("module-identity") // Code quality rules common to :build-logic and the root build include("code-quality-rules")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Nov 06 06:19:29 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Chars.java
int len = array.length; if (len == 0) { return ""; } StringBuilder builder = new StringBuilder(len + separator.length() * (len - 1)); builder.append(array[0]); for (int i = 1; i < len; i++) { builder.append(separator).append(array[i]); } return builder.toString(); } /** * Returns a comparator that compares two {@code char} arrays <a
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Aug 27 16:47:48 UTC 2024 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); return searchEngineClient.getDocument(fessConfig.getIndexDocumentUpdateIndex(), builder -> { builder.setQuery(QueryBuilders.idsQuery().addIds(id)); builder.setFetchSource(fields, null); return true; }).orElse(null); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 16.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/BuildDistributions.kt
) features { publishBuildStatusToGithub(model) } artifactRules = """$artifactRules subprojects/distributions-full/build/distributions/*.zip => distributions platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties """.trimIndent()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 1.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
&& codePoints[i] <= Character.MAX_SURROGATE)); } StringBuilder builder = new StringBuilder(); for (int i = 0; i < codePoints.length; i++) { builder.appendCodePoint(codePoints[i]); } String str = builder.toString(); HashCode hashUtf8 = murmur3_32().hashBytes(str.getBytes(UTF_8));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:29:46 UTC 2024 - 8.3K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/duplicate-plugin-execution.xml
<project> <modelVersion>4.0.0</modelVersion> <artifactId>aid</artifactId> <groupId>gid</groupId> <version>0.1</version> <packaging>pom</packaging> <build> <pluginManagement> <plugins> <plugin> <groupId>build</groupId> <artifactId>managed-plugin</artifactId> <executions> <execution> <phase>test</phase> </execution>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
pom.xml
<data> <type>files</type> <paths> <path>${project.build.directory}/fess/WEB-INF/classes/fess_config.properties</path> <path>${project.build.directory}/fess/WEB-INF/classes/fess_env_crawler.properties</path> <path>${project.build.directory}/fess/WEB-INF/classes/fess_env_suggest.properties</path> <path>${project.build.directory}/fess/WEB-INF/classes/fess_env_thumbnail.properties</path>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 02:16:03 UTC 2024 - 49.1K bytes - Viewed (0) -
.gitignore
# Gradle # ------ .gradle /build /*/build /*/*/build /*/*/*/build /*/*/*/*/build /*/docs/src/samples/**/build /*/docs/src/snippets/**/build /*/internal-android-performance-testing/build-android-libs test-splits/ /gradle/verification-keyring.gpg # Kotlin # ------ .kotlin # IDEA # ---- !/.idea /.idea/*
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 16 09:50:46 UTC 2024 - 1.6K bytes - Viewed (0) -
.teamcity/pluginData/Check/plugin-settings.xml
<state type="buildPinned" enabled="false" /> <state type="buildUnpinned" enabled="false" /> </states> <build-types enabled-for-all="false" enabled-for-subprojects="false"> <build-type id="bt270451" /> </build-types> </webhook> <webhook url="https://gradle-bot.grdev.net/teamcity" enabled="true" template="legacy-tailored-json"> <states>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue May 18 02:15:16 UTC 2021 - 2.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java
super.setUp(); fakeTicker = new FakeTicker(); } public void testLoader() throws ExecutionException { final Cache<Integer, Integer> cache = CacheBuilder.newBuilder().build(); Callable<Integer> loader = new Callable<Integer>() { private int i = 0; @Override public Integer call() throws Exception { return ++i; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 14.4K bytes - Viewed (0)