Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 397 for untainer (0.33 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

        }
    
        def "registering creation rules to create a task using legacy container DSL that is already defined using container DSL"() {
            when:
            buildFile << """
                class MyPlugin extends RuleSource {
                    @Mutate
                    void addTaskInContainer(TaskContainer tasks) {
                        println("create task in container")
                        tasks.create("foo") {
                            doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		},
    		{
    			// Test pod has 1 init container restarting and 1 container not running
    			api.Pod{
    				ObjectMeta: metav1.ObjectMeta{Name: "test7"},
    				Spec:       api.PodSpec{InitContainers: make([]api.Container, 1), Containers: make([]api.Container, 1)},
    				Status: api.PodStatus{
    					Phase: "podPhase",
    					InitContainerStatuses: []api.ContainerStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    				reason = container.State.Waiting.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason != "" {
    				reason = container.State.Terminated.Reason
    			} else if container.State.Terminated != nil && container.State.Terminated.Reason == "" {
    				if container.State.Terminated.Signal != 0 {
    					reason = fmt.Sprintf("Signal:%d", container.State.Terminated.Signal)
    				} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    					ExitCode:    5,
    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For Unknown Container Status:
    		// * In certain situations a container can be running and fail to retrieve the status which results in
    		// * a transition to the Unknown state. Prior to this fix, a container would make an invalid transition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/files/gateway-injection-template.yaml

    {{- $containers := list }}
    {{- range $index, $container := .Spec.Containers }}{{ if not (eq $container.Name "istio-proxy") }}{{ $containers = append $containers $container.Name }}{{end}}{{- end}}
    metadata:
      labels:
        service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

            readAttributesUsing(attributesFactory, managedFactories).asImmutable()
    }
    
    
    private
    suspend fun WriteContext.writeAttributes(container: AttributeContainer) {
        writeCollection(container.keySet()) { attribute ->
            writeAttribute(attribute)
            val value = container.getAttribute(attribute)
            writeAttributeValue(value)
        }
    }
    
    
    private
    suspend fun ReadContext.readAttributesUsing(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. cluster/gce/windows/smoke-test.sh

    }
    
    function test_windows_node_to_windows_pod {
      echo "TODO: ${FUNCNAME[0]}"
    }
    
    # TODO(pjh): this test failed for me once with
    #   error: unable to upgrade connection: container not found ("nettest")
    # Maybe the container crashed for some reason? Investigate if it happens more.
    #
    # TODO(pjh): another one-time failure:
    #   error: unable to upgrade connection: Authorization error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. src/internal/coverage/rtcov/rtcov.go

    }
    
    // CovCounterBlob is a container for encapsulating a counter section
    // (BSS variable) for an instrumented Go module. Here "counters"
    // points to the counter payload and "len" is the number of uint32
    // entries in the section.
    type CovCounterBlob struct {
    	Counters *uint32
    	Len      uint64
    }
    
    // Meta is the top-level container for bits of state related to
    // code coverage meta-data in the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

            private final PlexusContainer container;
    
            @Inject
            public LifecycleWrapperProvider(PlexusContainer container) {
                this.container = container;
            }
    
            @Override
            public Collection<Lifecycle> provides() {
                try {
                    Map<String, org.apache.maven.lifecycle.Lifecycle> all =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/files/gateway-injection-template.yaml

    {{- $containers := list }}
    {{- range $index, $container := .Spec.Containers }}{{ if not (eq $container.Name "istio-proxy") }}{{ $containers = append $containers $container.Name }}{{end}}{{- end}}
    metadata:
      labels:
        service.istio.io/canonical-name: {{ index .ObjectMeta.Labels `service.istio.io/canonical-name` | default (index .ObjectMeta.Labels `app.kubernetes.io/name`) | default (index .ObjectMeta.Labels `app`) | default .DeploymentMeta.Name  | quote }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top