Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 51 for projected (0.17 sec)

  1. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    private final String originalMessage; private final String path; static final String LS; protected void AbstractArtifactReso(String, String, String, String, String, String, java.util.List, java.util.List); protected void AbstractArtifactReso(String, String, String, String, String, String, java.util.List, java.util.List, Throwable); protected void AbstractArtifactReso(String, org.apache.maven.artifact.Artifact); protected void AbstractArtifactReso(String, org.apache.maven.artifact.Artifact, java.util.List);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 160.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    implements the null check, checks the type and then casts. Author: Joe Walnes, Steve Freeman, Nat Pryce Constructor Summary protected TypeSafeMatcher() The default constructor for simple sub types protected TypeSafeMatcher(java.lang.Class<?> expectedType) Use this constructor if the subclass that implements matchesSafely is not the class that binds <T> to a type. protected TypeSafeMatcher(ReflectiveTypeFinder typeFinder) Use this constructor if the subclass that implements matchesSafely is not the...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        }
    
        @Override
        protected InstantiationStrategy createUsingConstructor(Constructor<?> constructor) {
            return new InvokeConstructorStrategy(constructor, getRoleHandler());
        }
    
        @Override
        protected InstantiationStrategy createForSerialization(Class<?> generatedType, Class<?> baseClass) {
            Constructor<?> constructor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                "WWW-Authenticate",
                "Basic realm=\"protected area\", charset=\"UTF-8\"",
              ),
            body = "Please authenticate with UTF-8.",
          ),
        )
        server.enqueue(
          MockResponse(
            code = 401,
            headers =
              headersOf(
                "WWW-Authenticate",
                "Basic realm=\"protected area\"",
              ),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

        private final BiMap<A, B> bimap;
    
        BiMapConverter(BiMap<A, B> bimap) {
          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

              <version>3.0.0+</version>
              <description>
                <![CDATA[
                The URL to the project's homepage.
                <p><b>Default value is</b>: parent value [+ path adjustment] + (artifactId or project.directory property), or just parent value if
                project's {@code child.project.url.inherit.append.path="false"}</p>
                ]]>
              </description>
              <type>String</type>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    and Activity consists. And as it is of no use, and hinders the Operations of Nature, and makes her languish, so there is no evidence for its Existence, and therefore it ought to be rejected. And if it be rejected, the Hypotheses that Light consists in Pression or Motion, propagated through such a Medium, are rejected with it. And for rejecting such a Medium, we have the Authority of those the oldest and most celebrated Philosophers of _Greece_ and _Phoenicia_, who made a _Vacuum_, and Atoms, and...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public Iterator<ReferenceEntry<K, V>> iterator() {
          return new AbstractSequentialIterator<ReferenceEntry<K, V>>(peek()) {
            @CheckForNull
            @Override
            protected ReferenceEntry<K, V> computeNext(ReferenceEntry<K, V> previous) {
              ReferenceEntry<K, V> next = previous.getNextInWriteQueue();
              return (next == head) ? null : next;
            }
          };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

        }
    
        @Override
        public Iterator<ReferenceEntry<K, V>> iterator() {
          return new AbstractSequentialIterator<ReferenceEntry<K, V>>(peek()) {
            @CheckForNull
            @Override
            protected ReferenceEntry<K, V> computeNext(ReferenceEntry<K, V> previous) {
              ReferenceEntry<K, V> next = previous.getNextInWriteQueue();
              return (next == head) ? null : next;
            }
          };
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top