Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,439 for untainer (0.14 sec)

  1. build/pause/CHANGELOG.md

    # 3.5
    
    * Run the container image as non root user per default ([#97963](https://github.com/kubernetes/kubernetes/pull/97963))
    
    # 3.4.1
    
    * Support for Windows container images (OS Versions: 20H2) was added.([#97322](https://prs.k8s.io/97322), [@claudiubelu](https://github.com/claudiubelu))
    
    # 3.4
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeContainer.java

    import javax.annotation.Nullable;
    import java.util.Set;
    
    /**
     * An attribute container is a container of {@link Attribute attributes}, which are
     * strongly typed named entities. Such a container is responsible for storing and
     * getting attributes in a type safe way. In particular, attributes are strongly typed,
     * meaning that when we get a value from the container, the returned value type is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  3. tools/bug-report/pkg/common/common.go

    		}
    	}
    	return true
    }
    
    // IsProxyContainer reports whether container is an istio proxy container.
    func IsProxyContainer(_, container string) bool {
    	return container == ProxyContainerName
    }
    
    // IsOperatorContainer reports whether the container is an istio-operator container.
    func IsOperatorContainer(_, container string) bool {
    	return container == OperatorContainerName
    }
    
    func IsCniPod(pod string) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/security_context_others.go

    		}
    		return nil
    	}
    
    	switch {
    	case uid != nil && *uid == 0:
    		return fmt.Errorf("container has runAsNonRoot and image will run as root (pod: %q, container: %s)", format.Pod(pod), container.Name)
    	case uid == nil && len(username) > 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultPrompter.java

        private final PlexusContainer container;
    
        @Inject
        public DefaultPrompter(PlexusContainer container) {
            this.container = container;
        }
    
        @Override
        public String prompt(String message, List<String> possibleValues, String defaultReply) throws PrompterException {
            try {
                Class<?> clazz = container.getContainerRealm().loadClass(PROMPTER_CLASS);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLookup.java

    @Named
    @Singleton
    public class DefaultLookup implements Lookup {
    
        private final PlexusContainer container;
    
        @Inject
        public DefaultLookup(PlexusContainer container) {
            this.container = container;
        }
    
        @Override
        public <T> T lookup(Class<T> type) {
            try {
                return container.lookup(type);
            } catch (ComponentLookupException e) {
                throw new LookupException(e);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingContainerTest.groovy

        DefaultTestLoggingContainer container = new DefaultTestLoggingContainer(TestUtil.instantiatorFactory().decorateLenient())
    
        def "sets defaults for level ERROR"() {
            def logging = container.get(LogLevel.ERROR)
    
            expect:
            hasUnchangedDefaults(logging)
        }
    
        def "sets defaults for level QUIET"() {
            def logging = container.get(LogLevel.QUIET)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. pkg/kubelet/lifecycle/handlers.go

    			klog.V(1).ErrorS(err, "Exec lifecycle hook for Container in Pod failed", "execCommand", handler.Exec.Command, "containerName", container.Name, "pod", klog.KObj(pod), "message", string(output))
    		}
    		return msg, err
    	case handler.HTTPGet != nil:
    		err := hr.runHTTPHandler(ctx, pod, container, handler, hr.eventRecorder)
    		var msg string
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 19 11:40:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. platforms/software/reporting/src/test/groovy/org/gradle/api/reporting/internal/DefaultReportContainerTest.groovy

        def "container is immutable"() {
            when:
            container.add(Stub(Report))
    
            then:
            thrown(ReportContainer.ImmutableViolationException)
    
            when:
            container.clear()
    
            then:
            thrown(ReportContainer.ImmutableViolationException)
        }
    
        def "require empty by default"() {
            expect:
            container.every { !it.required.get() } && container.enabled.empty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/types.go

    	// This information is used by the caller to update a container config.
    	GetResources(pod *v1.Pod, container *v1.Container) (*ContainerInfo, error)
    
    	// PodMightNeedToUnprepareResources returns true if the pod with the given UID
    	// might need to unprepare resources.
    	PodMightNeedToUnprepareResources(UID types.UID) bool
    
    	// GetContainerClaimInfos gets Container ClaimInfo objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top