Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,159 for Store2 (0.11 sec)

  1. pilot/test/mock/config.go

    		cs := cache.List(mockGvk, namespace)
    		os := store.List(mockGvk, namespace)
    		log.Infof("cache.List => Got %d, expected %d", len(cs), n)
    		log.Infof("store.List => Got %d, expected %d", len(os), n)
    		return len(os) == n && len(cs) == n
    	}, retry.Message("cache and backing store match"))
    
    	// remove elements directly through the client
    	for i := 0; i < n; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                    cacheAction == STORE && !hasProblems -> log("Configuration cache entry stored.")
                    cacheAction == STORE -> log("Configuration cache entry stored with {}.", problemCountString)
                    cacheAction == UPDATE && !hasProblems -> log("Configuration cache entry updated for {}, {} up-to-date.", updatedProjectsString, reusedProjectsString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //     example, a 2-D matrix with 2-D blocks, both stored in row-major order
      //     would have traversal_order = (d0, d1, d2, d3).
      traversal_order:[int];
      // For an n-dimensional tensor with a k-dimensional block (0 <= k <= n),
      // stores how a block dimension in (dn, ..., dn+k-1) maps to the original
      // tensor dimension in (d0, ..., dn).
      // It's stored in the order of (dn, ..., dn+k-1).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

        }
    
        @Override
        public ResolverResults resolveGraph(ResolveContext resolveContext) {
            StoreSet stores = storeFactory.createStoreSet();
    
            BinaryStore oldModelStore = stores.nextBinaryStore();
            Store<TransientConfigurationResults> oldModelCache = stores.oldModelCache();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/loopreschedchecks.go

    				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)
    					}
    				}
    			}
    		}
    		if len(stores) == 0 {
    			lastMems[b.ID] = memPhi
    			continue
    		}
    
    		// find last store in the block
    		var last *Value
    		for _, v := range stores {
    			if storeUse.contains(v.ID) {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:10 UTC 2023
    - 16K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store_test.go

    	storagetesting.RunTestCreateWithTTL(ctx, t, store)
    }
    
    func TestCreateWithKeyExist(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestCreateWithKeyExist(ctx, t, store)
    }
    
    func TestGet(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    	storagetesting.RunTestGet(ctx, t, store)
    }
    
    func TestUnconditionalDelete(t *testing.T) {
    	ctx, store, _ := testSetup(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. internal/event/target/mysql.go

    // Name - returns the Name of the target.
    func (target *MySQLTarget) Name() string {
    	return target.ID().String()
    }
    
    // Store returns any underlying store if set.
    func (target *MySQLTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *MySQLTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		// Stores using index and base registers
    		// Stores to arg[0] + arg[1]
    		{name: "MOVBstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVB", typ: "Mem"},     // store bye
    		{name: "MOVHstoreidx", argLength: 4, reg: gpstoreidx, asm: "MOVH", typ: "Mem"},     // store half word
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  9. src/runtime/mgclimit.go

    		if !enabled {
    			l.enabled.Store(true)
    			l.lastEnabledCycle.Store(memstats.numgc + 1)
    		}
    		return
    	}
    
    	// Handle non-limiting cases.
    	if change < 0 && l.bucket.fill <= uint64(-change) {
    		// Bucket emptied.
    		l.bucket.fill = 0
    	} else {
    		// All other cases.
    		l.bucket.fill -= uint64(-change)
    	}
    	if change != 0 && enabled {
    		l.enabled.Store(false)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    	return r.store.Update(ctx, name, objInfo, createValidation, updateValidation, false, options)
    }
    
    // GetResetFields implements rest.ResetFieldsStrategy
    func (r *StatusREST) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	return r.store.GetResetFields()
    }
    
    type ScaleREST struct {
    	store               *genericregistry.Store
    	specReplicasPath    string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top