Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 832 for untainer (0.85 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r35/ToolingApiEclipseModelDependencyAccessRuleCrossVersionSpec.groovy

            container.accessRules[0].kind == 0
            container.accessRules[0].pattern == 'id-accessible'
            container.accessRules[1].kind == 1
            container.accessRules[1].pattern == 'id-nonaccessible'
            container.accessRules[2].kind == 2
            container.accessRules[2].pattern == 'id-discouraged'
            container.accessRules[3].kind == 0
            container.accessRules[3].pattern == 'literal-accessible'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. pkg/kubelet/images/image_manager.go

    // shouldPullImage returns whether we should pull an image according to
    // the presence and pull policy of the image.
    func shouldPullImage(container *v1.Container, imagePresent bool) bool {
    	if container.ImagePullPolicy == v1.PullNever {
    		return false
    	}
    
    	if container.ImagePullPolicy == v1.PullAlways ||
    		(container.ImagePullPolicy == v1.PullIfNotPresent && (!imagePresent)) {
    		return true
    	}
    
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kubelet/apis/podresources/server_v1.go

    			for _, container := range pod.Spec.InitContainers {
    				if !types.IsRestartableInitContainer(&container) {
    					continue
    				}
    
    				pRes.Containers = append(pRes.Containers, p.getContainerResources(pod, &container))
    			}
    		}
    
    		for _, container := range pod.Spec.Containers {
    			pRes.Containers = append(pRes.Containers, p.getContainerResources(pod, &container))
    		}
    		podResources[i] = &pRes
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 13:00:09 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/internal/extensibility/CallablePropertyIntegrationTest.groovy

                }
    
                def container = objects.domainObjectContainer(NamedThing)
                container.register("foo")
    
                container.foo.prop()
                configure(container.foo) {
                    prop()
                }
                container.configure {
                    foo {
                        prop()
                    }
                }
    
                assert container.foo.prop.counter == 3
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 28 13:46:49 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top