Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for halted (0.26 sec)

  1. src/syscall/zerrors_solaris_amd64.go

    	36:  "identifier removed",
    	37:  "channel number out of range",
    	38:  "level 2 not synchronized",
    	39:  "level 3 halted",
    	40:  "level 3 reset",
    	41:  "link number out of range",
    	42:  "protocol driver not attached",
    	43:  "no CSI structure available",
    	44:  "level 2 halted",
    	45:  "deadlock situation detected/avoided",
    	46:  "no record locks available",
    	47:  "operation canceled",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go

    	{38, "EL2NSYNC", "level 2 not synchronized"},
    	{39, "EL3HLT", "level 3 halted"},
    	{40, "EL3RST", "level 3 reset"},
    	{41, "ELNRNG", "link number out of range"},
    	{42, "EUNATCH", "protocol driver not attached"},
    	{43, "ENOCSI", "no CSI structure available"},
    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock condition if locked"},
    	{46, "ENOTREADY", "device not ready"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	{38, "EL2NSYNC", "level 2 not synchronized"},
    	{39, "EL3HLT", "level 3 halted"},
    	{40, "EL3RST", "level 3 reset"},
    	{41, "ELNRNG", "link number out of range"},
    	{42, "EUNATCH", "protocol driver not attached"},
    	{43, "ENOCSI", "no CSI structure available"},
    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock condition if locked"},
    	{46, "ENOTREADY", "device not ready"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go

    	{38, "EL2NSYNC", "level 2 not synchronized"},
    	{39, "EL3HLT", "level 3 halted"},
    	{40, "EL3RST", "level 3 reset"},
    	{41, "ELNRNG", "link number out of range"},
    	{42, "EUNATCH", "protocol driver not attached"},
    	{43, "ENOCSI", "no CSI structure available"},
    	{44, "EL2HLT", "level 2 halted"},
    	{45, "EDEADLK", "deadlock situation detected/avoided"},
    	{46, "ENOLCK", "no record locks available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_client_test.go

    					*called++
    					return checkFields(c, called, "server")
    				}
    			},
    			configureClient: func(config *Config, called *int) {
    				config.VerifyConnection = func(c ConnectionState) error {
    					*called++
    					return checkFields(c, called, "client")
    				}
    			},
    		},
    		{
    			name: "RequestClientCert",
    			configureServer: func(config *Config, called *int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  6. src/runtime/traceback.go

    // valid and unchanging. The traceback function may also be called
    // deeper in the call stack on the same thread that recorded the
    // context. The traceback function may be called multiple times with
    // the same Context value; it will usually be appropriate to cache the
    // result, if possible, the first time this is called for a specific
    // context value.
    //
    // If the traceback function is called from a signal handler on a Unix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/testing/testing.go

    		c.helperPCs[pc[0]] = struct{}{}
    		c.helperNames = nil // map will be recreated next time it is needed
    	}
    }
    
    // Cleanup registers a function to be called when the test (or subtest) and all its
    // subtests complete. Cleanup functions will be called in last added,
    // first called order.
    func (c *common) Cleanup(f func()) {
    	c.checkFuzzFn("Cleanup")
    	var pc [maxStackLen]uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/crypto/tls/tls_test.go

    	const expectedCount = 9
    	called := 0
    
    	c1 := Config{
    		Time: func() time.Time {
    			called |= 1 << 0
    			return time.Time{}
    		},
    		GetCertificate: func(*ClientHelloInfo) (*Certificate, error) {
    			called |= 1 << 1
    			return nil, nil
    		},
    		GetClientCertificate: func(*CertificateRequestInfo) (*Certificate, error) {
    			called |= 1 << 2
    			return nil, nil
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    		proxier.Sync()
    	}
    }
    
    // OnServiceDelete is called whenever deletion of an existing service
    // object is observed.
    func (proxier *Proxier) OnServiceDelete(service *v1.Service) {
    	proxier.OnServiceUpdate(service, nil)
    
    }
    
    // OnServiceSynced is called once all the initial event handlers were
    // called and the state is fully propagated to local cache.
    func (proxier *Proxier) OnServiceSynced() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top