Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 150 for ContainerT (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            _ * provider2.present >> true
            _ * provider3.type >> otherType
            container.addLater(provider1)
            container.addLater(provider2)
            container.addLater(provider3)
    
            // Realize all object of type `type`
            toList(container.withType(type))
    
            when:
            def didRemoved1 = container.remove(provider1)
    
            then:
            didRemoved1
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

      apt-get update
      apt-get -y install docker-ce docker-ce-cli containerd.io docker-buildx-plugin
      groupadd docker
      usermod -aG docker "$USER"
    
      if ! grep -q "cri-containerd" "/lib/systemd/system/docker.service"; then
        sed -i "s/ExecStart=\(.*\)/ExecStart=\1 --cri-containerd/" /lib/systemd/system/docker.service
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_test.go

    }
    
    func setPodByNameFunc(fw *serverTestFramework, namespace, pod, container string) {
    	fw.fakeKubelet.podByNameFunc = func(namespace, name string) (*v1.Pod, bool) {
    		return &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				Namespace: namespace,
    				Name:      pod,
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Name: container,
    					},
    				},
    			},
    		}, true
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        %0 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
        %1 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
        %2 = "tf.VarHandleOp"() {container = "c", shared_name = "v"} : () -> tensor<*x!tf_type.resource<tensor<f32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{{Ports: []v1.ContainerPort{}}},
    		},
    		Status: v1.PodStatus{
    			Conditions: []v1.PodCondition{
    				{
    					Type:   v1.PodReady,
    					Status: v1.ConditionTrue,
    				},
    			},
    		},
    	}
    	if !isReady {
    		p.Status.Conditions[0].Status = v1.ConditionFalse
    	}
    	for j := 0; j < nPorts; j++ {
    		p.Spec.Containers[0].Ports = append(p.Spec.Containers[0].Ports,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // refresh logger in case container got customized by spy
            slf4jLogger = slf4jLoggerFactory.getLogger(this.getClass().getName());
    
            maven = container.lookup(Maven.class);
    
            executionRequestPopulator = container.lookup(MavenExecutionRequestPopulator.class);
    
            modelProcessor = createModelProcessor(container);
    
            configurationProcessors = container.lookupMap(ConfigurationProcessor.class);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				ImageGCHighThresholdPercent:               utilpointer.Int32(85),
    				ImageGCLowThresholdPercent:                utilpointer.Int32(80),
    				ContainerRuntimeEndpoint:                  "unix:///run/containerd/containerd.sock",
    				VolumeStatsAggPeriod:                      metav1.Duration{Duration: time.Minute},
    				CgroupsPerQOS:                             utilpointer.Bool(true),
    				CgroupDriver:                              "cgroupfs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    	}
    }
    
    func newPod() *v1.Pod {
    	return &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo-0",
    			Namespace: v1.NamespaceDefault,
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "nginx",
    					Image: "nginx",
    				},
    			},
    		},
    	}
    }
    
    func newPVC(name string) v1.PersistentVolumeClaim {
    	return v1.PersistentVolumeClaim{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. istioctl/pkg/describe/describe.go

    		if container.Name != "istio-proxy" && container.Name != "istio-operator" {
    			if container.SecurityContext != nil && container.SecurityContext.RunAsUser != nil {
    				if *container.SecurityContext.RunAsUser == UserID {
    					fmt.Fprintf(writer, "WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    				}
    			}
    		}
    	}
    
    	fmt.Fprintf(writer, "Pod: %s\n", kname(pod.ObjectMeta))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  10. go.sum

    github.com/containerd/console v1.0.1/go.mod h1:XUsP6YE/mKtz6bxc+I8UiKKTP04qjQL4qcS3XoQ5xkw=
    github.com/containerd/console v1.0.2/go.mod h1:ytZPjGgY2oeTkAONYafi2kSj0aYggsf8acV1PGKCbzQ=
    github.com/containerd/console v1.0.3 h1:lIr7SlA5PxZyMV30bDW0MGbiOPXwc63yRuCP0ARubLw=
    github.com/containerd/console v1.0.3/go.mod h1:7LqA/THxQ86k76b8c/EMSiaJ3h1eZkMkXar0TQ1gf3U=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 93.1K bytes
    - Viewed (0)
Back to top