Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 526 for untainer (2.96 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/ZipExtractorTest.java

        public ZipExtractor zipExtractor;
    
        @Override
        protected void setUp() throws Exception {
            super.setUp();
            StandardCrawlerContainer container = new StandardCrawlerContainer();
            container.singleton("archiveStreamFactory", ArchiveStreamFactory.class)
                    .singleton("compressorStreamFactory", CompressorStreamFactory.class).singleton("mimeTypeHelper", MimeTypeHelperImpl.class)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/kubelet/types/types.go

    }
    
    // SortInitContainerStatuses ensures that statuses are in the order that their
    // init container appears in the pod spec
    func SortInitContainerStatuses(p *v1.Pod, statuses []v1.ContainerStatus) {
    	containers := p.Spec.InitContainers
    	current := 0
    	for _, container := range containers {
    		for j := current; j < len(statuses); j++ {
    			if container.Name == statuses[j].Name {
    				statuses[current], statuses[j] = statuses[j], statuses[current]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 13:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_windows_test.go

    	v1 "k8s.io/api/core/v1"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/subpath"
    )
    
    func TestMakeMountsWindows(t *testing.T) {
    	// TODO: remove skip once the failing test has been fixed.
    	t.Skip("Skip failing test on Windows.")
    	container := v1.Container{
    		VolumeMounts: []v1.VolumeMount{
    			{
    				MountPath: "c:/etc/hosts",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

            succeeds "t1"
    
            and:
            output.contains "task container node state when task graph ready: ${ModelNode.State.SelfClosed}"
            output.contains "task container node state after graph closing: ${ModelNode.State.GraphClosed}"
        }
    
        def "tasks added via task container and not explicitly required but executed are self closed"() {
            given:
            buildScript """
                ${ruleBasedTasks()}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. pkg/volume/util/nested_volumes_test.go

    			volname:  "vol1",
    			pod: v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Namespace: testNamespace,
    					UID:       testPodUID,
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							VolumeMounts: []v1.VolumeMount{
    								{MountPath: "/dir", Name: "vol1"},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name:     "Simple Nested Pod",
    			err:      false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/ExtractorFactoryTest.java

                    .singleton("extractorFactory", ExtractorFactory.class);
            extractorFactory = container.getComponent("extractorFactory");
            TikaExtractor tikaExtractor = container.getComponent("tikaExtractor");
            LhaExtractor lhaExtractor = container.getComponent("lhaExtractor");
            PasswordBasedExtractor pdfExtractor = container.getComponent("pdfExtractor");
            extractorFactory.addExtractor("application/msword", tikaExtractor);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/runtime/runtime.go

    	errs := []error{}
    	for _, container := range containers {
    		var lastErr error
    		for i := 0; i < constants.RemoveContainerRetry; i++ {
    			klog.V(5).Infof("Attempting to remove container %v", container)
    
    			ctx, cancel := defaultContext()
    			if err := runtime.impl.StopPodSandbox(ctx, runtime.runtimeService, container); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/container/StandardCrawlerContainer.java

            protected StandardCrawlerContainer container;
    
            private T instance;
    
            protected ComponentDef(final Class<T> cls, final Consumer<T> initializer, final StandardCrawlerContainer container) {
                this.cls = cls;
                this.initializer = initializer;
                this.container = container;
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/HashSetCodec.kt

                        add(read())
                    }
                }
                onFinish {
                    container.addAll(remaining)
                }
                return container
            }
            container.add(element)
        }
        return container
    }
    
    
    private
    object CircularReferenceMarker {
    
        val INSTANCE: Any = Marker.INSTANCE
    
        private
        enum class Marker {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     * or using the {@code configurations} property in your build script.</p>
     *
     * <p>The configurations in a container are accessible as read-only properties of the container, using the name of the
     * configuration as the property name. For example:</p>
     *
     * <pre class='autoTested'>
     * configurations.create('myConfiguration')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top