Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 651 for storeVcs (0.13 sec)

  1. 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)
  2. pkg/config/analysis/local/analyze_test.go

    	sa.AddDefaultResources()
    	g.Expect(sa.stores).To(BeEmpty())
    
    	// With ingress on, though, we should.
    	ingressStrictMeshCfg := tempFileFromString(t, "ingressControllerMode: 'STRICT'")
    	defer func() { _ = os.Remove(ingressStrictMeshCfg.Name()) }()
    
    	err = sa.AddFileKubeMeshConfig(ingressStrictMeshCfg.Name())
    	g.Expect(err).To(BeNil())
    	sa.AddDefaultResources()
    	g.Expect(sa.stores).To(HaveLen(0))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 07:43:43 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/writebarrier.go

    				if last == nil {
    					continue
    				}
    				break FindSeq
    			}
    		}
    		stores = append(stores[:0], b.Values[start:end]...) // copy to avoid aliasing
    		after = append(after[:0], b.Values[end:]...)
    		b.Values = b.Values[:start]
    
    		// find the memory before the WB stores
    		mem := stores[0].MemoryArg()
    		pos := stores[0].Pos
    
    		// If the source of a MoveWB is volatile (will be clobbered by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MetadataFileSource.java

    import org.gradle.internal.component.model.PersistentModuleSource;
    import org.gradle.internal.hash.HashCode;
    
    import java.io.File;
    
    /**
     * This module source stores information about the metadata file
     * from which a module resolve metadata has been built. In particular,
     * it stores the artifact id corresponding to the metadata file and
     * gives access to the file stored in the local artifact cache.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/msrpc/netdfs.java

                        if ( this.stores[ _i ] == null ) {
                            this.stores[ _i ] = new DfsStorageInfo();
                        }
                        this.stores[ _i ].decode(_src);
                    }
                }
            }
        }
    
        public static class DfsEnumArray3 extends NdrObject {
    
            public int count;
            public DfsInfo3[] s;
    
    
            @Override
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 16.4K bytes
    - Viewed (0)
  6. pkg/volume/util/attach_limit.go

    	// DefaultMaxEBSNitroVolumeLimit is default EBS volume limit on m5 and c5 instances
    	DefaultMaxEBSNitroVolumeLimit = 25
    	// AzureVolumeLimitKey stores resource name that will store volume limits for Azure
    	AzureVolumeLimitKey = "attachable-volumes-azure-disk"
    	// GCEVolumeLimitKey stores resource name that will store volume limits for GCE node
    	GCEVolumeLimitKey = "attachable-volumes-gce-pd"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 10 17:25:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AtomicDoubleTest.java

            double z = a.getAndAccumulate(y, Double::sum);
            assertBitEquals(x, z);
            assertBitEquals(x + y, a.get());
          }
        }
      }
    
      /** getAndAccumulate with max stores max of given value to current, and returns previous value */
      public void testGetAndAccumulateWithMax() {
        for (double x : VALUES) {
          for (double y : VALUES) {
            AtomicDouble a = new AtomicDouble(x);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/finisher/finisher.go

    type ResultFunc func() (runtime.Object, error)
    
    // result stores the return values or panic from a ResultFunc function
    type result struct {
    	// object stores the response returned by the ResultFunc function
    	object runtime.Object
    	// err stores the error returned by the ResultFunc function
    	err error
    	// reason stores the reason from a panic thrown by the ResultFunc function
    	reason interface{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 14:20:33 UTC 2021
    - 6K bytes
    - Viewed (0)
  9. pkg/controller/endpointslicemirroring/metrics/cache.go

    	maxEndpointsPerSlice int32
    
    	// lock protects changes to numEndpoints and cache.
    	lock sync.Mutex
    	// numEndpoints represents the total number of endpoints stored in
    	// EndpointSlices.
    	numEndpoints int
    	// cache stores a EndpointPortCache grouped by NamespacedNames representing
    	// Services.
    	cache map[types.NamespacedName]*EndpointPortCache
    }
    
    // EndpointPortCache tracks values for total numbers of desired endpoints as well
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/apis.go

    	// will contain a series of stores to the initial portion of the
    	// counter array to write number-of-counters, pkgid, funcid. Later
    	// in the function there is also a store to increment a counter
    	// for the block containing the call to XYZ(). If the CPU is
    	// allowed to reorder stores and decides to issue the XYZ store
    	// before the prolog stores, this could be observable as an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top