Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 95 for exit2 (0.09 sec)

  1. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      auto c = ops::Add(root.WithOpName("C"), a, b);
      auto enter = ops::internal::Enter(root, c, "aframe");
      auto next_iter = ops::NextIteration(root, enter);
      auto exit = ops::internal::Exit(root, next_iter);
      auto d = ops::Add(root.WithOpName("D"), c, exit);
    
      std::unique_ptr<Graph> graph(new Graph(OpRegistry::Global()));
      TF_EXPECT_OK(root.ToGraph(graph.get()));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	// we have not yet started cycle number gcTrigger.n (relative
    	// to work.cycles).
    	gcTriggerCycle
    )
    
    // test reports whether the trigger condition is satisfied, meaning
    // that the exit condition for the _GCoff phase has been met. The exit
    // condition should be tested when allocating.
    func (t gcTrigger) test() bool {
    	if !memstats.enablegc || panicking.Load() != 0 || gcphase != _GCoff {
    		return false
    	}
    	switch t.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    }
    
    func (d *dwctxt) lookupOrDiag(n string) loader.Sym {
    	symIdx := d.ldr.Lookup(n, 0)
    	if symIdx == 0 {
    		Exitf("dwarf: missing type: %s", n)
    	}
    	if len(d.ldr.Data(symIdx)) == 0 {
    		Exitf("dwarf: missing type (no data): %s", n)
    	}
    
    	return symIdx
    }
    
    func (d *dwctxt) dotypedef(parent *dwarf.DWDie, name string, def *dwarf.DWDie) *dwarf.DWDie {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            methodVisitor.visitInsn(DUP);
            Label exit = new Label();
            Label elseValue = new Label();
            methodVisitor.visitJumpInsn(IFNONNULL, elseValue);
            methodVisitor.visitInsn(POP);
            pushDefaultValue(methodVisitor, primitiveClass);
            methodVisitor.visitJumpInsn(GOTO, exit);
            methodVisitor.visitLabel(elseValue);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    	kubeletFlags := options.NewKubeletFlags()
    
    	kubeletConfig, err := options.NewKubeletConfiguration()
    	// programmer error
    	if err != nil {
    		klog.ErrorS(err, "Failed to create a new kubelet configuration")
    		os.Exit(1)
    	}
    
    	cmd := &cobra.Command{
    		Use: componentKubelet,
    		Long: `The kubelet is the primary "node agent" that runs on each
    node. It can register the node with the apiserver using one of: the hostname; a flag to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. src/os/os_test.go

    	"testing"
    	"testing/fstest"
    	"time"
    )
    
    func TestMain(m *testing.M) {
    	if Getenv("GO_OS_TEST_DRAIN_STDIN") == "1" {
    		Stdout.Close()
    		io.Copy(io.Discard, Stdin)
    		Exit(0)
    	}
    
    	log.SetFlags(log.LstdFlags | log.Lshortfile)
    
    	Exit(m.Run())
    }
    
    var dot = []string{
    	"dir_unix.go",
    	"env.go",
    	"error.go",
    	"file.go",
    	"os_test.go",
    	"types.go",
    	"stat_darwin.go",
    	"stat_linux.go",
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" {
    		return
    	}
    	defer os.Exit(0)
    	fd3 := os.NewFile(3, "ephemeral-port-listener")
    	ln, err := net.FileListener(fd3)
    	if err != nil {
    		panic(err)
    	}
    	mux := NewServeMux()
    	mux.Handle("/", FileServer(Dir(os.TempDir())))
    	mux.HandleFunc("/quit", func(ResponseWriter, *Request) {
    		os.Exit(0)
    	})
    	s := &Server{Handler: mux}
    	err = s.Serve(ln)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    // If the command exits with a non-zero exit status, runGcc prints
    // details about what was run and exits.
    // Otherwise runGcc returns the data written to standard output and standard error.
    // Note that for some of the uses we expect useful data back
    // on standard error, but for those uses gcc must still exit 0.
    func runGcc(stdin []byte, args []string) (string, string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// DeleteCollection call. Delete requests for the items in a collection
    	// are issued in parallel.
    	DeleteCollectionWorkers int
    
    	// Decorator is an optional exit hook on an object returned from the
    	// underlying storage. The returned object could be an individual object
    	// (e.g. Pod) or a list type (e.g. PodList). Decorator is intended for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      )
      Log-Output "TODO: ${Message}"
    }
    
    # Writes a not-implemented warning with $Message to the console and exits the
    # script.
    function Log_NotImplemented {
      param (
        [parameter(Mandatory=$true)] [string]$Message
      )
      Log-Output "Not implemented yet: ${Message}" -Fatal
    }
    
    # Fails and exits if the route to the GCE metadata server is not present,
    # otherwise does nothing and emits nothing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top