Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 367 for exit_a (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_gc_test.go

    				makeGCSandbox(pods[0], 1, runtimeapi.PodSandboxState_SANDBOX_READY, true, false, 1),
    				// exited sandbox without containers.
    				makeGCSandbox(pods[0], 0, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 0),
    				// exited sandbox with containers.
    				makeGCSandbox(pods[1], 1, runtimeapi.PodSandboxState_SANDBOX_NOTREADY, true, false, 1),
    				// exited sandbox without containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/prober_manager_test.go

    // Wait for the given workers to exit & clean up.
    func waitForWorkerExit(t *testing.T, m *manager, workerPaths []probeKey) error {
    	for _, w := range workerPaths {
    		condition := func() (bool, error) {
    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. misc/wasm/wasm_exec.js

    			}
    
    			this._inst.exports.run(argc, argv);
    			if (this.exited) {
    				this._resolveExitPromise();
    			}
    			await this._exitPromise;
    		}
    
    		_resume() {
    			if (this.exited) {
    				throw new Error("Go program has already exited");
    			}
    			this._inst.exports.resume();
    			if (this.exited) {
    				this._resolveExitPromise();
    			}
    		}
    
    		_makeFuncWrapper(id) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. platforms/software/security/src/test/resources/keyrings/valid-with-extra-metadata.keys

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 65.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformErrorHandlerTest.groovy

            handler.enterClassLoadingScope("some/Class")
            handler.exitClassLoadingScope()
    
            then:
            noExceptionThrown()
        }
    
        def "rethrows the #expectedExceptionClass.simpleName if the scope exits with #exception.class.simpleName"() {
            given:
            TransformErrorHandler handler = handler()
    
            when:
            handler.enterClassLoadingScope("some/Class")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/main8.c

    // license that can be found in the LICENSE file.
    
    // Test preemption.
    
    #include <stdlib.h>
    
    #include "libgo8.h"
    
    int main() {
    	GoFunction8();
    
    	// That should have exited the program.
    	abort();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 306 bytes
    - Viewed (0)
  7. docs/en/docs/img/deployment/https/https08.drawio

                    </mxCell>
                    <mxCell id="8" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;exitX=0.092;exitY=1.01;exitDx=0;exitDy=0;dashed=1;exitPerimeter=0;" parent="1" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
                                <mxPoint x="800" y="521"/>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/concepts/process-ram.drawio

                    </mxCell>
                    <mxCell id="14" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;strokeWidth=3;exitX=0.092;exitY=1.01;exitDx=0;exitDy=0;dashed=1;exitPerimeter=0;" parent="1" source="11" target="12" edge="1">
                        <mxGeometry relative="1" as="geometry">
                            <Array as="points">
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/pleg.go

    	ContainerStarted PodLifeCycleEventType = "ContainerStarted"
    	// ContainerDied - event type when the new state of container is exited.
    	ContainerDied PodLifeCycleEventType = "ContainerDied"
    	// ContainerRemoved - event type when the old state of container is exited.
    	ContainerRemoved PodLifeCycleEventType = "ContainerRemoved"
    	// PodSync is used to trigger syncing of a pod when the observed change of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 16:14:26 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/generic_test.go

    			ID: "4567",
    			Containers: []*kubecontainer.Container{
    				createTestContainer("c1", kubecontainer.ContainerStateExited),
    			},
    		}},
    	}
    	pleg.Relist()
    	// Report every running/exited container if we see them for the first time.
    	expected := []*PodLifecycleEvent{
    		{ID: "1234", Type: ContainerStarted, Data: "c2"},
    		{ID: "4567", Type: ContainerDied, Data: "c1"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
Back to top