Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IsCreate (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/ConfigurationSpec.groovy

    @CompileStatic
    class ConfigurationSpec extends MultiSectionHandler {
        private final String name
        private final Supplier<Boolean> isCreate
    
        ConfigurationSpec(String name, Supplier<Boolean> isCreate) {
            this.name = name
            this.isCreate = isCreate
        }
    
        @Override
        String getSectionName() {
            name
        }
    
        void extendsFrom(String... superConfs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    		rev:       kv.ModRevision,
    		isDeleted: false,
    		isCreated: true,
    	}
    }
    
    func parseEvent(e *clientv3.Event) (*event, error) {
    	if !e.IsCreate() && e.PrevKv == nil {
    		// If the previous value is nil, error. One example of how this is possible is if the previous value has been compacted already.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. security/pkg/nodeagent/cache/secretcache.go

    		case event, ok := <-sc.certWatcher.Events:
    			// Channel is closed.
    			if !ok {
    				return
    			}
    			// We only care about updates that change the file content
    			if !(isWrite(event) || isRemove(event) || isCreate(event)) {
    				continue
    			}
    			sc.certMutex.RLock()
    			resources := make(map[FileCert]struct{})
    			for k, v := range sc.fileCerts {
    				resources[k] = v
    			}
    			sc.certMutex.RUnlock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  4. cmd/iam-etcd-store.go

    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					for _, event := range watchResp.Events {
    						isCreateEvent := event.IsModify() || event.IsCreate()
    						isDeleteEvent := event.Type == etcd.EventTypeDelete
    
    						switch {
    						case isCreateEvent:
    							ch <- iamWatchEvent{
    								isCreated: true,
    								keyPath:   string(event.Kv.Key),
    							}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
Back to top