Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for runWait (0.29 sec)

  1. pkg/envoy/agent.go

    	}
    	if activeConnections > 0 {
    		log.Debugf("Active connections stats: %s", stats.String())
    	}
    	return activeConnections, nil
    }
    
    // runWait runs the start-up command as a go routine and waits for it to finish
    func (a *Agent) runWait(abortCh <-chan error) {
    	err := a.proxy.Run(abortCh)
    	a.proxy.Cleanup()
    	a.statusCh <- exitStatus{err: err}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.cfg.py

    from lit.llvm import llvm_config
    from lit.llvm.subst import ToolSubst
    
    # Lint for undefined variables is disabled as config is not defined inside this
    # file, instead config is injected by way of evaluating runlit.cfg.py from
    # runlit.site.cfg.py which in turn is evaluated by lit.py. The structure is
    # common for lit tests and intended to only persist temporarily (b/136126535).
    # pylint: disable=undefined-variable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/runlit.site.cfg.py

    # Let the main config do the real work.
    lit_config.load_config(
        config,
        os.path.join(
            os.path.join(real_test_srcdir, os.environ['TEST_WORKSPACE'],
                         'tensorflow/compiler/mlir/runlit.cfg.py')))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/BUILD

            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:IR",
        ],
    )
    
    filegroup(
        name = "litfiles",
        srcs = glob(["runlit*py"]),
        visibility = ["//tensorflow:__subpackages__"],
    )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/go/go_test.go

    	if runtime.Compiler == "gccgo" {
    		tg.runFail("build", "-gccgoflags=all=@x", "x")
    	} else {
    		tg.runFail("build", "-gcflags=all=@x", "x")
    	}
    	tg.grepStderr("invalid command-line argument @x in command", "did not reject @x during exec")
    
    	tg.tempFile("src/@x/x.go", "package x\n")
    	tg.setenv("GOPATH", tg.path("."))
    	tg.runFail("build", "@x")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/util.go

    	return constant.MakeFromLiteral(lit, kind2tok[kind], 0)
    }
    
    var kind2tok = [...]token.Token{
    	syntax.IntLit:    token.INT,
    	syntax.FloatLit:  token.FLOAT,
    	syntax.ImagLit:   token.IMAG,
    	syntax.RuneLit:   token.CHAR,
    	syntax.StringLit: token.STRING,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_test.go

    		flag.PrintDefaults()
    		if *bogoMode {
    			os.Exit(89)
    		}
    	}
    
    	flag.Parse()
    
    	if *bogoMode {
    		bogoShim()
    		os.Exit(0)
    	}
    
    	os.Exit(runMain(m))
    }
    
    func runMain(m *testing.M) int {
    	// Cipher suites preferences change based on the architecture. Force them to
    	// the version without AES acceleration for test consistency.
    	hasAESGCMHardwareSupport = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

            "@com_google_absl//absl/status:statusor",
            "@com_google_absl//absl/strings",
            "@llvm-project//llvm:Support",
            "@llvm-project//mlir:Support",
        ],
    )
    
    exports_files([
        "run_lit.sh",
    ])
    
    py_strict_library(
        name = "tac",
        srcs = [
            "tac.py",
        ],
        srcs_version = "PY3",
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/edit.go

    )
    
    type flagFunc func(string)
    
    func (f flagFunc) String() string     { return "" }
    func (f flagFunc) Set(s string) error { f(s); return nil }
    
    func init() {
    	cmdEdit.Run = runEdit // break init cycle
    
    	cmdEdit.Flag.Var(flagFunc(flagGodebug), "godebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagDropGodebug), "dropgodebug", "")
    	cmdEdit.Flag.Var(flagFunc(flagRequire), "require", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/operand.go

    	var kind BasicKind
    	switch k {
    	case syntax.IntLit:
    		kind = UntypedInt
    	case syntax.FloatLit:
    		kind = UntypedFloat
    	case syntax.ImagLit:
    		kind = UntypedComplex
    	case syntax.RuneLit:
    		kind = UntypedRune
    	case syntax.StringLit:
    		kind = UntypedString
    	default:
    		panic("unreachable")
    	}
    
    	val := makeFromLiteral(lit, k)
    	if val.Kind() == constant.Unknown {
    		x.mode = invalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top