Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for vp (0.03 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

        private SortedMapDiffUtil() {}
    
        public static <K, VP, VC> boolean diff(SortedMap<K, ? extends VP> previous, SortedMap<K, ? extends VC> current, PropertyDiffListener<K, VP, VC> diffListener) {
            Iterator<? extends Map.Entry<K, ? extends VC>> currentEntries = current.entrySet().iterator();
            Iterator<? extends Map.Entry<K, ? extends VP>> previousEntries = previous.entrySet().iterator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/versions.go

    // String returns "<version>/<storage-version>" string of the EtcdVersionPair.
    func (vp *EtcdVersionPair) String() string {
    	return fmt.Sprintf("%s/%s", vp.version, vp.storageVersion)
    }
    
    // Equals returns true if both the versions and storage versions are exactly equal.
    func (vp *EtcdVersionPair) Equals(o *EtcdVersionPair) bool {
    	return vp.version.Equals(o.version) && vp.storageVersion == o.storageVersion
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  3. src/sync/atomic/value.go

    // It returns nil if there has been no call to Store for this Value.
    func (v *Value) Load() (val any) {
    	vp := (*efaceWords)(unsafe.Pointer(v))
    	typ := LoadPointer(&vp.typ)
    	if typ == nil || typ == unsafe.Pointer(&firstStoreInProgress) {
    		// First store not yet completed.
    		return nil
    	}
    	data := LoadPointer(&vp.data)
    	vlp := (*efaceWords)(unsafe.Pointer(&val))
    	vlp.typ = typ
    	vlp.data = data
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:48:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AbstractAlignmentSpec.groovy

                        it.seenVersions.each { v ->
                            it.virtualPlatforms.each { vp ->
                                virtualPlatforms << "${vp}:$v"
                            }
                        }
                        it.virtualPlatforms.each { vp ->
                            resolvesToVirtual << "${vp}:$it.alignsTo"
                        }
                    }
                    if (it.publishedPlatforms) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  5. src/math/rand/v2/chacha8_test.go

    	"chacha8:\x00\x00\x00\x00\x00\x00\x00>K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00?K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    	"chacha8:\x00\x00\x00\x00\x00\x00\x00@K3\x9bB!,\x94\x9d\x975\xce'O_t\xee|\xb21\x87\xbb\xbb\xfd)\x8f\xe52\x01\vP\fk",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:09:08 UTC 2024
    - 55K bytes
    - Viewed (0)
  6. src/go/types/operand.go

    	// assignable to T.
    	if Vp != nil && !hasName(T) {
    		x := *x // don't clobber outer x
    		ok := false
    		code := IncompatibleAssign
    		Vp.is(func(V *term) bool {
    			if V == nil {
    				return false // no specific types
    			}
    			x.typ = V.typ
    			ok, code = x.assignableTo(check, T, cause)
    			if !ok {
    				errorf("cannot assign %s (in %s) to %s", V.typ, Vp, origT)
    				return false
    			}
    			return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/PropertyDiffListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    public interface PropertyDiffListener<K, VP, VC> {
        boolean removed(K previousProperty);
    
        boolean added(K currentProperty);
    
        boolean updated(K property, VP previous, VC current);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 865 bytes
    - Viewed (0)
  8. cluster/images/etcd/migrate/versions_test.go

    	}
    
    	for _, c := range cases {
    		vp, err := ParseEtcdVersionPair(c.versionTxt)
    		if err != nil {
    			t.Errorf("Failed to parse '%s': %v", c.versionTxt, err)
    		}
    		if vp.Equals(c.version) != c.match {
    			t.Errorf("Expected '%s' to be parsed as '%+v', got '%+v'", c.versionTxt, c.version, vp)
    		}
    		if vp.String() != c.versionTxt {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  9. test/zerodivide.go

    	bb = []int16{2, 0}
    
    	u, v, w       uint    = 0, 0, 1
    	u8, v8, w8    uint8   = 0, 0, 1
    	u16, v16, w16 uint16  = 0, 0, 1
    	u32, v32, w32 uint32  = 0, 0, 1
    	u64, v64, w64 uint64  = 0, 0, 1
    	up, vp, wp    uintptr = 0, 0, 1
    
    	f, g, h                         float64 = 0, 0, 1
    	f32, g32, h32                   float32 = 0, 0, 1
    	f64, g64, h64, inf, negInf, nan float64 = 0, 0, 1, math.Inf(1), math.Inf(-1), math.NaN()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/data_dir.go

    	}
    	txt := strings.TrimSpace(string(data))
    	vp, err := ParseEtcdVersionPair(txt)
    	if err != nil {
    		return nil, fmt.Errorf("failed to parse etcd '<version>/<storage-version>' string from version.txt file contents '%s': %v", txt, err)
    	}
    	return vp, nil
    }
    
    // equals returns true iff VersionFile exists and contains given EtcdVersionPair.
    func (v *VersionFile) equals(vp *EtcdVersionPair) (bool, error) {
    	exists, err := v.Exists()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 09 19:13:17 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top