Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,192 for supe (0.02 sec)

  1. compat/maven-model-builder/src/site/apt/super-pom.apt.vm

    1. ~~ KIND, either express or implied. See the License for the
    2. ~~ specific language governing permissions and limitations
    3. ~~ under the License.
    4.  
    5. -----
    6. Super POM
    7. -----
    8. Hervé Boutemy
    9. -----
    10. 2011-09-12
    11. -----
    12.  
    13. Super POM
    14.  
    15. 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)
  2. guava/src/com/google/common/collect/ImmutableSortedAsList.java

    1. ImmutableSortedAsList(ImmutableSortedSet<E> backingSet, ImmutableList<E> backingList) {
    2. super(backingSet, backingList);
    3. }
    4.  
    5. @Override
    6. ImmutableSortedSet<E> delegateCollection() {
    7. return (ImmutableSortedSet<E>) super.delegateCollection();
    8. }
    9.  
    10. @Override
    11. public Comparator<? super E> comparator() {
    12. return delegateCollection().comparator();
    13. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t00/ProjectInheritanceTest.java

    1. //
    2. // p4 inherits from p3
    3. // p3 inherits from p2
    4. // p2 inherits from p1
    5. // p1 inherits from p0
    6. // p0 inherits from super model
    7. //
    8. // or we can show it graphically as:
    9. //
    10. // p4 ---> p3 ---> p2 ---> p1 ---> p0 --> super model
    11. //
    12. // ----------------------------------------------------------------------
    13.  
    14. @Test
    15. 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)
  4. api/maven-api-plugin/src/test/java/org/apache/maven/api/plugin/descriptor/another/ExtendedPluginDescriptorTest.java

    1. super(builder);
    2. this.additionalField = builder.additionalField;
    3. }
    4.  
    5. public String getAdditionalField() {
    6. return additionalField;
    7. }
    8.  
    9. public static class Builder extends PluginDescriptor.Builder {
    10. protected String additionalField;
    11.  
    12. public Builder() {
    13. super(false);
    14. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Tue Aug 27 07:05:43 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t03/ProjectInheritanceTest.java

    1. * anywhere else in the lineage. We are just making sure that values
    2. * down in the lineage are bubbling up where they should.
    3. *
    4. */
    5. @Deprecated
    6. class ProjectInheritanceTest extends AbstractProjectInheritanceTestCase {
    7. // ----------------------------------------------------------------------
    8. //
    9. // p1 inherits from p0
    10. // p0 inherits from super model
    11. //
    12. // or we can show it graphically as:
    13. //
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/ConsoleMavenTransferListener.java

    1. MessageBuilderFactory messageBuilderFactory, PrintWriter out, boolean printResourceNames) {
    2. super(messageBuilderFactory, out);
    3. this.printResourceNames = printResourceNames;
    4. }
    5.  
    6. @Override
    7. public void transferInitiated(TransferEvent event) {
    8. overridePreviousTransfer(event);
    9.  
    10. super.transferInitiated(event);
    11. }
    12.  
    13. @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)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

    1. * @param config
    2. * @param command
    3. */
    4. public ServerMessageBlock2Response ( Configuration config, int command ) {
    5. super(config, command);
    6. }
    7.  
    8.  
    9. /**
    10. * @param config
    11. */
    12. public ServerMessageBlock2Response ( Configuration config ) {
    13. super(config);
    14. }
    15.  
    16.  
    17. /**
    18. * {@inheritDoc}
    19. *
    20. * @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)
  8. android/guava-tests/test/com/google/common/util/concurrent/InterruptibleTaskTest.java

    1. throw new RuntimeException("I bet you didn't think Thread.interrupt could throw");
    2. }
    3.  
    4. void doBegin() {
    5. super.begin();
    6. }
    7. }
    8.  
    9. /**
    10. * Because Thread.interrupt() can invoke arbitrary code, it can be slow (e.g. perform IO). To
    11. * protect ourselves from that we want to make sure that tasks don't spin too much waiting for the
    12. * interrupting thread to complete the protocol.
    13. */
    14. /*
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/CollectionBenchmarkSampleData.java

    1. return String.valueOf(hash);
    2. }
    3. }
    4.  
    5. static class SlowElement extends Element {
    6. SlowElement(int hash) {
    7. super(hash);
    8. }
    9.  
    10. @Override
    11. public boolean equals(@Nullable Object obj) {
    12. return slowItDown() != 1 && super.equals(obj);
    13. }
    14.  
    15. @Override
    16. public int hashCode() {
    17. return slowItDown() + hash;
    18. }
    19.  
    20. @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)
  10. guava-tests/test/com/google/common/collect/SpecialRandom.java

    1. /**
    2. * Utility class for being able to seed a {@link Random} value with a passed in seed from a
    3. * benchmark parameter.
    4. *
    5. * <p>TODO: Remove this class once Caliper has a better way.
    6. *
    7. * @author Nicholaus Shupe
    8. */
    9. public final class SpecialRandom extends Random {
    10. public static SpecialRandom valueOf(String s) {
    11. return (s.length() == 0) ? new SpecialRandom() : new SpecialRandom(Long.parseLong(s));
    12. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.4K bytes
    - Viewed (0)
Back to top