Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 651 for storeVcs (0.23 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

        }
    
        @Override
        protected void store(Node xml) {
            storeModulePaths();
            storeWildcards();
            storeJdk();
            storeBytecodeLevels();
            storeVcs();
            storeProjectLibraries();
        }
    
        private void loadModulePaths() {
            for (Node moduleNode : getChildren(findOrCreateModules(), "module")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. pkg/registry/apps/replicaset/storage/storage_test.go

    		t.Errorf("unexpected error: %v", err)
    	}
    	storedRS, _ := etcdRS.(*apps.ReplicaSet)
    
    	// Generation initialization
    	if storedRS.Generation != 1 || storedRS.Status.ObservedGeneration != 0 {
    		t.Fatalf("Unexpected generation number %v, status generation %v", storedRS.Generation, storedRS.Status.ObservedGeneration)
    	}
    
    	// Updates to spec should increment the generation number
    	storedRS.Spec.Replicas++
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/aggregate/config.go

    		config := store.Get(typ, name, namespace)
    		if config != nil {
    			return config
    		}
    	}
    	return nil
    }
    
    // List all configs in the stores.
    func (cr *store) List(typ config.GroupVersionKind, namespace string) []config.Config {
    	stores := cr.stores[typ]
    	if len(stores) == 0 {
    		return nil
    	}
    
    	var (
    		configs      []config.Config
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 26 01:14:27 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd_test.go

    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	storedCR, _ := etcdCR.(*unstructured.Unstructured)
    
    	// Generation initialization
    	if storedCR.GetGeneration() != 1 {
    		t.Fatalf("Unexpected generation number %v", storedCR.GetGeneration())
    	}
    
    	// Updates to spec should increment the generation number
    	setSpecReplicas(storedCR, getSpecReplicas(storedCR)+1)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/aggregate/config_test.go

    	schema1 := collections.HTTPRoute
    	schema2 := collections.GatewayClass
    	store1 := memory.Make(collection.SchemasFor(schema1))
    	store2 := memory.Make(collection.SchemasFor(schema2))
    
    	stores := []model.ConfigStore{store1, store2}
    
    	store, err := makeStore(stores, nil)
    	g.Expect(err).NotTo(HaveOccurred())
    
    	schemas := store.Schemas()
    	g.Expect(cmp.Diff(schemas, collection.SchemasFor(schema1, schema2))).To(BeEmpty())
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/model.go

    }
    
    // IstioResources stores all outputs of our conversion
    type IstioResources struct {
    	Gateway        []config.Config
    	VirtualService []config.Config
    	// AllowedReferences stores all allowed references, from Reference -> to Reference(s)
    	AllowedReferences AllowedReferences
    	// ReferencedNamespaceKeys stores the label key of all namespace selections. This allows us to quickly
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CompositeResultsStore.java

    import java.util.stream.Collectors;
    
    public class CompositeResultsStore implements ResultsStore {
        private final List<ResultsStore> stores;
        private Map<PerformanceExperiment, ResultsStore> tests;
    
        public CompositeResultsStore(ResultsStore... stores) {
            this.stores = Arrays.asList(stores);
        }
    
        @Override
        public List<PerformanceExperiment> getPerformanceExperiments() {
            buildTests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/deadstore.go

    		for k := range localAddrs {
    			delete(localAddrs, k)
    		}
    		stores = stores[:0]
    		for _, v := range b.Values {
    			if v.Op == OpPhi {
    				// Ignore phis - they will always be first and can't be eliminated
    				continue
    			}
    			if v.Type.IsMemory() {
    				stores = append(stores, v)
    				for _, a := range v.Args {
    					if a.Block == b && a.Type.IsMemory() {
    						storeUse.add(a.ID)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. test/fixedbugs/issue21048.go

    	t.a = Source.a
    	t.b = Source.b
    	t.c = Source.c
    	t.d = Source.d
    	t.e = Source.e
    	return &t
    }
    
    //go:noinline
    func stores() {
    	t := newT()
    	Sink.a = t.a
    	Sink.b = t.b
    	Sink.c = t.c
    	Sink.d = t.d
    	Sink.e = t.e
    }
    
    func main() {
    	moves()
    	loads()
    	stores()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 19 14:22:48 UTC 2017
    - 1.1K bytes
    - Viewed (0)
  10. src/sync/atomic/type.go

    	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)
Back to top