- Sort Score
- Result 10 results
- Languages All
Results 791 - 800 of 2,063 for buildB (0.12 sec)
-
.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) -
guava-tests/test/com/google/common/graph/GraphsTest.java
MutableGraph<Integer> directedGraph = GraphBuilder.directed().allowsSelfLoops(false).build(); directedGraph.putEdge(N1, N2); directedGraph.putEdge(N1, N3); directedGraph.putEdge(N2, N3); directedGraph.addNode(N4); MutableGraph<Integer> expectedClosure = GraphBuilder.directed().allowsSelfLoops(true).build(); expectedClosure.putEdge(N1, N1); expectedClosure.putEdge(N1, N2);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 02 18:21:29 UTC 2024 - 24.7K 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) -
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) -
.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) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java
} parameters.add(parameter); } /** * @return the list parameters as a Map (keyed by {@link Parameter#getName()}) that is built from * {@link #parameters} list on each call. In other words, the map returned is built on fly and is a copy. * Any change to this map is NOT reflected on list and other way around! */ public Map<String, Parameter> getParameterMap() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 21.7K 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) -
compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/DefaultModelResolverTest.java
final Parent parent = Parent.newBuilder() .groupId("ut.simple") .artifactId("artifact") .version("0") .build(); UnresolvableModelException e = assertThrows( UnresolvableModelException.class, () -> newModelResolver().resolveModel(parent, new AtomicReference<>()),
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java
// ---------------------------------------------------------------------- // Build // ---------------------------------------------------------------------- Build build = (Build) ReflectionValueExtractor.evaluate("project.build", project); assertNotNull(build); } /** * <p>testValueExtractorWithAInvalidExpression.</p> *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0)