Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 805 for livez (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    }
    
    // Follows the structure of Live-variable analysis. It is a form of
    // CFG (Control Flow Graph) analysis, often used in compilers.
    //
    // A variable is live if it holds a value that may be used in the future.
    // It is live-in at node n if it is live on any of the node's in-edges.
    // It is live-out at node n if it is live on any of the node's out-edges.
    // def[n] refers to values that are defined at node n.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. src/runtime/mgcstack.go

    // Once we're done processing all the pointers (including the ones we
    // added during processing), we've found all the stack objects that
    // are live. Any dead stack objects are not scanned and their contents
    // will not keep heap objects live. Unlike the main garbage
    // collection, we can't sweep the dead stack objects; they live on in
    // a moribund state until the stack frame that contains them is
    // popped.
    //
    // A stack can look like this:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/os/example_test.go

    	// Output:
    	// Good morning, Gopher!
    }
    
    func ExampleExpandEnv() {
    	os.Setenv("NAME", "gopher")
    	os.Setenv("BURROW", "/usr/gopher")
    
    	fmt.Println(os.ExpandEnv("$NAME lives in ${BURROW}."))
    
    	// Output:
    	// gopher lives in /usr/gopher.
    }
    
    func ExampleLookupEnv() {
    	show := func(key string) {
    		val, ok := os.LookupEnv(key)
    		if !ok {
    			fmt.Printf("%s not set\n", key)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/testdata/mergelocals/integration.go

    	p1.x[i] = j
    	r += p1.x[j]
    	p2.x[i] = j
    	r += p2.x[j]
    	if j != 505 {
    		var xp3 Pointery2
    		xp3.x[i] = j
    		r += xp3.x[j]
    	}
    
    	if i == j*2 {
    		// p2 live on this path
    		p2.x[i] += j
    		r += p2.x[j]
    	} else {
    		// p2 not live on this path
    		var xp4 Pointery2
    		xp4.x[i] = j
    		r += xp4.x[j]
    	}
    
    	return r + G
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 17:42:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. docs/en/docs/contributing.md

    ## Docs
    
    First, make sure you set up your environment as described above, that will install all the requirements.
    
    ### Docs live
    
    During local development, there is a script that builds the site and checks for any changes, live-reloading:
    
    <div class="termy">
    
    ```console
    $ python ./scripts/docs.py live
    
    <span style="color: green;">[INFO]</span> Serving on http://127.0.0.1:8008
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        PipedOutputStream getStdinPipe();
    
        /**
         * Returns the stdout output currently received from the build. This is live.
         */
        String getStandardOutput();
    
        /**
         * Returns the stderr output currently received from the build. This is live.
         */
        String getErrorOutput();
    
        /**
         * Forcefully kills the build and returns immediately. Does not block until the build has finished.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=forceLiveLookupTTL, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup expires
    	fakeClock.Step(time.Millisecond)
    
    	// verify create operations in the namespace don't force a live lookup after the timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. test/abi/uglyfib.go

    //go:registerparams
    //go:noinline
    func f(x int, xm1, xm2, p *int) {
    	var y = [2]int{x - 4, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    	g(*xm1, xm2, &x, p)   // xm1 is no longer live.
    	h(*xm2, &x, &y[0], p) // xm2 is no longer live, but was spilled.
    }
    
    //go:registerparams
    //go:noinline
    func g(x int, xm1, xm2, p *int) {
    	var y = [3]int{x - 4, 0, 0}
    	if x < 2 {
    		*p += x
    		return
    	}
    	x -= 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. test/fixedbugs/bug484.go

    // The liveness code used to say that, in func g, s was live
    // starting at its declaration, because it appears to have its
    // address taken by the closure (different s, but the parser
    // gets slightly confused, a separate bug). The liveness analysis
    // saw s as having its address taken but the register optimizer
    // did not. This mismatch meant that s would be marked live
    // (and therefore initialized) at the call to f, but the register optimizer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    const (
    	// PluginName indicates the name of admission plug-in
    	PluginName = "NamespaceLifecycle"
    	// how long a namespace stays in the force live lookup cache before expiration.
    	forceLiveLookupTTL = 30 * time.Second
    	// how long to wait for a missing namespace before re-checking the cache (and then doing a live lookup)
    	// this accomplishes two things:
    	// 1. It allows a watch-fed cache time to observe a namespace creation event
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
Back to top