Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 808 for live0 (0.37 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderIntegrationTest.groovy

            buildFile << """
                def t1 = tasks.register('myTask1', MyTask) {
                    text.set('Black')
                }
                def t2 = tasks.register('myTask2', MyTask) {
                    text.set('Lives')
                }
    
                def t3 = tasks.register('myTask3', MyTask) {
                    text.set('Matter')
                }
    
                tasks.register('combined', MyTask) {
                    text.set(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 15:32:52 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    		//
    		// The "pointer" we're moving across the backing array lives in one
    		// or the other of hp and hu as the loop proceeds.
    		//
    		// hp is live during most of the body of the loop. But it isn't live
    		// at the very top of the loop, when we haven't checked i<n yet, and
    		// it could point off the end of the backing store.
    		// hu is live only at the very top and very bottom of the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache_test.go

    	c := NewLRUExpireCache(10)
    	c.Add("long-lived", "12345", 10*time.Hour)
    
    	assertKeys(t, c.Keys(), []interface{}{"long-lived"})
    
    	expectEntry(t, c, "long-lived", "12345")
    }
    
    func TestSimpleRemove(t *testing.T) {
    	c := NewLRUExpireCache(10)
    	c.Add("long-lived", "12345", 10*time.Hour)
    	c.Remove("long-lived")
    
    	assertKeys(t, c.Keys(), []interface{}{})
    
    	expectNotEntry(t, c, "long-lived")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    }
    
    // AddBootSequenceHealthChecks adds health checks to the old healthz endpoint (for backwards compatibility reasons)
    // as well as livez and readyz. The livez grace period is defined by the value of the
    // command-line flag --livez-grace-period; before the grace period elapses, the livez health checks
    // will default to healthy. One may want to set a grace period in order to prevent the kubelet from restarting
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. test/fixedbugs/issue15747.go

    var b bool
    
    func f1(q *Q, xx []byte) interface{} { // ERROR "live at call to newobject: xx$" "live at entry to f1: xx$"
    	// xx was copied from the stack to the heap on the previous line:
    	// xx was live for the first two prints but then it switched to &xx
    	// being live. We should not see plain xx again.
    	if b {
    		global = &xx
    	}
    	xx, _, err := f2(xx, 5) // ERROR "live at call to f2: &xx$"
    	if err != nil {
    		return err
    	}
    	return nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/deadcode.go

    func liveValues(f *Func, reachable []bool) (live []bool, liveOrderStmts []*Value) {
    	live = f.Cache.allocBoolSlice(f.NumValues())
    	liveOrderStmts = f.Cache.allocValueSlice(f.NumValues())[:0]
    
    	// After regalloc, consider all values to be live.
    	// See the comment at the top of regalloc.go and in deadcode for details.
    	if f.RegAlloc != nil {
    		for i := range live {
    			live[i] = true
    		}
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 00:29:01 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. test/uintptrescapes2.go

    	F4(0, 1, uintptr(unsafe.Pointer(&v2)), 2) // ERROR "live at call to newobject: .?autotmp" "live at call to F4: .?autotmp" "escapes to heap" "stack object .autotmp_[0-9]+ unsafe.Pointer$"
    }
    
    func TestM2() {
    	var t T
    	var v int                                  // ERROR "moved to heap"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 24 18:24:24 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/stackalloc.go

    		s.interfere = s.interfere[:n]
    	} else {
    		s.interfere = make([][]ID, n)
    	}
    	live := f.newSparseSet(f.NumValues())
    	defer f.retSparseSet(live)
    	for _, b := range f.Blocks {
    		// Propagate liveness backwards to the start of the block.
    		// Two values interfere if one is defined while the other is live.
    		live.clear()
    		live.addAll(s.live[b.ID])
    		for i := len(b.Values) - 1; i >= 0; i-- {
    			v := b.Values[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 21:29:41 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	fs.DurationVar(&s.LivezGracePeriod, "livez-grace-period", s.LivezGracePeriod, ""+
    		"This option represents the maximum amount of time it should take for apiserver to complete its startup sequence "+
    		"and become live. From apiserver's start time to when this amount of time has elapsed, /livez will assume "+
    		"that unfinished post-start hooks will complete successfully and therefore return true.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. test/abi/result_live.go

    // errorcheck -0 -live
    
    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    type T struct { a, b, c, d string } // pass in registers, not SSA-able
    
    //go:registerparams
    func F() (r T) {
    	r.a = g(1) // ERROR "live at call to g: r"
    	r.b = g(2) // ERROR "live at call to g: r"
    	r.c = g(3) // ERROR "live at call to g: r"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 19 14:51:24 UTC 2021
    - 510 bytes
    - Viewed (0)
Back to top