Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for containerd (0.17 sec)

  1. guava-testlib/src/com/google/common/collect/testing/AbstractContainerTester.java

       * test method needs to create multiple containers while retaining the ability to use {@link
       * #expectContents(Object[]) expectContents(E...)} and other convenience methods. The creation of
       * multiple containers in a single method is discouraged in most cases, but it is vital to the
       * iterator tests.
       *
       * @return the new container instance
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 8.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Range.java

     *   <li>All ranges are shallow-immutable.
     *   <li>Instances of this type are obtained using the static factory methods in this class.
     *   <li>Ranges are <i>convex</i>: whenever two values are contained, all values in between them
     *       must also be contained. More formally, for any {@code c1 <= c2 <= c3} of type {@code C},
     *       {@code r.contains(c1) && r.contains(c3)} implies {@code r.contains(c2)}). This means that a
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 27.8K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            PlexusContainer container = getContainer();
    
            ComponentDescriptor<T> cd = new ComponentDescriptor<>(participant, container.getContainerRealm());
            cd.setRoleClass(AbstractMavenLifecycleParticipant.class);
            container.addComponentDescriptor(cd);
    
            Maven maven = container.lookup(Maven.class);
            File pom = getProject(testProject);
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/internal/impl/internal/DefaultCoreRealm.java

    @Named
    @Singleton
    public class DefaultCoreRealm implements CoreRealm {
    
        private final PlexusContainer container;
    
        @Inject
        public DefaultCoreRealm(PlexusContainer container) {
            this.container = container;
        }
    
        @Override
        public ClassRealm getRealm() {
            return container.getContainerRealm();
        }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/classrealm/DefaultClassRealmManagerTest.java

    class DefaultClassRealmManagerTest {
    
        private DefaultClassRealmManager newDefaultClassRealmManager(PlexusContainer container) {
            HashSet<String> exportedPackages = new HashSet<String>();
            exportedPackages.add("group1:artifact1");
    
            return new DefaultClassRealmManager(
                    new DefaultCoreRealm(container),
                    new ArrayList<ClassRealmManagerDelegate>(),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 10 12:53:42 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepositoryFactory.java

        @Inject
        private org.apache.maven.repository.legacy.repository.ArtifactRepositoryFactory factory;
    
        @Inject
        private LegacySupport legacySupport;
    
        @Inject
        private PlexusContainer container;
    
        public ArtifactRepositoryLayout getLayout(String layoutId) throws UnknownRepositoryLayoutException {
            return factory.getLayout(layoutId);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmServlet.java

    
    /**
     * This servlet may be used with pre-2.3 servlet containers
     * to protect content with NTLM HTTP Authentication. Servlets that
     * extend this abstract base class may be authenticated against an SMB
     * server or domain controller depending on how the
     * <tt>jcifs.smb.client.domain</tt> or <tt>jcifs.http.domainController</tt>
     * properties are be specified. <b>With later containers the
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 7.6K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        boolean contained = false;
        if (actual instanceof Collection) {
          contained = ((Collection<?>) actual).contains(expected);
        } else {
          for (Object o : actual) {
            if (equal(o, expected)) {
              contained = true;
              break;
            }
          }
        }
    
        if (!contained) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Feb 26 19:46:10 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/artifact/UnknownRepositoryLayoutException.java

    /**
     * Exception which is meant to occur when a layout specified for a particular
     * repository doesn't have a corresponding {@link org.apache.maven.artifact.repository.layout.ArtifactRepositoryLayout}
     * component in the current container.
     *
     */
    @Deprecated
    public class UnknownRepositoryLayoutException extends InvalidRepositoryException {
    
        private final String layoutId;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java

      // Needed to stop Eclipse whining
      private void resetWithHole() {
        List<E> container = new ArrayList<>();
        container.addAll(Collections.nCopies(a.getCount(), a.getElement()));
        container.addAll(Collections.nCopies(c.getCount(), c.getElement()));
        super.resetContainer(getSubjectGenerator().create(container.toArray()));
        sortedMultiset = (SortedMultiset<E>) getMultiset();
      }
    
      @CollectionSize.Require(ZERO)
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 25.9K bytes
    - Viewed (0)
Back to top