Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,194 for container (0.07 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/conflict/DefaultConflictResolverFactory.java

     *
     * TODO you don't need the container in here with the active maps (jvz).
     * @since 3.0
     */
    @Named
    @Singleton
    @Deprecated
    public class DefaultConflictResolverFactory implements ConflictResolverFactory, Contextualizable {
        // fields -----------------------------------------------------------------
    
        /**
         * The plexus container used to obtain instances from.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. .github/workflows/arm-ci-extended.yml

        steps:
          - name: Stop old running containers (if any)
            shell: bash
            run: |
              running_containers=$(docker ps -q) && \
              if [[ $running_containers == "" ]]; then
                echo "No running containers";
              else
                echo "Running container(s) found" && \
                docker stop $running_containers;
              fi
              docker container prune -f
              docker image prune -af
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Nov 01 08:40:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TextExtractorTest.java

        public TextExtractor textExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("textExtractor", TextExtractor.class);
            textExtractor = container.getComponent("textExtractor");
        }
    
        public void test_getText() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/test.txt");
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/CustomUrlFilterImplTest.java

                    .singleton("domainFilter", UrlFilterImpl.class)//
            ;
            includeFilter = container.getComponent("includeFilter");
            includeFilter.setIncludeFilteringPattern("$1$2$3.*");
            excludeFilter = container.getComponent("excludeFilter");
            excludeFilter.setExcludeFilteringPattern("$1$2$3.*");
            domainFilter = container.getComponent("domainFilter");
            domainFilter.setIncludeFilteringPattern("http://$2/.*");
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/EncodingHelperTest.java

    import org.codelibs.fess.crawler.container.StandardCrawlerContainer;
    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class EncodingHelperTest extends PlainTestCase {
        public EncodingHelper encodingHelper;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. docs/hotfixes.md

    ### Building a hotfix binary and container
    
    To add a hotfix tag to the binary version and embed the relevant `commit-id` following build helpers are available
    
    #### Builds the hotfix binary and uploads to https;//dl.min.io
    
    ```
    λ CRED_DIR=/media/builder/minio make hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to docker.io/minio/minio
    
    ```
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/impl/TextTransformerTest.java

        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("extractorFactory", ExtractorFactory.class)
                    .singleton("textTransformer", TextTransformer.class).singleton("tikaExtractor", TikaExtractor.class);
            textTransformer = container.getComponent("textTransformer");
            textTransformer.setName("textTransformer");
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

      - Changed the Pod API so that the `resources` defined for containers are mutable for `cpu` and `memory` resource types.
      - Added `resizePolicy` for containers in a pod to allow users control over how their containers are resized.
      - Added `allocatedResources` field to container status in pod status that describes the node resources allocated to a pod.
      - Added `resources` field to container status that reports actual resources applied to running containers.
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Jul 17 07:48:22 UTC 2024
    - 466.3K bytes
    - Viewed (0)
  9. cni/README.md

    - In ambient mode, the CNI plugin does not configure any networking,...
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jul 17 23:10:17 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/impl/UrlFilterImplTest.java

            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer().singleton("dataHelper", MemoryDataHelper.class)//
                    .singleton("urlFilterService", UrlFilterServiceImpl.class)//
                    .singleton("urlFilter", UrlFilterImpl.class)//
                    .singleton("dataService", DataServiceImpl.class);
            urlFilter = container.getComponent("urlFilter");
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top