Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 805 for livez (3.51 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    }
    
    // reset fills state with the live variables from live.
    func (state *stateAtPC) reset(live abt.T) {
    	slots, registers := state.slots, state.registers
    	for i := range slots {
    		slots[i] = VarLoc{}
    	}
    	for i := range registers {
    		registers[i] = registers[i][:0]
    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeSpec.groovy

    import org.gradle.api.tasks.util.PatternFilterable
    import spock.lang.Specification
    
    import java.util.function.Consumer
    
    class CompositeFileTreeSpec extends Specification {
        def "tree filtered by spec has same live dependencies as tree"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def dependencySource = Mock(TaskDependencyContainer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/method/main.go

    // Copyright 2020 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.
    
    // Issue 42579: methods of symbols exported from plugin must be live.
    
    package main
    
    import (
    	"plugin"
    	"reflect"
    )
    
    func main() {
    	p, err := plugin.Open("plugin.so")
    	if err != nil {
    		panic(err)
    	}
    
    	x, err := p.Lookup("X")
    	if err != nil {
    		panic(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 478 bytes
    - Viewed (0)
  4. test/fixedbugs/issue8761.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // issue 8761
    // used to confuse code generator into using temporary before initialization.
    // caused 'variable live at entry' error in liveness analysis.
    
    package p
    
    func f1() {
    	type C chan int
    	_ = [1][]C{[]C{make(chan int)}}
    }
    
    func f2() {
    	type C interface{}
    	_ = [1][]C{[]C{recover()}}
    }
    
    func f3() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 521 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/testdata/deadcode/reflectcall.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This example uses reflect.Value.Call, but not
    // reflect.{Value,Type}.Method. This should not
    // need to bring all methods live.
    
    package main
    
    import "reflect"
    
    func f() { println("call") }
    
    type T int
    
    func (T) M() {}
    
    func main() {
    	v := reflect.ValueOf(f)
    	v.Call(nil)
    	i := interface{}(T(1))
    	println(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 18:04:59 UTC 2020
    - 474 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    	for len(q) > 0 {
    		b := q[len(q)-1]
    		q = q[:len(q)-1]
    
    		if !b.Live {
    			b.Live = true
    			q = append(q, b.Succs...)
    		}
    	}
    
    	// Does control fall off the end of the function's body?
    	// Make implicit return explicit.
    	if b.current != nil && b.current.Live {
    		b.add(&ast.ReturnStmt{
    			Return: body.End() - 1,
    		})
    	}
    
    	return b.cfg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.22.md

    - Add a new Priority and Fairness rule that exempts all probes (`/readyz`, `/healthz`, `/livez`) to prevent restarting of healthy `kube-apiserver` instance by kubelet. ([#100678](https://github.com/kubernetes/kubernetes/pull/100678), [@tkashem](https://github.com/tkashem))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testplugin/testdata/method2/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // A type can be passed to a plugin and converted to interface
    // there. So its methods need to be live.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/method2/p"
    )
    
    var t p.T
    
    type I interface{ M() }
    
    func main() {
    	pl, err := plugin.Open("method2.so")
    	if err != nil {
    		panic(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 549 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/method3/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // An unexported method can be reachable from the plugin via interface
    // when a package is shared. So it need to be live.
    
    package main
    
    import (
    	"plugin"
    
    	"testplugin/method3/p"
    )
    
    var i p.I
    
    func main() {
    	pl, err := plugin.Open("method3.so")
    	if err != nil {
    		panic(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 533 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top