Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,439 for untainer (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

            container.withType(container.type).named("a", getType(), method)
            then:
            ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
            container.matching({ it in container.type }).named("a").configure(method)
            then:
            ex = thrown(Throwable)
            assertDoesNotAllowMethod(ex, methodUnderTest)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/TypedDomainObjectContainerWrapperTest.groovy

            parent.collect({it.name}).containsAll(["created1", "created2", "created3"])
    
            and:
            container.getByName("created1").value == "original"
            container.getByName("created2").value == "changed"
            container.getByName("created3").value == "actioned"
        }
    
        def "can create and configure via DSL"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 10 22:34:19 UTC 2021
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/security_context_windows.go

    			"pod", klog.KObj(pod), "containerName", container.Name)
    	}
    	if effectiveSc.SELinuxOptions != nil {
    		klog.InfoS("Windows container does not support SecurityContext.SELinuxOptions, please use SecurityContext.WindowsOptions",
    			"pod", klog.KObj(pod), "containerName", container.Name)
    	}
    	if effectiveSc.RunAsGroup != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 22:23:13 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/attributes/IncubatingAttributesCheckerTest.groovy

        def "container with attribute which doesn't use @Incubating is not reported"() {
            def container = new DefaultMutableAttributeContainer(attributesFactory)
            container.attribute(Usage.USAGE_ATTRIBUTE, TestUtil.objectFactory().named(Usage, Usage.JAVA_API))
    
            expect:
            !IncubatingAttributesChecker.isAnyIncubating(container)
        }
    
        def "container with @Incubating attribute is reported"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 12 14:19:53 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentMetadataRuleContainerTest.groovy

            when:
            container.addRule(rule1)
            container.addClassRule(rule2)
    
            then:
            !container.isEmpty()
            !container.isClassBasedRulesOnly()
            def iterator = container.iterator()
            def ruleWrapper = iterator.next()
            !ruleWrapper.isClassBased()
            ruleWrapper.rule == rule1
            def ruleWrapper2 = iterator.next()
            ruleWrapper2.isClassBased()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/scope_container.go

    	var providersHints []map[string][]TopologyHint
    
    	for _, provider := range s.hintProviders {
    		// Get the TopologyHints for a Container from a provider.
    		hints := provider.GetTopologyHints(pod, container)
    		providersHints = append(providersHints, hints)
    		klog.InfoS("TopologyHints", "hints", hints, "pod", klog.KObj(pod), "containerName", container.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 14:44:24 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultNamedDomainObjectCollectionTest.groovy

            1 * rule.apply("bean") >> {
                container.add(bean)
            }
            0 * rule._
        }
    
        def "named finds objects added to container"() {
            container.add(a)
            when:
            def result = container.named("a")
            then:
            result.present
            result.get() == a
        }
    
        def "getNames"() {
            expect:
            container.getNames().isEmpty()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 24 14:51:02 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  8. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultDependencySpecContainerTest.groovy

            when:
            container.library('someLib')
            container.project('otherProject').library('someLib')
            container.project('otherProject')
    
            container.library('someLib')
            container.library('someLib').project('otherProject')
            container.project('otherProject')
    
            then:
            container.dependencies.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/qos/qos_test.go

    		},
    		{
    			pod: newPod("best-effort-hugepages", []v1.Container{
    				newContainer("best-effort", addResource("hugepages-2Mi", "1Gi", getResourceList("0", "0")), addResource("hugepages-2Mi", "1Gi", getResourceList("0", "0"))),
    			}),
    			expected: v1.PodQOSBestEffort,
    		},
    		{
    			pod: newPodWithInitContainers("init-container",
    				[]v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/attributes/ImmutableAttributesFactory.java

        /**
         * Returns an empty mutable attribute container.
         */
        AttributeContainerInternal mutable();
    
        /**
         * Returns an empty mutable attribute container with the given fallback.
         */
        AttributeContainerInternal mutable(AttributeContainerInternal fallback);
    
        /**
         * Returns a new attribute container which attaches a primary container and a fallback container. Changes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.4K bytes
    - Viewed (0)
Back to top