Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for exit_node (0.21 sec)

  1. tensorflow/cc/framework/gradients.cc

      }
    
      DCHECK(exit_node->IsExit());
      WhileContext* while_ctx = exit_node->while_ctx();
      DCHECK(while_ctx != nullptr);
    
      // Record 'summed_grads' as the backprop input associated with 'exit_node'
      std::map<Node*, Output>& backprops = while_backprops_[while_ctx];
      DCHECK(backprops.find(exit_node) == backprops.end());
      backprops[exit_node] = summed_grads;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //                  << "Failed to die on request " << i;
    //   }
    //
    //   ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
    //
    //   bool KilledBySIGHUP(int exit_code) {
    //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    //                  << "Failed to die on request " << i;
    //   }
    //
    //   ASSERT_EXIT(server.ExitNow(), ::testing::ExitedWithCode(0), "Exiting");
    //
    //   bool KilledBySIGHUP(int exit_code) {
    //     return WIFSIGNALED(exit_code) && WTERMSIG(exit_code) == SIGHUP;
    //   }
    //
    //   ASSERT_EXIT(client.HangUpServer(), KilledBySIGHUP, "Hanging up!");
    //
    // On the regular expressions used in death tests:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. tensorflow/cc/tools/freeze_saved_model_test.cc

      // initializing with `init_node`.
      Status InitializeSavedModelBundleSession(
          const GraphDef& graph_def, const string& init_node,
          SavedModelBundle* saved_model_bundle) {
        SessionOptions session_options;
        saved_model_bundle->session.reset(NewSession(session_options));
        TF_RETURN_IF_ERROR(saved_model_bundle->session->Create(graph_def));
        if (!init_node.empty()) {
          std::vector<Tensor> outputs;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            if (candidate.getExitCode().isPresent()) {
                int exitCode = candidate.getExitCode().get();
                if (OperatingSystem.current().isUnix() && exitCode > 127) {
                    LOGGER.warn("Worker daemon '" + candidate.getDisplayName() + "' exited unexpectedly after being killed with signal " + (exitCode - 128) + ".  This is likely because an external process has killed the worker.");
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

        }
    
        void finished(int exitCode) {
            if (exitCode != 0) {
                setEndStateInfo(ExecHandleState.FAILED, exitCode, null);
            } else {
                setEndStateInfo(ExecHandleState.SUCCEEDED, 0, null);
            }
        }
    
        void aborted(int exitCode) {
            if (exitCode == 0) {
                // This can happen on Windows
                exitCode = -1;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            int exitCode = process.waitFor()
            outputThread.join()
            errorThread.join()
    
            return new ExecOutput(exitCode, output.toString(), error.toString())
        }
    
        ExecOutput executeSuccess(List args, List env) {
            def result = execute(args, env)
            if (result.exitCode != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top