Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 395 for untainer (0.28 sec)

  1. pkg/api/pod/util_test.go

    		}
    	}
    
    	makeContainer := func(preStop, postStart *api.LifecycleHandler) api.Container {
    		container := api.Container{Name: "foo"}
    		if preStop != nil || postStart != nil {
    			container.Lifecycle = &api.Lifecycle{
    				PostStart: postStart,
    				PreStop:   preStop,
    			}
    		}
    		return container
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  2. 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)
  3. pkg/kubelet/pleg/generic.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/features"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    	"k8s.io/kubernetes/pkg/kubelet/metrics"
    	"k8s.io/utils/clock"
    )
    
    // GenericPLEG is an extremely simple generic PLEG that relies solely on
    // periodic listing to discover container changes. It should be used
    // as temporary replacement for container runtimes do not support a proper
    // event generator yet.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"volumeMounts":             "Pod volumes to mount into the container's...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     * @param factory The factory to use to create object instances.
     * @return The container.
     *
     * @see [Project.container]
     */
    inline fun <reified T : Any> Project.container(noinline factory: (String) -> T): NamedDomainObjectContainer<T> =
        container(T::class.java, factory)
    
    
    /**
     * Creates a dependency on the API of the current version of the Gradle Kotlin DSL.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. pkg/volume/emptydir/empty_dir_test.go

    		mountDetector   = fakeMountDetector{}
    		pod             = &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				UID: types.UID("poduid"),
    			},
    			Spec: v1.PodSpec{
    				Containers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    								v1.ResourceName("hugepages-2Mi"): resource.MustParse("100Mi"),
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. pkg/apis/core/validation/validation_test.go

    	tests := []struct {
    		mount       core.VolumeMount
    		container   *core.Container
    		expectError bool
    	}{{
    		// implicitly non-privileged container + no propagation
    		core.VolumeMount{Name: "foo", MountPath: "/foo"},
    		defaultContainer,
    		false,
    	}, {
    		// implicitly non-privileged container + HostToContainer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top