Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for eventErr (0.15 sec)

  1. pkg/volume/util/operationexecutor/operation_generator.go

    		if err != nil || attachableVolumePlugin == nil {
    			eventErr, detailedErr := volumeToAttach.GenerateError("AttachVolume.FindAttachablePluginBySpec failed", err)
    			return volumetypes.NewOperationContext(eventErr, detailedErr, migrated)
    		}
    
    		volumeAttacher, newAttacherErr := attachableVolumePlugin.NewAttacher()
    		if newAttacherErr != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  2. pkg/volume/util/types/types.go

    	EventRecorderFunc func(*error)
    	CompleteFunc      func(CompleteFuncParam)
    }
    
    type OperationContext struct {
    	EventErr    error
    	DetailedErr error
    	Migrated    bool
    }
    
    func NewOperationContext(eventErr, detailedErr error, migrated bool) OperationContext {
    	return OperationContext{
    		EventErr:    eventErr,
    		DetailedErr: detailedErr,
    		Migrated:    migrated,
    	}
    }
    
    type CompleteFuncParam struct {
    	Err      *error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 17:23:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/runtime/netpoll.go

    	// before calling netpollunblock, because publishInfo is what
    	// stops netpollblock from blocking anew
    	// (by changing the result of netpollcheckerr).
    	// atomicInfo also holds the eventErr bit,
    	// recording whether a poll event on the fd got an error;
    	// atomicInfo is the only source of truth for that bit.
    	atomicInfo atomic.Uint32 // atomic pollInfo
    
    	// rg, wg are accessed atomically and hold g pointers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. pkg/volume/util/nestedpendingoperations/nestedpendingoperations.go

    				key:              opKey,
    				operationPending: true,
    				operationName:    generatedOperations.OperationName,
    				expBackoff:       exponentialbackoff.ExponentialBackoff{},
    			})
    	}
    
    	go func() (eventErr, detailedErr error) {
    		// Handle unhandled panics (very unlikely)
    		defer k8sRuntime.HandleCrash()
    		// Handle completion of and error, if any, from operationFunc()
    		defer grm.operationComplete(opKey, &detailedErr)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 26 01:29:17 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  5. src/crypto/tls/quic.go

    type quicState struct {
    	events    []QUICEvent
    	nextEvent int
    
    	// eventArr is a statically allocated event array, large enough to handle
    	// the usual maximum number of events resulting from a single call: transport
    	// parameters, Initial data, Early read secret, Handshake write and read
    	// secrets, Handshake data, Application write secret, Application data.
    	eventArr [8]QUICEvent
    
    	started  bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin_test.go

        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    func buildMockConf(ambientEnabled bool, eventURL string) string {
    	return fmt.Sprintf(
    		mockConfTmpl,
    		"1.0.0",
    		"1.0.0",
    		"eth0",
    		testSandboxDirectory,
    		eventURL,
    		ambientEnabled,
    		"mock",
    	)
    }
    
    func buildFakePodAndNSForClient() (*corev1.Pod, *corev1.Namespace) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. go.work.sum

    cloud.google.com/go/errorreporting v0.3.0 h1:kj1XEWMu8P0qlLhm3FwcaFsUvXChV/OraZwA70trRR0=
    cloud.google.com/go/essentialcontacts v1.6.2 h1:OEJ0MLXXCW/tX1fkxzEZOsv/wRfyFsvDVNaHWBAvoV0=
    cloud.google.com/go/eventarc v1.13.0 h1:xIP3XZi0Xawx8DEfh++mE2lrIi5kQmCr/KcWhJ1q0J4=
    cloud.google.com/go/filestore v1.7.1 h1:Eiz8xZzMJc5ppBWkuaod/PUdUZGCFR8ku0uS+Ah2fRw=
    cloud.google.com/go/firestore v1.11.0 h1:PPgtwcYUOXV2jFe1bV3nda3RCrOa8cvBjTOn2MQVfW8=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/go.sum

    cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU=
    cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4=
    cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI=
    cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/go.sum

    cloud.google.com/go/errorreporting v0.3.0/go.mod h1:xsP2yaAp+OAW4OIm60An2bbLpqIhKXdWR/tawvl7QzU=
    cloud.google.com/go/essentialcontacts v1.6.2/go.mod h1:T2tB6tX+TRak7i88Fb2N9Ok3PvY3UNbUsMag9/BARh4=
    cloud.google.com/go/eventarc v1.13.0/go.mod h1:mAFCW6lukH5+IZjkvrEss+jmt2kOdYlN8aMx3sRJiAI=
    cloud.google.com/go/filestore v1.7.1/go.mod h1:y10jsorq40JJnjR/lQ8AfFbbcGlw3g+Dp8oN7i7FjV4=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 49.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * gce/kube-down: Parallelize IGM deletion, batch more ([#27302](https://github.com/kubernetes/kubernetes/pull/27302), [@zmerlynn](https://github.com/zmerlynn))
    * Enable dynamic allocation of heapster/eventer cpu request/limit ([#27185](https://github.com/kubernetes/kubernetes/pull/27185), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top