- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,192 for supe (0.02 sec)
-
compat/maven-model-builder/src/site/apt/super-pom.apt.vm
- ~~ KIND, either express or implied. See the License for the
- ~~ specific language governing permissions and limitations
- ~~ under the License.
- -----
- Super POM
- -----
- Hervé Boutemy
- -----
- 2011-09-12
- -----
- Super POM
- All models implicitly inherit from a super-POM:
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSortedAsList.java
- ImmutableSortedAsList(ImmutableSortedSet<E> backingSet, ImmutableList<E> backingList) {
- super(backingSet, backingList);
- }
- @Override
- ImmutableSortedSet<E> delegateCollection() {
- return (ImmutableSortedSet<E>) super.delegateCollection();
- }
- @Override
- public Comparator<? super E> comparator() {
- return delegateCollection().comparator();
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3.6K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java
- //
- // p4 inherits from p3
- // p3 inherits from p2
- // p2 inherits from p1
- // p1 inherits from p0
- // p0 inherits from super model
- //
- // or we can show it graphically as:
- //
- // p4 ---> p3 ---> p2 ---> p1 ---> p0 --> super model
- //
- // ----------------------------------------------------------------------
- @Test
- void testProjectInheritance() throws Exception {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.5K bytes - Viewed (0) -
api/maven-api-plugin/src/test/java/org/apache/maven/api/plugin/descriptor/another/ExtendedPluginDescriptorTest.java
- super(builder);
- this.additionalField = builder.additionalField;
- }
- public String getAdditionalField() {
- return additionalField;
- }
- public static class Builder extends PluginDescriptor.Builder {
- protected String additionalField;
- public Builder() {
- super(false);
- }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 07:05:43 UTC 2024 - 2.7K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java
- * anywhere else in the lineage. We are just making sure that values
- * down in the lineage are bubbling up where they should.
- *
- */
- @Deprecated
- class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
- // ----------------------------------------------------------------------
- //
- // p1 inherits from p0
- // p0 inherits from super model
- //
- // or we can show it graphically as:
- //
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.4K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java
- MessageBuilderFactory messageBuilderFactory, PrintWriter out, boolean printResourceNames) {
- super(messageBuilderFactory, out);
- this.printResourceNames = printResourceNames;
- }
- @Override
- public void transferInitiated(TransferEvent event) {
- overridePreviousTransfer(event);
- super.transferInitiated(event);
- }
- @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java
- * @param config
- * @param command
- */
- public ServerMessageBlock2Response ( Configuration config, int command ) {
- super(config, command);
- }
- /**
- * @param config
- */
- public ServerMessageBlock2Response ( Configuration config ) {
- super(config);
- }
- /**
- * {@inheritDoc}
- *
- * @see jcifs.internal.CommonServerMessageBlockResponse#getNextResponse()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 7.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java
- throw new RuntimeException("I bet you didn't think Thread.interrupt could throw");
- }
- void doBegin() {
- super.begin();
- }
- }
- /**
- * Because Thread.interrupt() can invoke arbitrary code, it can be slow (e.g. perform IO). To
- * protect ourselves from that we want to make sure that tasks don't spin too much waiting for the
- * interrupting thread to complete the protocol.
- */
- /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 6.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java
- return String.valueOf(hash);
- }
- }
- static class SlowElement extends Element {
- SlowElement(int hash) {
- super(hash);
- }
- @Override
- public boolean equals(@Nullable Object obj) {
- return slowItDown() != 1 && super.equals(obj);
- }
- @Override
- public int hashCode() {
- return slowItDown() + hash;
- }
- @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SpecialRandom.java
- /**
- * Utility class for being able to seed a {@link Random} value with a passed in seed from a
- * benchmark parameter.
- *
- * <p>TODO: Remove this class once Caliper has a better way.
- *
- * @author Nicholaus Shupe
- */
- public final class SpecialRandom extends Random {
- public static SpecialRandom valueOf(String s) {
- return (s.length() == 0) ? new SpecialRandom() : new SpecialRandom(Long.parseLong(s));
- }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 1.4K bytes - Viewed (0)