Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for exit_node (0.16 sec)

  1. 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)
  2. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                }
                exitCode = 0;
            } catch (final ContainerNotAvailableException e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("ThumbnailGenerator is stopped.", e);
                } else if (logger.isInfoEnabled()) {
                    logger.info("ThumbnailGenerator is stopped.");
                }
                exitCode = Constants.EXIT_FAIL;
            } catch (final Throwable t) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleContainer.groovy

            dockerClient.execStartCmd(execCreateCmdResponse.getId()).exec(callback).awaitCompletion()
            Integer exitCode = dockerClient.inspectExecCmd(execCreateCmdResponse.getId()).exec().exitCode
            return new GradleExecResult(exitCode, stdoutConsumer.toString(Charsets.UTF_8), stderrConsumer.toString(Charsets.UTF_8))
        }
    
        private static boolean isRunning(InspectContainerResponse containerInfo) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. src/crypto/internal/boring/build-goboring.sh

    	sub(/\(.*/, "", name)
    	print "check_func(" name ")" > "goboringcrypto.x"
    	print name > "syms.txt"
    	next
    }
    
    {
    	print FILENAME ":" NR ": unexpected line: " $0 > "/dev/stderr"
    	exitcode = 1
    }
    
    END {
    	exit exitcode
    }
    EOF
    
    cat >boringh.awk <<'EOF'
    /^\/\/ #include/ {sub(/\/\//, ""); print > "goboringcrypto0.h"; next}
    /typedef struct|enum ([a-z_]+ )?{|^[ \t]/ {print >"goboringcrypto1.h";next}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationFailedException.java

            this.compilerPartialResult = compilerPartialResult;
        }
    
        public CompilationFailedException(int exitCode) {
            super(String.format("Compilation failed with exit code %d; see the compiler error output for details.", exitCode));
            this.compilerPartialResult = null;
        }
    
        public CompilationFailedException(Throwable cause) {
            super(cause);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. src/runtime/fds_test.go

    		Env:   env,
    		Files: []*os.File{},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    	ps, err := proc.Wait()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if ps.ExitCode() != 0 {
    		t.Fatalf("testfds failed: %d", ps.ExitCode())
    	}
    
    	fc, err := os.ReadFile(outputPath)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if string(fc) != "" {
    		t.Errorf("unexpected file content, got: %q", string(fc))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 25 16:33:33 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/nm/nm.go

    	filePrefix = len(args) > 1
    	if len(args) == 0 {
    		flag.Usage()
    	}
    
    	for _, file := range args {
    		nm(file)
    	}
    
    	os.Exit(exitCode)
    }
    
    var exitCode = 0
    
    func errorf(format string, args ...any) {
    	log.Printf(format, args...)
    	exitCode = 1
    }
    
    func nm(file string) {
    	f, err := objfile.Open(file)
    	if err != nil {
    		errorf("%v", err)
    		return
    	}
    	defer f.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K 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