Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,057 for untainer (1.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ContainerTest.groovy

            Container container = createContainer()
            container.nativeLibraryLocation += 'x'
    
            expect:
            container != createContainer()
        }
    
        private Container createContainer() {
            Container container = new Container('somePath')
            container.exported = true
            container.nativeLibraryLocation = 'mynative'
            container.accessRules += [new AccessRule('nonaccessible', 'secret**')]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/DefaultDomainObjectSetTest.groovy

            def action = Mock(Action)
            container.beforeCollectionChanges(action)
    
            when:
            container.removeAll(["a", "b"])
    
            then:
            1 * action.execute(null)
            0 * _
        }
    
        def callsVetoActionOnceBeforeCollectionIsIntersected() {
            def action = Mock(Action)
            container.add("a")
            container.add("b")
            container.beforeCollectionChanges(action)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 23:50:58 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

            }
    
            // regular syntax
            container.getByName("alice") {
                foo = "alice-foo"
            }
            container.create("bob") {
                foo = "bob-foo"
            }
            container.maybeCreate("john")
    
            container.named("marty")
            container.register("doc")
    
            // invoke syntax
            container {
                getByName("alice") {
                    foo = "alice-foo"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/resource_allocation_test.go

    						{}, {},
    					},
    				},
    			},
    			// should accumulate once per container without a request
    			expected: map[v1.ResourceName]int64{
    				v1.ResourceCPU:    2 * util.DefaultMilliCPURequest,
    				v1.ResourceMemory: 2 * util.DefaultMemoryRequest,
    			},
    		},
    		{
    			name: "request container + requestless container",
    			pod: v1.Pod{
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 23:15:53 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/labels_test.go

    		PodTerminationGracePeriod: pod.Spec.TerminationGracePeriodSeconds,
    		Hash:                      kubecontainer.HashContainer(container),
    		RestartCount:              restartCount,
    		TerminationMessagePath:    container.TerminationMessagePath,
    		PreStopHandler:            container.Lifecycle.PreStop,
    	}
    
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.InPlacePodVerticalScaling, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 22:43:36 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top