Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 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. guava/src/com/google/common/base/Verify.java

       *
       * @since 23.1 (varargs overload since 17.0)
       */
      public static void verify(boolean expression, String errorMessageTemplate, char p1, char p2) {
        if (!expression) {
          throw new VerifyException(lenientFormat(errorMessageTemplate, p1, p2));
        }
      }
    
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a
       * custom message otherwise.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  6. 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)
  7. guava/src/com/google/common/base/Preconditions.java

       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(
          boolean expression, String errorMessageTemplate, char p1, char p2) {
        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2));
        }
      }
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Feb 14 15:46:55 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Verify.java

       *
       * @since 23.1 (varargs overload since 17.0)
       */
      public static void verify(boolean expression, String errorMessageTemplate, char p1, char p2) {
        if (!expression) {
          throw new VerifyException(lenientFormat(errorMessageTemplate, p1, p2));
        }
      }
    
      /**
       * Ensures that {@code expression} is {@code true}, throwing a {@code VerifyException} with a
       * custom message otherwise.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon May 17 14:07:47 GMT 2021
    - 18.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Preconditions.java

       *
       * @since 20.0 (varargs overload since 2.0)
       */
      public static void checkArgument(
          boolean expression, String errorMessageTemplate, char p1, char p2) {
        if (!expression) {
          throw new IllegalArgumentException(lenientFormat(errorMessageTemplate, p1, p2));
        }
      }
    
      /**
       * Ensures the truth of an expression involving one or more parameters to the calling method.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 11 11:52:14 GMT 2024
    - 52.9K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

        }
    
        private static boolean repositoryPolicyEquals(ArtifactRepositoryPolicy p1, ArtifactRepositoryPolicy p2) {
            if (p1 == p2) {
                return true;
            }
    
            return p1.isEnabled() == p2.isEnabled() && Objects.equals(p1.getUpdatePolicy(), p2.getUpdatePolicy());
        }
    
        private static boolean repositoriesEquals(List<ArtifactRepository> r1, List<ArtifactRepository> r2) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
Back to top