Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for esclusione (0.2 sec)

  1. cni/pkg/nodeagent/informers_test.go

    	fs.AssertExpectations(t)
    
    	// annotate Pod as disabled should cause only one RemovePodFromMesh to happen
    	fs.On("RemovePodFromMesh",
    		ctx,
    		mock.Anything,
    	).Once().Return(nil)
    
    	// label the pod for exclusion
    	labelsPatch := []byte(fmt.Sprintf(`{"metadata":{"labels":{"%s":"%s"}}}`,
    		constants.DataplaneModeLabel, constants.DataplaneModeNone))
    	_, err = client.Kube().CoreV1().Pods(pod.Namespace).Patch(ctx, pod.Name,
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri May 03 19:29:42 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. internal/dsync/drwmutex.go

    	RefreshCall:     drwMutexRefreshCallTimeout,
    	UnlockCall:      drwMutexUnlockCallTimeout,
    	ForceUnlockCall: drwMutexForceUnlockCallTimeout,
    }
    
    // A DRWMutex is a distributed mutual exclusion lock.
    type DRWMutex struct {
    	Names                []string
    	writeLocks           []string // Array of nodes that granted a write lock
    	readLocks            []string // Array of array of nodes that granted reader locks
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 19.7K bytes
    - Viewed (0)
Back to top