Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 657 for untainer (0.32 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    	createdAt      int64
    	state          runtimeapi.ContainerState
    }
    
    // makeAndSetFakePod is a helper function to create and set one fake sandbox for a pod and
    // one fake container for each of its container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/zz_generated.deepcopy.go

    	if in.annotations != nil {
    		in, out := &in.annotations, &out.annotations
    		*out = make(map[string][]container.Annotation, len(*in))
    		for key, val := range *in {
    			var outVal []container.Annotation
    			if val == nil {
    				(*out)[key] = nil
    			} else {
    				in, out := &val, &outVal
    				*out = make([]container.Annotation, len(*in))
    				copy(*out, *in)
    			}
    			(*out)[key] = outVal
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/kubelet/images/image_gc_manager.go

    	for _, pod := range pods {
    		for _, container := range pod.Containers {
    			if !isRuntimeClassInImageCriAPIEnabled {
    				klog.V(5).InfoS("Container uses image", "pod", klog.KRef(pod.Namespace, pod.Name), "containerName", container.Name, "containerImage", container.Image, "imageID", container.ImageID, "imageRef", container.ImageRef)
    				imagesInUse.Insert(container.ImageID)
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/lite/tests/legalize-tf-variables.mlir

        %handle_0 = "tf.VarHandleOp"() {container="c", shared_name="a"} : () -> tensor<!tf_type.resource<tensor<1x10xf32>>>
        %handle_1 = "tf.VarHandleOp"() {container="c", shared_name="b"} : () -> tensor<!tf_type.resource<tensor<1x10xi64>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleSourceDetector.java

                    @Override
                    public Collection<Reference<Class<? extends RuleSource>>> load(@SuppressWarnings("NullableProblems") Class<?> container) throws Exception {
                        if (isRuleSource(container)) {
                            Class<? extends RuleSource> castClass = Cast.uncheckedCast(container);
                            return ImmutableSet.<Reference<Class<? extends RuleSource>>>of(new WeakReference<Class<? extends RuleSource>>(castClass));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/status/status_manager.go

    	m.podStatusesLock.RLock()
    	defer m.podStatusesLock.RUnlock()
    	for _, container := range pod.Spec.Containers {
    		var alloc v1.ResourceList
    		if container.Resources.Requests != nil {
    			alloc = container.Resources.Requests.DeepCopy()
    		}
    		if err := m.state.SetContainerResourceAllocation(string(pod.UID), container.Name, alloc); err != nil {
    			return err
    		}
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  10. 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)
Back to top