Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 397 for untainer (0.15 sec)

  1. ci/official/utilities/setup_docker.sh

        docker push "$TFCI_DOCKER_IMAGE"
      fi
    fi
    
    # Keep the existing "tf" container if it's already present.
    # The container is not cleaned up automatically! Remove it with:
    # docker rm tf
    if ! docker container inspect tf >/dev/null 2>&1 ; then
      # Pass all existing TFCI_ variables into the Docker container
      env_file=$(mktemp)
      env | grep ^TFCI_ > "$env_file"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. pkg/kubelet/container/container_hash_test.go

        }
      }
    }
    `
    
    	sampleV131HashValue = uint64(0x8e45cbd0)
    )
    
    func TestConsistentHashContainer(t *testing.T) {
    	container := &v1.Container{}
    	if err := json.Unmarshal([]byte(sampleContainer), container); err != nil {
    		t.Error(err)
    	}
    
    	currentHash := HashContainer(container)
    	if currentHash != sampleV131HashValue {
    		t.Errorf("mismatched hash value with v1.31")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    	MoveLast
    	Remove
    )
    
    func moveContainer(from, to []corev1.Container, name string) ([]corev1.Container, []corev1.Container) {
    	var container *corev1.Container
    	for i, c := range from {
    		c := c
    		if from[i].Name == name {
    			from = slices.Delete(from, i)
    			container = &c
    			break
    		}
    	}
    	if container != nil {
    		to = append(to, *container)
    	}
    	return from, to
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. build/root/Makefile

    # Build a release
    # Use the 'release-in-a-container' target to build the release when already in
    # a container vs. creating a new container to build in using the 'release'
    # target.  Useful for running in GCB.
    #
    # Example:
    #   make release
    #   make release-in-a-container
    endef
    .PHONY: release release-in-a-container
    ifeq ($(PRINT_HELP),y)
    release release-in-a-container:
    	echo "$$RELEASE_HELP_INFO"
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/kubelet_pods_test.go

    			enableServiceLinks: &falseValue,
    			container:          &v1.Container{Env: []v1.EnvVar{}},
    			nilLister:          false,
    			staticPod:          true,
    			unsyncedServices:   true,
    		},
    		{
    			name:               "api server = Y, kubelet = Y",
    			ns:                 "test1",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{Name: "FOO", Value: "BAR"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. 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)
  10. cni/pkg/plugin/plugin_test.go

    	cniConf := buildMockConf(true, url)
    
    	pod, ns := buildFakePodAndNSForClient()
    
    	proxy := corev1.Container{Name: "istio-proxy"}
    	app := corev1.Container{Name: "app"}
    
    	pod.Spec.Containers = []corev1.Container{app, proxy}
    	pod.ObjectMeta.Annotations = map[string]string{annotation.SidecarStatus.Name: "true"}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top