Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,173 for untainer (1.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/LazyAdditionToDomainObjectCollectionIntegrationTest.groovy

                container.withType(Base) {
                    println "withType(Base) called on " + it
                }
                container.addLater(provider { create(Base) })
            """
            expect:
            succeeds("help")
            outputContains("withType(Base) called on ")
        }
        def "addLater(Base) triggers configuration with eager withType(Sub)"() {
            buildFile << """
                container.withType(Sub) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 10 20:36:26 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultArtifactRepositoryContainerTest.groovy

            def repo2 = Mock(ArtifactRepository) { getName() >> "b" }
    
            when:
            container.addFirst(repo1)
            container.addFirst(repo2)
    
            then:
            container == [repo2, repo1]
            container.collect { it } == [repo2, repo1]
            container.matching { true } == [repo2, repo1]
            container.matching { true }.collect { it } == [repo2, repo1]
        }
    
        def testAddLast() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top