Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,439 for untainer (0.08 sec)

  1. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/kotlin/build.gradle.kts

    // tag::container-api[]
    tasks.create("greeting") {
        doLast { println("Hello, World!") }
    }
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.create<Zip>("docZip") {
        archiveFileName = "doc.zip"
        from("doc")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 258 bytes
    - Viewed (0)
  2. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/DefaultPublicationContainerTest.groovy

        DefaultPublicationContainer container = instantiator.newInstance(DefaultPublicationContainer, instantiator, CollectionCallbackActionDecorator.NOOP)
    
        def "exception is thrown on unknown access"() {
            given:
            container.add(publication("foo"))
    
            expect:
            container.foo instanceof Publication
    
            when:
            container.getByName("notHere")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.bulk

    {"index":{"_index":"fess_config.scheduled_job","_id":"log_purger"}}
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/kubelet_resources.go

    	"k8s.io/api/core/v1"
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    )
    
    // defaultPodLimitsForDownwardAPI copies the input pod, and optional container,
    // and applies default resource limits. it returns a copy of the input pod,
    // and a copy of the input container (if specified) with default limits
    // applied. if a container has no limit specified, it will default the limit to
    // the node allocatable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 15 22:42:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/types.go

    // DeviceRunContainerOptions contains the combined container runtime settings to consume its allocated devices.
    type DeviceRunContainerOptions struct {
    	// The environment variables list.
    	Envs []kubecontainer.EnvVar
    	// The mounts for the container.
    	Mounts []kubecontainer.Mount
    	// The host devices mapped into the container.
    	Devices []kubecontainer.DeviceInfo
    	// The Annotations for the container
    	Annotations []kubecontainer.Annotation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. pkg/securitycontext/util.go

    package securitycontext
    
    import (
    	v1 "k8s.io/api/core/v1"
    )
    
    // HasWindowsHostProcessRequest returns true if container should run as HostProcess container,
    // taking into account nils
    func HasWindowsHostProcessRequest(pod *v1.Pod, container *v1.Container) bool {
    	effectiveSc := DetermineEffectiveSecurityContext(pod, container)
    
    	if effectiveSc.WindowsOptions == nil {
    		return false
    	}
    	if effectiveSc.WindowsOptions.HostProcess == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 15 07:28:24 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. platforms/software/reporting/src/main/java/org/gradle/api/reporting/Reporting.java

     * The {@code Reporting} interface is parameterized, where the parameter denotes the specific type of reporting container
     * that is exposed. The specific type of the reporting container denotes the different types of reports available.
     * <p>
     * For example, given a task such as:
     * </p>
     * <pre>
     * class MyTask implements Reporting&lt;MyReportContainer&gt; {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_termination_order_test.go

    		if !ok {
    			t.Errorf("unable to find delay for container %s", name)
    		}
    		return delay.(int64)
    	}
    
    	for _, tc := range []struct {
    		containerName string
    		expectedDelay int64
    	}{
    		// sidecars should exit in reverse order, so
    		// sc1 = 3 (main container + sc3 + sc2)
    		{
    			containerName: "sc1",
    			expectedDelay: 3,
    		},
    		// sc2 = 2 (main container + sc3)
    		{
    			containerName: "sc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 00:07:21 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  10. pkg/kube/inject/app_probe_test.go

    )
    
    func TestFindSidecar(t *testing.T) {
    	proxy := corev1.Container{Name: "istio-proxy"}
    	app := corev1.Container{Name: "app"}
    	for _, tc := range []struct {
    		name       string
    		containers *corev1.Pod
    		want       *corev1.Container
    	}{
    		{
    			name:       "only-sidecar",
    			containers: &corev1.Pod{Spec: corev1.PodSpec{Containers: []corev1.Container{proxy}}},
    			want:       &proxy,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.6K bytes
    - Viewed (0)
Back to top