Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for p2 (0.17 sec)

  1. src/cmd/api/testdata/src/pkg/p2/p2.go

    // Copyright 2012 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p2
    
    type Twoer interface {
    	// Deprecated: No good.
    	PackageTwoMeth()
    }
    
    // Deprecated: No good.
    func F() string {}
    
    func G() Twoer {}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 337 bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/inheritance-repo/t01/maven.t01/poms/p2-1.0.pom

        <groupId>maven.t01</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven.t01</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <organization>
        <name>p2-org</name>
      </organization>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 365 bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/inheritance-repo/t00/maven/poms/p2-1.0.pom

    <project>
      <parent>
        <artifactId>p1</artifactId>
        <groupId>maven</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <mailingLists>
        <mailingList>
          <name>mailing-list</name>
        </mailingList>
      </mailingLists>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 401 bytes
    - Viewed (0)
  4. src/cmd/api/testdata/src/pkg/p2/golden.txt

    pkg p2, func F() string
    pkg p2, func F //deprecated
    pkg p2, func G() Twoer
    pkg p2, func NewError(string) error
    pkg p2, type Twoer interface { PackageTwoMeth }
    pkg p2, type Twoer interface, PackageTwoMeth()
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 265 bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/project/inheritance/t01/ProjectInheritanceTest.java

            // Check p2 value for org name
            // ----------------------------------------------------------------------
    
            MavenProject p2 = getProject(projectFile("maven.t01", "p2"));
    
            assertEquals("p2-org", p2.getOrganization().getName());
    
            // ----------------------------------------------------------------------
            // Check p2 value for org name
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  6. 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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  7. maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemCollectorTest.java

            assertNull(p1.getException());
    
            Problem p2 = collector.getProblems().get(1);
            assertEquals(Severity.WARNING, p2.getSeverity());
            assertEquals("", p2.getMessage());
            assertEquals(42, p2.getLineNumber());
            assertEquals(127, p2.getColumnNumber());
            assertEquals(e2, p2.getException());
        }
    
        @Test
        void testSetSource() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 2.7K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  9. maven-compat/src/test/resources/inheritance-repo/t02/p0/p1/p2/pom.xml

        <artifactId>p1</artifactId>
        <groupId>maven.t02</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven.t02</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <mailingLists>
        <mailingList>
          <name>mailing-list</name>
        </mailingList>
      </mailingLists>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 1.1K bytes
    - Viewed (0)
  10. maven-compat/src/test/resources/inheritance-repo/t09/p0/p2/pom.xml

      <parent>
        <artifactId>p0</artifactId>
        <groupId>maven-t09</groupId>
        <version>1.0</version>
      </parent>
      <modelVersion>4.0.0</modelVersion>
      <groupId>maven-t09</groupId>
      <artifactId>p2</artifactId>
      <packaging>pom</packaging>
      <name>p2</name>
      <version>1.0</version>
      <scm>
        <url>scm-url</url>
      </scm>
    
      <dependencies>
    
        <dependency>
          <groupId>maven-test</groupId>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 877 bytes
    - Viewed (0)
Back to top