- Sort Score
- Num 10 results
- Language All
Results 531 - 540 of 2,558 for build2 (0.04 seconds)
-
docs/features/events.md
```java Request washingtonPostRequest = new Request.Builder() .url("https://www.washingtonpost.com/") .build(); client.newCall(washingtonPostRequest).enqueue(new Callback() { ... }); Request newYorkTimesRequest = new Request.Builder() .url("https://www.nytimes.com/") .build(); client.newCall(newYorkTimesRequest).enqueue(new Callback() { ... }); ```Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 7.7K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/PostForm.java
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun May 22 01:29:42 GMT 2016 - 1.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedLongTest.java
private static final ImmutableSet<Long> TEST_LONGS; private static final ImmutableSet<BigInteger> TEST_BIG_INTEGERS; static { ImmutableSet.Builder<Long> testLongsBuilder = ImmutableSet.builder(); ImmutableSet.Builder<BigInteger> testBigIntegersBuilder = ImmutableSet.builder(); // The values here look like 111...11101...010 in binary, where the initial 111...1110 takes
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 11 20:45:32 GMT 2025 - 10.4K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java
if (request.getPom() != null && request.getPom().getBuild() != null) { Build build = request.getPom().getBuild(); result = resolveFromProject(request, build.getPlugins()); if (result == null && build.getPluginManagement() != null) { result = resolveFromProject(request, build.getPluginManagement().getPlugins()); } } return result;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 29 08:17:07 GMT 2025 - 17.6K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/PackageListGenerator.kt
} private fun processDirectory(dir: Path, builder: Trie.Builder) { Files.walkFileTree(dir, object : SimpleFileVisitor<Path>() { override fun visitFile(file: Path, attrs: BasicFileAttributes): FileVisitResult { val zipEntry = ZipEntry(dir.relativize(file).toString()) processEntry(zipEntry, builder)Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 15:53:18 GMT 2025 - 7.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
Build build = project.getBuild().getDelegate(); List<org.apache.maven.api.model.Source> sources = build.getSources(); Path baseDir = project.getBaseDirectory(); Function<ProjectScope, String> outputDirectory = (scope) -> { if (scope == ProjectScope.MAIN) { return build.getOutputDirectory();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 51.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java
// Test with BooleanQuery BooleanQuery.Builder builder = new BooleanQuery.Builder(); Term term1 = new Term("content", "test"); Term term2 = new Term("title", "query"); builder.add(new TermQuery(term1), BooleanClause.Occur.SHOULD); builder.add(new TermQuery(term2), BooleanClause.Occur.SHOULD); BooleanQuery booleanQuery = builder.build(); String[] fields = { "content", "title" };Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 26.7K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java
slf4jLogger.error(""); slf4jLogger.error("After correcting the problems, you can resume the build with the command"); slf4jLogger.error(MessageUtils.builder().a(" ").strong(resumeBuildHint).toString()); } /** * A helper method to determine the value to resume the build with {@code -rf} taking into account the edge case * where multiple modules in the reactor have the same artifactId.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 78.1K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java
configuration.setLocalRepository(getLocalRepository()); initRepoSession(configuration); return projectBuilder.build(pom, allowStub, configuration).getProject(); } /** * Check that we can build ok from the middle pom of a (parent,child,grandchild) hierarchy */ @Test void testBuildFromMiddlePom() throws Exception {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Nov 18 17:20:31 GMT 2025 - 33.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsFileConfigCB.java
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 8.3K bytes - Click Count (0)