Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for exit_node (0.23 sec)

  1. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

                exitCode = process(options);
            } catch (final ContainerNotAvailableException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("SuggestCreator is stopped.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("SuggestCreator is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. pkg/controller/job/pod_failure_policy_test.go

    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 0,
    								},
    							},
    						},
    					},
    					ContainerStatuses: []v1.ContainerStatus{
    						{
    							Name: "main-container",
    							State: v1.ContainerState{
    								Terminated: &v1.ContainerStateTerminated{
    									ExitCode: 111,
    								},
    							},
    						},
    						{
    							Name: "suppport-container",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/core.v1.PodStatusResult.json

                "reason": "reasonValue",
                "message": "messageValue"
              },
              "running": {
                "startedAt": "2001-01-01T01:01:01Z"
              },
              "terminated": {
                "exitCode": 1,
                "signal": 2,
                "reason": "reasonValue",
                "message": "messageValue",
                "startedAt": "2005-01-01T01:01:01Z",
                "finishedAt": "2006-01-01T01:01:01Z",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/language/swift/SwiftPmRunner.groovy

        }
    
        ExecOutput build() {
            def result = run()
            if (result.exitCode != 0) {
                throw new AssertionError("Swift PM exited with non-zero exit code. Output:\n${result.out}")
            }
            return result
        }
    
        ExecOutput buildAndFails() {
            def result = run()
            if (result.exitCode == 0) {
                throw new AssertionError("Swift PM unexpectedly succeeded. Output:\n${result.out}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/testUtils.kt

            addAll(listOf("-output", testKlib.absolutePathString()))
        }
    
        val compileResult = callCompilerWithoutOutputInterceptor(arguments.toTypedArray())
    
        check(compileResult.exitCode == ExitCode.OK) {
            "Compilation error: $compileResult"
        }
    
        return testKlib
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/testdata/pushback.go

    package main
    
    type Node struct {
    	Circular bool
    }
    
    type ExtNode[V any] struct {
    	v V
    	Node
    }
    
    type List[V any] struct {
    	root *ExtNode[V]
    	len  int
    }
    
    func (list *List[V]) PushBack(arg V) {
    	if list.len == 0 {
    		list.root = &ExtNode[V]{v: arg}
    		list.root.Circular = true
    		list.len++
    		return
    	}
    	list.len++
    }
    
    func main() {
    	var v List[int]
    	v.PushBack(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 20:47:54 UTC 2021
    - 360 bytes
    - Viewed (0)
  7. cni/pkg/repair/repair_test.go

    					Terminated: &corev1.ContainerStateTerminated{
    						Message:  terminationMessage,
    						ExitCode: int32(exitCode),
    					},
    				},
    			},
    		})
    	}
    
    	cases := []struct {
    		name   string
    		config config.RepairConfig
    		pod    *corev1.Pod
    		want   bool
    	}{
    		{
    			"Testing OK pod with only ExitCode check",
    			config.RepairConfig{
    				SidecarAnnotation: "sidecar.istio.io/status",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. pkg/controller/job/pod_failure_policy.go

    			if containerStatus.State.Terminated.ExitCode != 0 {
    				if isOnExitCodesOperatorMatching(containerStatus.State.Terminated.ExitCode, requirement) {
    					return &containerStatus
    				}
    			}
    		}
    	}
    	return nil
    }
    
    func isOnExitCodesOperatorMatching(exitCode int32, requirement *batch.PodFailurePolicyOnExitCodesRequirement) bool {
    	switch requirement.Operator {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 20:44:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/client-go/applyconfigurations/core/v1/containerstateterminated.go

    )
    
    // ContainerStateTerminatedApplyConfiguration represents an declarative configuration of the ContainerStateTerminated type for use
    // with apply.
    type ContainerStateTerminatedApplyConfiguration struct {
    	ExitCode    *int32   `json:"exitCode,omitempty"`
    	Signal      *int32   `json:"signal,omitempty"`
    	Reason      *string  `json:"reason,omitempty"`
    	Message     *string  `json:"message,omitempty"`
    	StartedAt   *v1.Time `json:"startedAt,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fail_newline.txt

    cd fail
    ! go test .
    ! stderr .
    stdout '^exitcode=1\n'
    stdout '^FAIL\s+example/fail'
    
    # In local directory mode output is streamed, so we don't know
    # whether the test printed anything at all, so we print the exit code
    # (just in case it failed without emitting any output at all),
    # and that happens to add the needed newline as well.
    ! go test
    ! stderr .
    stdout '^exitcode=1exit status 1\n'
    stdout '^FAIL\s+example/fail'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top