Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,841 for halted (0.29 sec)

  1. pkg/proxy/metaproxier/meta_proxier.go

    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *metaProxier) OnServiceDelete(service *v1.Service) {
    	proxier.ipv4Proxier.OnServiceDelete(service)
    	proxier.ipv6Proxier.OnServiceDelete(service)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:28:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. test/fixedbugs/bug424.dir/main.go

    	if i.m() != "main.localT.m" {
    		println("BUG: localT:", i.m(), "called")
    	}
    
    	i = new(myT1)
    	if i.m() != "main.localT.m" {
    		println("BUG: myT1:", i.m(), "called")
    	}
    
    	i = new(myT2)
    	if i.m() != "main.localT.m" {
    		println("BUG: myT2:", i.m(), "called")
    	}
    
    	t3 := new(myT3)
    	if t3.m() != "main.localT.m" {
    		println("BUG: t3:", t3.m(), "called")
    	}
    	
    	i = new(myT3)
    	if i.m() != "main.localT.m" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/FilePropertyVisitor.java

     */
    public interface FilePropertyVisitor {
    
        /**
         * Called once per file property.
         * <p>
         * Only getProperty*() state methods may be called during.
         */
        void preProperty(VisitState state);
    
        /**
         * Called for each root of the current property.
         * <p>
         * {@link VisitState#getName()} and {@link VisitState#getPath()} may be called during.
         */
        void preRoot(VisitState state);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. cni/pkg/ipset/nldeps_mock.go

    func (m *MockedIpsetDeps) ipsetIPHashCreate(name string, v6 bool) error {
    	args := m.Called(name, v6)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) destroySet(name string) error {
    	args := m.Called(name)
    	return args.Error(0)
    }
    
    func (m *MockedIpsetDeps) addIP(name string, ip netip.Addr, ipProto uint8, comment string, replace bool) error {
    	args := m.Called(name, ip, ipProto, comment, replace)
    	return args.Error(0)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. test/reflectmethod1.go

    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    	called = true
    }
    
    var v M
    
    func main() {
    	reflect.TypeOf(v).Method(0).Func.Interface().(func(M))(v)
    	if !called {
    		panic("UniqueMethodName not called")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 578 bytes
    - Viewed (0)
  6. test/reflectmethod4.go

    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Value.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    	called = true
    }
    
    var v M
    
    func main() {
    	reflect.ValueOf(v).Method(0).Interface().(func())()
    	if !called {
    		panic("UniqueMethodName not called")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 22:07:02 UTC 2016
    - 573 bytes
    - Viewed (0)
  7. src/net/rpc/client.go

    	codec ClientCodec
    
    	reqMutex sync.Mutex // protects following
    	request  Request
    
    	mutex    sync.Mutex // protects following
    	seq      uint64
    	pending  map[uint64]*Call
    	closing  bool // user has called Close
    	shutdown bool // server has told us to stop
    }
    
    // A ClientCodec implements writing of RPC requests and
    // reading of RPC responses for the client side of an RPC session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. test/reflectmethod2.go

    // license that can be found in the LICENSE file.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.MethodByName is
    // never used. Test it here.
    
    package main
    
    import reflect1 "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    	called = true
    }
    
    var v M
    
    type MyType interface {
    	MethodByName(string) (reflect1.Method, bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 719 bytes
    - Viewed (0)
  9. test/reflectmethod3.go

    // license that can be found in the LICENSE file.
    
    // The linker can prune methods that are not directly called or
    // assigned to interfaces, but only if reflect.Type.Method is
    // never used. Test it here.
    
    package main
    
    import "reflect"
    
    var called = false
    
    type M int
    
    func (m M) UniqueMethodName() {
    	called = true
    }
    
    var v M
    
    type MyType interface {
    	Method(int) reflect.Method
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 11 21:19:20 UTC 2016
    - 651 bytes
    - Viewed (0)
  10. test/retjmp.dir/main.go

    func leaf2()
    
    var f1called, f2called, f3called, f4called bool
    
    func main() {
    	f()
    	if !f1called {
    		panic("f1 not called")
    	}
    	if !f2called {
    		panic("f2 not called")
    	}
    	leaf()
    	if !f3called {
    		panic("f3 not called")
    	}
    	leaf2()
    	if !f4called {
    		panic("f4 not called")
    	}
    }
    
    func f1() { f1called = true }
    func f2() { f2called = true }
    func f3() { f3called = true }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 22:42:08 UTC 2021
    - 655 bytes
    - Viewed (0)
Back to top