Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 125 for untainer (0.32 sec)

  1. pkg/kubelet/kuberuntime/security_context.go

    )
    
    // determineEffectiveSecurityContext gets container's security context from v1.Pod and v1.Container.
    func (m *kubeGenericRuntimeManager) determineEffectiveSecurityContext(pod *v1.Pod, container *v1.Container, uid *int64, username string) (*runtimeapi.LinuxContainerSecurityContext, error) {
    	effectiveSc := securitycontext.DetermineEffectiveSecurityContext(pod, container)
    	synthesized := convertToRuntimeSecurityContext(effectiveSc)
    	if synthesized == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ifrt/lower_to_ifrt_restore_variable.mlir

    // CHECK-NEXT:     [[SLICE:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[NAME:%.*]] = "tf.Const"()
    // CHECK-NEXT:     [[HANDLEY:%.*]] = "tf.VarHandleOp"() <{container = "x", shared_name = "y"}> : () -> tensor<!tf_type.resource<tensor<3x1xf32>>>
    // CHECK-NEXT:     [[HANDLEZ:%.*]] = "tf.VarHandleOp"() <{container = "x", shared_name = "z"}> : () -> tensor<!tf_type.resource<tensor<1x3xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/reconfig_batch_op.mlir

      // CHECK-SAME: container = ""
      // CHECK-SAME: enable_large_batch_splitting = false
      // CHECK-SAME: max_batch_size = 6 : i64
      // CHECK-SAME: max_enqueued_batches = 10 : i64
      // CHECK-SAME: num_batch_threads = 2 : i64
      // CHECK-SAME: shared_name = "batch/"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 17:38:34 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            def container = project.classpathContainers.find { it.path == 'containerPath' }
    
            then:
            container.classpathAttributes.size() == 1
            container.classpathAttributes[0].name == 'customKey'
            container.classpathAttributes[0].value == 'customValue'
    
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  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. 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)
  9. manifests/addons/dashboards/lib/queries.libsonnet

    local g = import './g.libsonnet';
    local q = g.query.prometheus;
    
    local variables = import './variables.libsonnet';
    
    {
      queries(names):
        local containerLabels = 'container="%(container)s", pod=~"%(pod)s"' % names;
        local appLabels = 'app="%(app)s"' % names;
        local podLabels = 'pod=~"%(pod)s"' % names;
        {
          query(legend, query):
            q.new(
              '$' + variables.datasource.name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. hack/testdata/multi-resource-rclist.json

                      "labels":{
                         "app":"mock"
                      }
                   },
                   "spec":{
                      "containers":[{
                        "name": "mock-container",
                        "image": "registry.k8s.io/pause:3.10",
                        "ports":[{
                            "containerPort":9949,
                            "protocol":"TCP"
                         }]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top