Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 228 for untainer (0.43 sec)

  1. 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)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'whenMergedContainerPath' }
    
            then:
            container != null
            container.exported == false
        }
    
        def "Classpath container can be configured"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/providers/collections/groovy/build.gradle

        }
    }
    // end::ndos[]
    
    // tag::ndol[]
    
    abstract class MyPluginExtensionNamedDomainObjectList {
        // Define a named domain object container to hold Person objects
        NamedDomainObjectList<Person> people = project.container(Person)
    
        // Add a person to the container
        void addPerson(String name) {
            people.create(name: name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_container_windows.go

    		Windows: m.generateWindowsContainerResources(pod, container),
    	}
    }
    
    // generateWindowsContainerResources generates windows container resources config for runtime
    func (m *kubeGenericRuntimeManager) generateWindowsContainerResources(pod *v1.Pod, container *v1.Container) *runtimeapi.WindowsContainerResources {
    	wcr := m.calculateWindowsResources(container.Resources.Limits.Cpu(), container.Resources.Limits.Memory())
    
    	return wcr
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerAccessRuleCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'classpathContainerPath' }
    
            then:
            container.accessRules.size() == 2
            container.accessRules[0].kind == 0
            container.accessRules[0].pattern == 'accessibleFilesPattern'
            container.accessRules[1].kind == 1
            container.accessRules[1].pattern == 'nonAccessibleFilesPattern'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. build/pause/Makefile

    		done; \
    	done
    	docker manifest push --purge ${IMAGE}:${TAG}
    
    all-container-docker: $(addprefix sub-container-docker-,$(ALL_OS_ARCH.linux))
    all-container-registry: $(addprefix sub-container-registry-,$(ALL_OS_ARCH))
    
    # split words on hyphen, access by 1-index
    word-hyphen = $(word $2,$(subst -, ,$1))
    sub-container-%:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 19:31:40 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/providers/collections/kotlin/build.gradle.kts

        // Add a person to the container
        fun addPerson(name: String) {
            people.plus(name)
        }
    }
    // end::ndol[]
    
    // tag::ndoc[]
    
    abstract class MyPluginExtensionNamedDomainObjectContainer {
        // Define a named domain object container to hold Person objects
        private val people: NamedDomainObjectContainer<Person> = project.container(Person::class)
    
        // Add a person to the container
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top