Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 397 for exit2 (0.14 sec)

  1. docs/bucket/replication/setup_ilm_expiry_replication.sh

    	echo "BUG: ILM expiry rules prefix not replicated to 'siteb'"
    	exit 1
    fi
    if [ "${ntagName1}" != "ntag1" ] || [ "${ntagVal1}" != "nval1" ] || [ "${ntagName2}" != "ntag2" ] || [ "${ntagVal2}" != "nval2" ]; then
    	echo "BUG: ILM expiry rules tags not replicated to 'siteb'"
    	exit 1
    fi
    if [ "${st}" != "Disabled" ]; then
    	echo "BUG: ILM expiry rules status not replicated to 'siteb'"
    	exit 1
    fi
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference_test.cc

        auto loop_cond = ops::LoopCond(scope.WithOpName("while/LoopCond"), less);
        auto switch_node =
            ops::Switch(scope.WithOpName("while/Switch"), merge.output, loop_cond);
        auto exit = ops::internal::Exit(scope.WithOpName("while/Exit"),
                                        switch_node.output_false);
        auto identity = ops::Identity(scope.WithOpName("while/Identity"),
                                      switch_node.output_true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/os/signal/signal_cgo_test.go

    		fmt.Fprintf(os.Stderr, "error writing byte to PTY: %v\n", err)
    		os.Exit(1)
    	}
    
    	_, err := pty.Read(b[:])
    	if err != nil {
    		fmt.Fprintln(os.Stderr, err)
    		os.Exit(1)
    	}
    	if b[0] == '\n' {
    		// This is what we expect
    		fmt.Println("read newline")
    	} else {
    		fmt.Fprintf(os.Stderr, "read 1 unexpected byte: %q\n", b)
    		os.Exit(1)
    	}
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    		// Just print a stack trace and exit.
    		gp.m.dying = 2
    		print("panic during panic\n")
    		return false
    	case 2:
    		// This is a genuine bug in the runtime, we couldn't even
    		// print the stack trace successfully.
    		gp.m.dying = 3
    		print("stack trace unavailable\n")
    		exit(4)
    		fallthrough
    	default:
    		// Can't even print! Just exit.
    		exit(5)
    		return false // Need to return something.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. cluster/gce/windows/smoke-test.sh

             Write-Host \"curl $service_address got expected exception\"
             exit 0 \`
           } else { \`
             Write-Host \"curl $service_address got unexpected result/exception: \$result\"
             exit 1 \`
           }" > $output_file; then
        cleanup_deployments
        echo "Failing output: $(cat $output_file)"
        echo "FAILED: ${FUNCNAME[0]}"
        exit 1
      fi
    }
    
    function test_kube_dns_in_windows_pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. pkg/controller/job/pod_failure_policy_test.go

    							},
    						},
    					},
    				},
    			},
    			wantJobFailureMessage: ptr.To("Container main-container for pod default/mypod failed with exit code 1 matching FailJob rule at index 0"),
    			wantCountFailed:       true,
    			wantAction:            &failJob,
    		},
    		"second jobfail rule matched for exit codes": {
    			podFailurePolicy: &batch.PodFailurePolicy{
    				Rules: []batch.PodFailurePolicyRule{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Output a = ops::Const(root.WithOpName("a"), Input::Initializer(0.0));
      Output enter =
          ops::internal::Enter(root.WithOpName("enter"), a, "only_frame");
      Output exit = ops::internal::Exit(root.WithOpName("exit"), enter);
      Output b = ops::Add(root.WithOpName("b"), a, exit);
    
      FixupSourceAndSinkEdges(root.graph());
    
      GraphCycles cycles;
      TF_ASSERT_OK(CreateCycleDetectionGraph(root.graph(), &cycles).status());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/init.go

    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	if cfg.BuildRace && cfg.BuildASan {
    		fmt.Fprintf(os.Stderr, "go: may not use -race and -asan simultaneously\n")
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	if cfg.BuildMSan && cfg.BuildASan {
    		fmt.Fprintf(os.Stderr, "go: may not use -msan and -asan simultaneously\n")
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 19:13:34 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. hack/make-rules/test-e2e-node.sh

        exit 1
      fi
    
      # Get the compute project
      project=$(gcloud info --format='value(config.project)')
      if [[ ${project} == "" ]]; then
        echo "Could not find gcloud project when running: \`gcloud info --format='value(config.project)'\`"
        exit 1
      fi
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tests/integration/README.md

                            })
                        // Exits before T2a and T2b are run.
                    })
            })
    }
    ```
    
    In the example above, non-parallel parents T1 and T2 contain parallel children T1a, T1b, T2a, T2b.
    
    Since both T1 and T2 are non-parallel, they are run synchronously: T1 followed by T2. After T1 exits,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top