- Sort Score
- Num 10 results
- Language All
Results 461 - 470 of 3,200 for New (0.01 seconds)
-
samples/guide/src/main/java/okhttp3/recipes/PostString.java
private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { String postBody = "" + "Releases\n" + "--------\n" + "\n" + " * _1.0_ May 6, 2013\n" + " * _1.1_ June 15, 2013\n" + " * _1.2_ August 11, 2013\n"; Request request = new Request.Builder() .url("https://api.github.com/markdown/raw")
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat May 25 18:02:55 GMT 2019 - 1.7K bytes - Click Count (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/inheritance/DefaultInheritanceAssemblerTest.java
private InheritanceAssembler assembler; @BeforeEach void setUp() throws Exception { reader = new DefaultModelReader(); writer = new DefaultModelWriter(); assembler = new DefaultInheritanceAssembler(); } private File getPom(String name) { return new File("src/test/resources/poms/inheritance/" + name + ".xml"); } private Model getModel(String name) throws IOException {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 8.2K bytes - Click Count (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/DefaultToolchainsBuilder.java
if (hasErrors(problems.getProblems())) { throw new ToolchainsBuildingException(problems.getProblems()); } return new DefaultToolchainsBuildingResult(userToolchains, problems.getProblems()); } private PersistedToolchains interpolate(PersistedToolchains toolchains, ProblemCollector problems) { StringWriter stringWriter = new StringWriter(1024 * 4); try {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Mar 05 09:37:42 GMT 2025 - 7.3K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
final String[] format(String moduleName, Iterable<? extends Path> paths) { if (option == null) { throw new IllegalStateException("No option is associated to this path type."); } String prefix = (moduleName == null) ? "" : (moduleName + '='); StringJoiner joiner = new StringJoiner(File.pathSeparator, prefix, ""); joiner.setEmptyValue(""); for (Path p : paths) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Dec 15 11:13:42 GMT 2025 - 15.7K bytes - Click Count (1) -
android/guava-tests/benchmark/com/google/common/base/JoinerBenchmark.java
@BeforeExperiment @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8 void setUp() { String component = Strings.repeat("a", componentLength); String[] raw = new String[count]; Arrays.fill(raw, component); components = Arrays.asList(raw); } /** {@link Joiner} with a string delimiter. */ @Benchmark int joinerWithStringDelimiter(int reps) { int dummy = 0;Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 27 16:19:35 GMT 2024 - 5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ConcurrencyDependencyGraph.java
private final Set<MavenProject> finishedProjects = new HashSet<>(); private final SmartProjectComparator projectComparator; public ConcurrencyDependencyGraph(ProjectBuildList projectBuilds, ProjectDependencyGraph projectDependencyGraph) { this.projectDependencyGraph = projectDependencyGraph; this.projectBuilds = projectBuilds; this.projectComparator = new SmartProjectComparator(projectDependencyGraph); }Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 5.9K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
// ---------------------------------------------------------------------- Map<String, String> userSpecifiedProperties = context.options != null ? new HashMap<>(context.options.userProperties().orElse(new HashMap<>())) : new HashMap<>(); createInterpolator().interpolate(userSpecifiedProperties, paths::get); // ----------------------------------------------------------------------Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 10 07:39:11 GMT 2025 - 25.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java
map = new LazyMap<>(() -> { Map<String, Artifact> tmp = new HashMap<>(); for (Dependency d : dependencyManagement.getDependencies()) { Artifact artifact = repositorySystem.createDependencyArtifact(new org.apache.maven.model.Dependency(d)); if (artifact != null) {
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) -
docs/security/tls_configuration_history.md
##### COMPATIBLE_TLS versions * **NEW:** TLSv1.3 * **NEW:** TLSv1.2 * **NEW:** TLSv1.1 * TLSv1 [OkHttp 3.12][OkHttp312] ------------------------ _2018-11-16_ Added support for TLSv1.3. ##### RESTRICTED_TLS cipher suites * **NEW:** TLS_AES_128_GCM_SHA256[¹][tlsv13_only] * **NEW:** TLS_AES_256_GCM_SHA384[¹][tlsv13_only] * **NEW:** TLS_CHACHA20_POLY1305_SHA256[¹][tlsv13_only]
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 16:35:36 GMT 2022 - 9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java
@Deprecated(since = "4.0.0") class Graph { final Map<String, Set<String>> graph = new LinkedHashMap<>(); synchronized void addEdge(String from, String to) throws CycleDetectedException { if (graph.computeIfAbsent(from, l -> new HashSet<>()).add(to)) { List<String> cycle = visitCycle(graph, Collections.singleton(to), new HashMap<>(), new LinkedList<>()); if (cycle != null) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.4K bytes - Click Count (0)