-
Notifications
You must be signed in to change notification settings - Fork 512
Pushing a branch for adding the IndexedLinkedList. #664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
22acfd5
Pushing a branch for adding the IndexedLinkedList.
coderodde fbd5f22
Done for today.
coderodde 49e1326
Rewriting the Junit4 tests to Junit5.
coderodde aec6b04
Unit tests now using Junit5. The build passes.
coderodde b5c6757
Merge branch 'apache:master' into add-indexed-linked-list
coderodde File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * https://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project-shared-configuration> | ||
| <!-- | ||
| This file contains additional configuration written by modules in the NetBeans IDE. | ||
| The configuration is intended to be shared among all the users of project and | ||
| therefore it is assumed to be part of version control checkout. | ||
| Without this configuration present, some functionality in the IDE may be limited or fail altogether. | ||
| --> | ||
| <properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1"> | ||
| <!-- | ||
| Properties that influence various parts of the IDE, especially code formatting and the like. | ||
| You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up. | ||
| That way multiple projects can share the same settings (useful for formatting rules for example). | ||
| Any value defined here will override the pom.xml file value but is only applicable to the current project. | ||
| --> | ||
| <netbeans.hint.jdkPlatform>JDK_8</netbeans.hint.jdkPlatform> | ||
| </properties> | ||
| </project-shared-configuration> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,71 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one or more | ||
| * contributor license agreements. See the NOTICE file distributed with | ||
| * this work for additional information regarding copyright ownership. | ||
| * The ASF licenses this file to You under the Apache License, Version 2.0 | ||
| * (the "License"); you may not use this file except in compliance with | ||
| * the License. You may obtain a copy of the License at | ||
| * | ||
| * https://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <actions> | ||
| <action> | ||
| <actionName>run</actionName> | ||
| <packagings> | ||
| <packaging>jar</packaging> | ||
| </packagings> | ||
| <goals> | ||
| <goal>process-classes</goal> | ||
| <goal>org.codehaus.mojo:exec-maven-plugin:3.5.1:exec</goal> | ||
| </goals> | ||
| <properties> | ||
| <exec.vmArgs></exec.vmArgs> | ||
| <exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args> | ||
| <exec.appArgs></exec.appArgs> | ||
| <exec.mainClass>org.apache.commons.collections4.list.jmh.TreeListVsIndexedLinkedListBenchmark</exec.mainClass> | ||
| <exec.executable>java</exec.executable> | ||
| </properties> | ||
| </action> | ||
| <action> | ||
| <actionName>debug</actionName> | ||
| <packagings> | ||
| <packaging>jar</packaging> | ||
| </packagings> | ||
| <goals> | ||
| <goal>process-classes</goal> | ||
| <goal>org.codehaus.mojo:exec-maven-plugin:3.5.1:exec</goal> | ||
| </goals> | ||
| <properties> | ||
| <exec.vmArgs>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</exec.vmArgs> | ||
| <exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args> | ||
| <exec.appArgs></exec.appArgs> | ||
| <exec.mainClass>org.apache.commons.collections4.list.jmh.TreeListVsIndexedLinkedListBenchmark</exec.mainClass> | ||
| <exec.executable>java</exec.executable> | ||
| <jpda.listen>true</jpda.listen> | ||
| </properties> | ||
| </action> | ||
| <action> | ||
| <actionName>profile</actionName> | ||
| <packagings> | ||
| <packaging>jar</packaging> | ||
| </packagings> | ||
| <goals> | ||
| <goal>process-classes</goal> | ||
| <goal>org.codehaus.mojo:exec-maven-plugin:3.5.1:exec</goal> | ||
| </goals> | ||
| <properties> | ||
| <exec.vmArgs></exec.vmArgs> | ||
| <exec.args>${exec.vmArgs} -classpath %classpath ${exec.mainClass} ${exec.appArgs}</exec.args> | ||
| <exec.mainClass>org.apache.commons.collections4.list.jmh.TreeListVsIndexedLinkedListBenchmark</exec.mainClass> | ||
| <exec.executable>java</exec.executable> | ||
| <exec.appArgs></exec.appArgs> | ||
| </properties> | ||
| </action> | ||
| </actions> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove these edits.