Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,747 for Store2 (0.32 sec)

  1. testing/architecture-test/src/changes/archunit-store/stored.rules

    Anže Sodja <******@****.***> 1717576978 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/file/store.go

    			_, err := s.inner.Update(*r.config)
    			if err != nil {
    				_, err = s.inner.Create(*r.config)
    				if err != nil {
    					return fmt.Errorf("cannot store config %s/%s %s from reader: %s",
    						r.schema.Version(), r.schema.Kind(), r.fullName(), err)
    				}
    			}
    			s.shas[key] = r.sha
    		}
    		newKeys[key] = r.schema.GroupVersionKind()
    		if oldKeys != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 154 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 568 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/projectAtExecution/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 174 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/store.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 588 bytes
    - Viewed (0)
  7. src/sync/atomic/type.go

    type Bool struct {
    	_ noCopy
    	v uint32
    }
    
    // Load atomically loads and returns the value stored in x.
    func (x *Bool) Load() bool { return LoadUint32(&x.v) != 0 }
    
    // Store atomically stores val into x.
    func (x *Bool) Store(val bool) { StoreUint32(&x.v, b32(val)) }
    
    // Swap atomically stores new into x and returns the previous value.
    func (x *Bool) Swap(new bool) (old bool) { return SwapUint32(&x.v, b32(new)) != 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/cycle_state.go

    )
    
    // StateData is a generic type for arbitrary data stored in CycleState.
    type StateData interface {
    	// Clone is an interface to make a copy of StateData. For performance reasons,
    	// clone should make shallow copies for members (e.g., slices or maps) that are not
    	// impacted by PreFilter's optional AddPod/RemovePod methods.
    	Clone() StateData
    }
    
    // StateKey is the type of keys stored in CycleState.
    type StateKey string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. cmd/iam-object-store.go

    			if err == errConfigNotFound {
    				return errNoSuchPolicy
    			}
    			retries--
    			if retries <= 0 {
    				return err
    			}
    			time.Sleep(500 * time.Millisecond)
    			goto retry
    		}
    
    		m.Store(name, p)
    		return nil
    	}
    }
    
    func (iamOS *IAMObjectStore) loadMappedPolicy(ctx context.Context, name string, userType IAMUserType, isGroup bool, m *xsync.MapOf[string, MappedPolicy]) error {
    	var p MappedPolicy
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. cmd/iam-etcd-store.go

    	var p MappedPolicy
    	err := ies.loadIAMConfig(ctx, &p, getMappedPolicyPath(name, userType, isGroup))
    	if err != nil {
    		if err == errConfigNotFound {
    			return errNoSuchPolicy
    		}
    		return err
    	}
    	m.Store(name, p)
    	return nil
    }
    
    func getMappedPolicy(kv *mvccpb.KeyValue, m *xsync.MapOf[string, MappedPolicy], basePrefix string) error {
    	var p MappedPolicy
    	err := getIAMConfig(&p, kv.Value, string(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